index.vue 3.7 KB

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