123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <view class="content">
- <view class="box vflex acenter jcenter">
- <image src="/static/images/mine/logo.png" class="logo"></image>
- <view class="text_style1">船百知-商家端</view>
- <view class="text_style2">1.0.0</view>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
-
- }
- },
- onLoad() {
- that = this
- },
- methods: {
-
- },
- }
- </script>
- <style lang="scss" scoped>
- .content {
- background-color: #f4f4f4;
- padding: 24rpx 30rpx 0;
- .box {
- width: 100%;
- height: 416rpx;
- background: #fff;
- border-radius: 24rpx;
- .logo {
- width: 156rpx;
- height: 156rpx;
- border-radius: 40rpx;
- }
- .text_style1 {
- font-size: 32rpx;
- color: #222;
- margin: 28rpx 0 10rpx;
- }
- .text_style2 {
- font-size: 32rpx;
- color: #b2b2b2;
- }
- }
- }
- </style>
|