aboutUs.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <template>
  2. <view class="aboutUs">
  3. <view class="image">
  4. <image src="/static/images/icon.png" mode=""></image>
  5. </view>
  6. <!-- <view class="Version">
  7. 当前版本 <span>{{version}}</span>
  8. </view> -->
  9. <view class="introducer">
  10. <p>
  11. 成都政弘科技有限公司成立于2013年,公司经过多年的技术积累和项目经验,现已具有完善的产品和快速开发平台,为各行业的信息化建设降本增效打下了坚实基础,同时在人工智能方面取得重大突破。
  12. </p>
  13. </view>
  14. <view class="list">
  15. <view class="li">
  16. <view style="display: flex;">
  17. <!-- <u-icon name="bell-fill" color="#3DD4A7" size="20"></u-icon> -->
  18. <view class="txt">
  19. 联系电话: <span>028-87365800</span>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="li">
  24. <view style="display: flex;">
  25. <!-- <u-icon name="bell-fill" color="#3DD4A7" size="20"></u-icon> -->
  26. <view class="txt">
  27. adress: <span>{{Config}}</span>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="li">
  32. <view style="display: flex;">
  33. <!-- <u-icon name="bell-fill" color="#3DD4A7" size="20"></u-icon> -->
  34. <view class="txt">
  35. 公司地址: <span>成都市成华区建材路37号</span>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. import Config from '@/common/Config.js'
  44. export default {
  45. data() {
  46. return {
  47. version: '1.0.14',
  48. Config: Config.baseUrl
  49. }
  50. },
  51. onShow() {
  52. //#ifdef APP-PLUS
  53. this.getVersion()
  54. //#endif
  55. },
  56. mounted() {
  57. this.Config = this.Config.replace('/projectManage-admin', ' ')
  58. },
  59. methods: {
  60. getVersion() {
  61. // 获取本地应用资源版本号
  62. plus.runtime.getProperty(plus.runtime.appid, (info) => {
  63. this.version = info.version;
  64. console.log(this.version);
  65. })
  66. },
  67. }
  68. }
  69. </script>
  70. <style scoped lang="less">
  71. .aboutUs {
  72. text-align: center;
  73. .image {
  74. padding-top: 100rpx;
  75. }
  76. .introducer {
  77. padding: 40rpx;
  78. text-align: left;
  79. p {
  80. text-indent: 2em
  81. }
  82. }
  83. .Version {
  84. span {
  85. margin-left: 30rpx;
  86. font-size: 34rpx
  87. }
  88. }
  89. .list {
  90. margin-top: 200rpx;
  91. padding: 0 35rpx;
  92. font-size: 20rpx;
  93. color: #999;
  94. text-align: left;
  95. .li {
  96. // display: flex;
  97. align-items: center;
  98. justify-content: space-between;
  99. margin-bottom: 10rpx;
  100. width: 100%;
  101. .txt {
  102. width: 100%;
  103. margin-left: 10rpx;
  104. }
  105. }
  106. }
  107. image {
  108. width: 180rpx;
  109. text-align: center;
  110. height: 180rpx;
  111. }
  112. }
  113. </style>