index.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <template>
  2. <view style=" padding: 30rpx;">
  3. <view class="w_login">
  4. <view class="circle">
  5. <image class="logoImg" src="/static/images/logo1.png"></image>
  6. </view>
  7. <view class="info1">
  8. 中意购
  9. </view>
  10. <view class="info2">
  11. 中意购小程序版本:{{appVersion}}
  12. </view>
  13. </view>
  14. <view class="tool_list">
  15. <u-cell-group>
  16. <u-cell isLink @click="toUserAgreement">
  17. <view slot="title" class="u-slot-title">
  18. <text class="u-cell-text">用户协议</text>
  19. </view>
  20. </u-cell>
  21. <u-cell isLink @click="toPrivacyAgreement">
  22. <view slot="title" class="u-slot-title">
  23. <text class="u-cell-text">隐私协议</text>
  24. </view>
  25. </u-cell>
  26. </u-cell-group>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data () {
  33. return {
  34. appVersion:''
  35. };
  36. },
  37. onLoad () {
  38. this.appVersion = uni.getSystemInfoSync().appVersion
  39. },
  40. methods: {
  41. toPrivacyAgreement(){
  42. uni.navigateTo({
  43. url:'/pages/groupbuying/privacyAgreement/privacyAgreement'
  44. })
  45. },
  46. toUserAgreement(){
  47. uni.navigateTo({
  48. url:'/pages/groupbuying/userAgreement/userAgreement'
  49. })
  50. },
  51. }
  52. }
  53. </script>
  54. <style scoped lang="scss">
  55. .cartcolor {
  56. color: var(--view-theme);
  57. border: 1px solid var(--view-theme);
  58. }
  59. .personal-data .wrapper {
  60. margin: 10rpx 0;
  61. background-color: #fff;
  62. padding: 36rpx 30rpx 13rpx 30rpx;
  63. }
  64. .personal-data .wrapper .title {
  65. margin-bottom: 30rpx;
  66. font-size: 32rpx;
  67. color: #282828;
  68. }
  69. .group-buying-data {
  70. position: relative;
  71. width: 100%;
  72. height: 200rpx;
  73. padding: 40rpx;
  74. margin: 0 auto;
  75. background-image: url('http://www.gzzzyd.com/groupon/regiment/提货管理@2x.png');
  76. background-size: 100% auto;
  77. background-color: var(--view-theme);
  78. .group-title {
  79. font-size: 32rpx;
  80. font-weight: 500;
  81. color: #B22338;
  82. line-height: 44rpx;
  83. height: 44rpx;
  84. }
  85. .group-content {
  86. display: flex;
  87. .group-content-l {
  88. text-align: center;
  89. flex: 1;
  90. border-color: #333333;
  91. border-right: 1px solid dashed;
  92. }
  93. .group-content-r {
  94. text-align: center;
  95. flex: 1
  96. }
  97. .content-num {
  98. margin-top: 20rpx;
  99. height: 48rpx;
  100. font-size: 40rpx;
  101. font-weight: bold;
  102. color: #B22338;
  103. line-height: 48rpx;
  104. }
  105. .content-info {
  106. margin-top: 20rpx;
  107. text-align: center;
  108. width: 100%;
  109. height: 36rpx;
  110. font-size: 24rpx;
  111. font-weight: 400;
  112. color: #CF7986;
  113. line-height: 36rpx;
  114. }
  115. }
  116. }
  117. .tool_list,
  118. .footer {
  119. background: #fff;
  120. border-radius: 16rpx;
  121. margin-top: 20rpx;
  122. }
  123. .footer {
  124. height: 100rpx;
  125. button {
  126. height: 100%;
  127. font-size: 28rpx;
  128. font-weight: 400;
  129. color: #999999;
  130. line-height: 100rpx;
  131. }
  132. }
  133. /deep/ .tool_list .u-line,
  134. .my_order .u-line {
  135. display: none !important;
  136. }
  137. .u-slot-title {
  138. line-height: 60rpx;
  139. font-size: 28rpx;
  140. font-weight: 400;
  141. color: #333333;
  142. text {
  143. vertical-align: text-bottom;
  144. }
  145. image {
  146. margin-right: 20rpx;
  147. transform: translateY(10rpx);
  148. width: 40rpx;
  149. height: 40rpx;
  150. vertical-align: super;
  151. }
  152. }
  153. .w_login {
  154. padding: 30rpx;
  155. .circle {
  156. border-radius: 50%;
  157. width: 106rpx;
  158. height: 106rpx;
  159. background: rgb(238, 238, 238);
  160. margin: auto;
  161. }
  162. .info1 {
  163. text-align: center;
  164. font-size: 48rpx;
  165. font-weight: 600;
  166. color: #333333;
  167. line-height: 66rpx;
  168. margin-bottom: 30rpx;
  169. }
  170. .info2 {
  171. text-align: center;
  172. font-size: 28rpx;
  173. font-weight: 400;
  174. color: #999999;
  175. line-height: 44rpx;
  176. margin-bottom: 120rpx;
  177. }
  178. .now {
  179. width: 100%;
  180. height: 96rpx;
  181. background: #B42A3E;
  182. border-radius: 8rpx;
  183. font-size: 32rpx;
  184. font-weight: 400;
  185. color: #FFFFFF;
  186. line-height: 96rpx;
  187. margin-bottom: 20rpx;
  188. }
  189. .not_now {
  190. width: 100%;
  191. height: 96rpx;
  192. background: #F5F5F5;
  193. border-radius: 8rpx;
  194. font-size: 32rpx;
  195. font-weight: 400;
  196. color: #999999;
  197. line-height: 96rpx;
  198. }
  199. .logoImg{
  200. width: 106rpx;
  201. height: 106rpx;
  202. }
  203. }
  204. </style>