about.vue 897 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <view class="content">
  3. <view class="box vflex acenter jcenter">
  4. <image src="/static/images/mine/logo.png" class="logo"></image>
  5. <view class="text_style1">船百知-商家端</view>
  6. <view class="text_style2">1.0.0</view>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. import $api from '@/static/js/api.js'
  12. var that = ''
  13. export default {
  14. data() {
  15. return {
  16. }
  17. },
  18. onLoad() {
  19. that = this
  20. },
  21. methods: {
  22. },
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .content {
  27. background-color: #f4f4f4;
  28. padding: 24rpx 30rpx 0;
  29. .box {
  30. width: 100%;
  31. height: 416rpx;
  32. background: #fff;
  33. border-radius: 24rpx;
  34. .logo {
  35. width: 156rpx;
  36. height: 156rpx;
  37. border-radius: 40rpx;
  38. }
  39. .text_style1 {
  40. font-size: 32rpx;
  41. color: #222;
  42. margin: 28rpx 0 10rpx;
  43. }
  44. .text_style2 {
  45. font-size: 32rpx;
  46. color: #b2b2b2;
  47. }
  48. }
  49. }
  50. </style>