初始版本
This commit is contained in:
23
uniapp/src/bundle/pages/as_us/as_us.vue
Normal file
23
uniapp/src/bundle/pages/as_us/as_us.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<view class="as-us flex flex-1 flex-col items-center justify-center">
|
||||
<image :src="appStore.config.web_logo" mode="" class="img"></image>
|
||||
<view class="text-content mt-[20rpx]">当前版本{{ `v${appStore.config.version}` }}</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useAppStore } from '@/stores/app'
|
||||
const appStore = useAppStore()
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.as-us {
|
||||
height: 100%;
|
||||
.img {
|
||||
width: 160rpx;
|
||||
height: 160rpx;
|
||||
border-radius: 20rpx;
|
||||
margin-top: 96rpx;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user