about.vue 1.7 KB

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