12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
- <view class="content">
- <view class="box vflex acenter jcenter">
- <view class="logo hflex acenter jcenter">
- <image src="/static/images/index/logo.png" class="logo_image"></image>
- </view>
- <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;
- background-color: #eef1ff;
- border-radius: 40rpx;
- .logo_image {
- width: 136rpx;
- height: 52rpx;
- }
- }
- .text_style1 {
- font-size: 32rpx;
- color: #222;
- margin: 28rpx 0 10rpx;
- }
- .text_style2 {
- font-size: 32rpx;
- color: #b2b2b2;
- }
- }
- }
- </style>
|