This commit is contained in:
洪树泽
2022-09-08 18:58:17 +08:00
4 changed files with 29 additions and 1 deletions

View File

@@ -59,6 +59,12 @@
"style": {
"navigationBarTitleText": "关于我们"
}
},
{
"path": "pages/agreement/agreement",
"style": {
"navigationBarTitleText": "协议"
}
}
],
"globalStyle": {

View File

@@ -0,0 +1,20 @@
<template>
<view class="as-us flex flex-1 flex-col items-center">
<image src="https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fimg.jj20.com%2Fup%2Fallimg%2F4k%2Fs%2F02%2F2109242332225H9-0-lp.jpg&refer=http%3A%2F%2Fimg.jj20.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1665225789&t=d830459ba12f6416e919dd8082fc9d12" mode="" class="img"></image>
<view class="text-content mt-[20rpx]">当前版本v1.5.0</view>
</view>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
.as-us {
.img {
width: 160rpx;
height: 160rpx;
border-radius: 20rpx;
margin-top: 96rpx;
}
}
</style>