about.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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">手机号:13642510729;邮箱:liu@3346.com</text>
  17. </u-collapse-item>
  18. </u-collapse>
  19. </view>
  20. <view class="bottom hflex acenter">
  21. <text @click="toxieyi('user')">《忆象用户服务协议》</text>
  22. <text @click="toxieyi('yinsi')">《个人信息保护政策》</text>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. import $api from '@/static/js/api.js'
  28. export default {
  29. data() {
  30. return {
  31. version: '',
  32. }
  33. },
  34. onLoad() {
  35. const systemInfo = uni.getSystemInfoSync();
  36. // #ifdef H5
  37. this.version = systemInfo.appVersion;
  38. // #endif
  39. // #ifndef H5
  40. this.version = systemInfo.appWgtVersion;
  41. // #endif
  42. },
  43. onShow() {
  44. },
  45. onPullDownRefresh() {
  46. },
  47. onReachBottom() {
  48. },
  49. methods: {
  50. toshop() {
  51. if (plus.os.name == "Android") {
  52. // 跳转安卓应用市场
  53. let appurl = "market://details?id=com.autonavi.minimap" //这个是通用应用市场,如果想指定某个应用商店,需要单独查这个应用商店的包名或scheme及参数
  54. plus.runtime.openURL(appurl)
  55. } else {
  56. // 跳转AppStore
  57. let appleId = 纯数字id
  58. plus.runtime.launchApplication({
  59. action: `itms-apps://itunes.apple.com/cn/app/id${appleId}`,
  60. })
  61. }
  62. },
  63. toxieyi(type) {
  64. uni.navigateTo({
  65. url: '/pageC/xieyi?type=' + type
  66. })
  67. },
  68. }
  69. }
  70. </script>
  71. <style lang="scss">
  72. .content {
  73. height: 100vh;
  74. background: #FFFFFF;
  75. padding: 0 28rpx;
  76. .bottom {
  77. position: absolute;
  78. bottom: 64rpx;
  79. text {
  80. font-size: 24rpx;
  81. font-family: PingFangSC, PingFang SC;
  82. font-weight: 400;
  83. color: #333333;
  84. }
  85. }
  86. .center {
  87. width: 100%;
  88. }
  89. .top {
  90. padding: 54rpx 0 78rpx;
  91. image {
  92. width: 150rpx;
  93. height: 150rpx;
  94. background: #D8D8D8;
  95. border-radius: 50%;
  96. }
  97. .name {
  98. font-size: 32rpx;
  99. font-family: PingFangSC, PingFang SC;
  100. font-weight: 600;
  101. color: #333333;
  102. padding: 32rpx 0 16rpx;
  103. }
  104. .verison {
  105. font-size: 28rpx;
  106. font-family: SFPro, SFPro;
  107. font-weight: 400;
  108. color: #333333;
  109. }
  110. }
  111. }
  112. </style>