first commit

This commit is contained in:
仲么了
2023-11-16 15:13:28 +08:00
commit 6023eac4fe
209 changed files with 34095 additions and 0 deletions

33
pages/us/us.vue Normal file
View File

@@ -0,0 +1,33 @@
<template>
<view>
<back :pageName='pageName' :pageNameFlag="pageNameFlag"></back>
<view class="error-block">
<image src="/static/pic/aboutUs.png" class="us-pic"></image>
<view class="us-text">
灿能云 1.2.1
</view>
</view>
</view>
</template>
<script>
import back from '../../components/back.vue';
export default {
data() {
return {
pageName:'关于我们',
pageNameFlag:1
}
},
methods: {
},
components: {
back
}
}
</script>
<style>
@import url("us.css");
</style>