about.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <template>
  2. <view class="content vflex acenter">
  3. <view class="top vflex acenter">
  4. <image src="../static/logo.png" mode="aspectFill"></image>
  5. <view class="name">忆象</view>
  6. <view class="verison">{{version}}</view>
  7. </view>
  8. <view class="center">
  9. <u-cell-group :border="false">
  10. <u-cell size="large" title="访问官方网站" :isLink="true"></u-cell>
  11. <u-cell size="large" title="去评分" :isLink="true" @click="toshop"></u-cell>
  12. <!-- <u-cell size="large" title="联系我们" :isLink="true"></u-cell> -->
  13. </u-cell-group>
  14. <u-collapse :border="false">
  15. <u-collapse-item title="联系我们">
  16. <text class="u-collapse-content">手机号:{{mobile}};</text>
  17. <text class="u-collapse-content">邮箱:{{email}}</text>
  18. </u-collapse-item>
  19. </u-collapse>
  20. </view>
  21. <view class="bottom hflex acenter">
  22. <text @click="toxieyi('user')">《忆象用户服务协议》</text>
  23. <text @click="toxieyi('yinsi')">《个人信息保护政策》</text>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. import $api from '@/static/js/api.js'
  29. export default {
  30. data() {
  31. return {
  32. version: '',
  33. mobile: '',
  34. email: '',
  35. }
  36. },
  37. onLoad() {
  38. const systemInfo = uni.getSystemInfoSync();
  39. // #ifdef H5
  40. this.version = systemInfo.appVersion;
  41. // #endif
  42. // #ifndef H5
  43. this.version = systemInfo.appWgtVersion;
  44. // #endif
  45. this.getdata()
  46. },
  47. onShow() {
  48. },
  49. onPullDownRefresh() {
  50. },
  51. onReachBottom() {
  52. },
  53. methods: {
  54. getdata() {
  55. var that = this
  56. $api.req({
  57. url: 'config?module=basic'
  58. }, function(res) {
  59. that.mobile = res.data.contact_phone
  60. that.email = res.data.contact_email
  61. })
  62. },
  63. toshop() {
  64. if (plus.os.name == "Android") {
  65. // 跳转安卓应用市场
  66. let appurl =
  67. "market://details?id=com.autonavi.minimap" //这个是通用应用市场,如果想指定某个应用商店,需要单独查这个应用商店的包名或scheme及参数
  68. plus.runtime.openURL(appurl)
  69. } else {
  70. // 跳转AppStore
  71. let appleId = 纯数字id
  72. plus.runtime.launchApplication({
  73. action: `itms-apps://itunes.apple.com/cn/app/id${appleId}`,
  74. })
  75. }
  76. },
  77. toxieyi(type) {
  78. uni.navigateTo({
  79. url: '/pageC/xieyi?type=' + type
  80. })
  81. },
  82. }
  83. }
  84. </script>
  85. <style lang="scss">
  86. .content {
  87. height: 100vh;
  88. background: #FFFFFF;
  89. padding: 0 28rpx;
  90. .bottom {
  91. position: absolute;
  92. bottom: 64rpx;
  93. text {
  94. font-size: 24rpx;
  95. font-family: PingFangSC, PingFang SC;
  96. font-weight: 400;
  97. color: #333333;
  98. }
  99. }
  100. .center {
  101. width: 100%;
  102. }
  103. .top {
  104. padding: 54rpx 0 78rpx;
  105. image {
  106. width: 150rpx;
  107. height: 150rpx;
  108. background: #D8D8D8;
  109. border-radius: 50%;
  110. }
  111. .name {
  112. font-size: 32rpx;
  113. font-family: PingFangSC, PingFang SC;
  114. font-weight: 600;
  115. color: #333333;
  116. padding: 32rpx 0 16rpx;
  117. }
  118. .verison {
  119. font-size: 28rpx;
  120. font-family: SFPro, SFPro;
  121. font-weight: 400;
  122. color: #333333;
  123. }
  124. }
  125. }
  126. </style>