| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="page">
- <view class="flex flex-center">
- <u-image src="/static/images/logo/logo-round.png" width="160rpx" height="160rpx"></u-image>
- </view>
- <u-text :text="about_us" size="26" lineHeight="48" margin="91rpx 0"></u-text>
- <u-text
- :text="`版本号 v${version}`"
- color="#666"
- size="24rpx"
- customStyle="position:fixed;bottom:100rpx;left:50%;transform:translate(-50%)"
- ></u-text>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- version: this.$store.state.sysInfo.app_version,
- about_us: this.$store.state.appconfig.about_us
- }
- },
- methods: {}
- }
- </script>
- <style lang="scss" scoped>
- .page {
- background-color: #fff;
- padding: 146rpx 77rpx 0;
- }
- .logo {
- width: 400rpx;
- height: 400rpx;
- }
- </style>
|