about.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <view>
  3. <uni-nav-bar
  4. fixed="true"
  5. statusBar="true"
  6. left-icon="back"
  7. @clickLeft="back"
  8. >
  9. <view class="title">关于株洲硬质合金集团型材分公司</view>
  10. </uni-nav-bar>
  11. <image class="zcc-img" mode="widthFix" src="../../../static/u3.png"></image>
  12. <view class="content">
  13. <view class="font-color"> 株洲硬质合金集团有限公司型材分公司 </view>
  14. <view class="font-grey p-desc">
  15. ZHUZHOU CEMENTEO CRRBIDE GAOUP CO .,LTD.
  16. </view>
  17. <view class="font-color p-v"> 版本号:{{ currentVersion }} </view>
  18. </view>
  19. <view class="content content-fixed">
  20. <view class="font-grey"> 版权所有© 2019-2021中赢合力 </view>
  21. <view class="font-grey"> 湘ICP备20015098号 </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data () {
  28. return {
  29. currentVersion: ''
  30. }
  31. },
  32. created () {
  33. this.currentVersion = plus?.runtime.version
  34. },
  35. methods: {}
  36. }
  37. </script>
  38. <style lang="scss" scoped>
  39. .title {
  40. display: flex;
  41. font-size: 28rpx;
  42. justify-content: center;
  43. align-items: center;
  44. width: 100%;
  45. }
  46. .zcc-img {
  47. width: 232rpx;
  48. margin: 80rpx auto;
  49. display: block;
  50. }
  51. .content {
  52. text-align: center;
  53. view {
  54. margin: 2rpx 0;
  55. }
  56. .p-v {
  57. margin: 80rpx 0;
  58. font-size: $uni-font-size-base;
  59. }
  60. .p-desc {
  61. font-size: $uni-font-size-ssm;
  62. text-indent: 92rpx;
  63. }
  64. }
  65. .content-fixed {
  66. position: fixed;
  67. left: 0;
  68. right: 0;
  69. bottom: 60rpx;
  70. font-size: $uni-font-size-sm;
  71. }
  72. </style>