about.vue 1.0 KB

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