discountCardDetail.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <template>
  2. <view class="box">
  3. <view style="width: 750rpx;height: 172rpx;background: #FF0000;"></view>
  4. <view class="detailBg">
  5. <view class="detailTop">
  6. <view class="leftB">
  7. <view class="use">¥<span class="use2">{{detail.actMoney}}</span></view>
  8. <!-- <view class="used" v-else>¥<span class="used2">{{detail.actMoney}}</span></view> -->
  9. <view class="tiaojian">{{detail.whereMoney!==0?'满'+detail.whereMoney+'元可用':'满任意金额可用'}}</view>
  10. </view>
  11. <view class="centerB">
  12. <view class="name">{{detail.actName}}</view>
  13. <view class="time" v-if="detail.startTime">
  14. 有效期:{{detail.startTime.slice(0,10)}}-{{detail.endTime.slice(0,10)}}</view>
  15. <view class="time" v-else>有效期:</view>
  16. </view>
  17. </view>
  18. </view>
  19. <view class="comtentBox">
  20. <view style="margin-bottom: 30rpx;">
  21. <view class="titleBox">
  22. <view class="redPoint"></view>
  23. <view class="title">可用次数</view>
  24. </view>
  25. <view class="content">{{detail.avaQty}}次</view>
  26. </view>
  27. <view style="margin-bottom: 30rpx;">
  28. <view class="titleBox">
  29. <view class="redPoint"></view>
  30. <view class="title">适用门店</view>
  31. </view>
  32. <view v-for="(v,index) in detail.shopNames.split(',')">
  33. <view class="content">{{v}}</view>
  34. </view>
  35. </view>
  36. <view>
  37. <view class="titleBox">
  38. <view class="redPoint"></view>
  39. <view class="title">使用说明</view>
  40. </view>
  41. <view v-if="detail.couContent" v-html="detail.couContent"></view>
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. export default {
  48. data() {
  49. return {
  50. id: '',
  51. detail: {},
  52. }
  53. },
  54. onLoad(opt) {
  55. this.id = opt.id;
  56. this.getData();
  57. },
  58. methods: {
  59. getData() {
  60. uni.showLoading({
  61. title: '加载中'
  62. });
  63. this.$http('opencoupon/detailsCoupon', {
  64. // lat: this.location.lat,
  65. // lng: this.location.lng,
  66. id: this.id,
  67. }, 'GET').then(res => {
  68. uni.hideLoading();
  69. this.detail = res.data;
  70. })
  71. },
  72. }
  73. }
  74. </script>
  75. <style>
  76. .box {
  77. min-height: 100vh;
  78. background: #F4F5F7;
  79. }
  80. .detailBg {
  81. margin: -100rpx 24rpx 0rpx;
  82. background-color: #FFFFFF;
  83. border-radius: 10rpx;
  84. padding: 40rpx 20rpx 20rpx;
  85. }
  86. .detailTop {
  87. display: flex;
  88. justify-content: flex-start;
  89. margin-bottom: 40rpx;
  90. }
  91. .use {
  92. font-size: 26rpx;
  93. color: #FF0000;
  94. }
  95. .use2 {
  96. font-size: 40rpx;
  97. font-weight: 500;
  98. color: #FF0000;
  99. line-height: 56rpx;
  100. }
  101. .used {
  102. font-size: 26rpx;
  103. color: #666666;
  104. }
  105. .used2 {
  106. font-size: 40rpx;
  107. font-weight: 500;
  108. color: #666666;
  109. line-height: 56rpx;
  110. }
  111. .tiaojian {
  112. font-size: 24rpx;
  113. color: #666666;
  114. }
  115. .name {
  116. font-size: 30rpx;
  117. font-weight: 500;
  118. color: #333333;
  119. line-height: 42rpx;
  120. }
  121. .time {
  122. font-size: 24rpx;
  123. color: #666666;
  124. margin-top: 15rpx;
  125. }
  126. .leftB {
  127. margin-right: 15rpx;
  128. }
  129. .comtentBox {
  130. margin: 20rpx 24rpx;
  131. background-color: #FFFFFF;
  132. border-radius: 10rpx;
  133. padding: 20rpx;
  134. }
  135. .titleBox {
  136. display: flex;
  137. align-items: center;
  138. }
  139. .redPoint {
  140. width: 18rpx;
  141. height: 18rpx;
  142. background: #FF0000;
  143. border-radius: 9rpx;
  144. margin-right: 10rpx;
  145. }
  146. .title {
  147. font-size: 30rpx;
  148. color: #333333;
  149. font-weight: bold;
  150. }
  151. .content {
  152. font-size: 26rpx;
  153. color: #666666;
  154. margin-top: 16rpx;
  155. margin-left: 28rpx;
  156. }
  157. </style>