discountDetail.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <template>
  2. <view class="content">
  3. <view style="background: #BE573F; height: 56rpx; width: 100%;"></view>
  4. <view class="whiteBg">
  5. <!-- firstView -->
  6. <view class="firstView">
  7. <view class="money">{{detailData.actName}}</view>
  8. <view class="condition" v-if="detailData.whereMoney != 0">满{{detailData.whereMoney}}元可用</view>
  9. <view class="condition" v-else>满任意金额可用</view>
  10. </view>
  11. <view class="point leftP"></view>
  12. <view class="point rightP"></view>
  13. <!-- secondView -->
  14. <view class="secondView">
  15. <view v-if="detailData.endOffsetDays===null||detailData.endOffsetDays==='null'||detailData.endOffsetDays===''">
  16. <view class="valid same" >有效期:{{detailData.startTime.slice(0,detailData.startTime.length-8)}}至 {{detailData.endTime.slice(0,detailData.endTime.length-8)}}</view>
  17. </view>
  18. <view v-else>
  19. <view class="valid same" v-if="detailData.endOffsetDays>-1">有效期:自领取后,{{detailData.endOffsetDays}}天有效</view>
  20. <view class="valid same" v-if="detailData.endOffsetDays==-1||detailData.endOffsetDays==null||detailData.endOffsetDays=='null'">有效期:{{detailData.startTime.slice(0,detailData.startTime.length-8)}}至 {{detailData.endTime.slice(0,detailData.endTime.length-8)}}</view>
  21. </view>
  22. <view class="same">可用次数:{{detailData.avaQty}}</view>
  23. </view>
  24. <!-- thirdView -->
  25. <view class="thirdView">
  26. <view class="thirdTitle">使用说明</view>
  27. <view class="store">
  28. <view class="grayPoint"></view>
  29. <view class="same">适用门店:{{detailData.shopNames}}</view>
  30. </view>
  31. </view>
  32. <!-- 列表 -->
  33. <view class="itemContent">
  34. <view class="thirdTitle">注意事项</view>
  35. <rich-text :nodes="couContent" style="color: #666666; font-size: 26rpx;"></rich-text>
  36. <!-- <view v-for="(item,index) in itemData" :key="index">
  37. <view class="store">
  38. <view class="grayPoint"></view>
  39. <view class="same">{{item}}</view>
  40. </view>
  41. </view> -->
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. export default {
  48. data() {
  49. return {
  50. detailData:{},
  51. couponId:'',
  52. couContent:'',
  53. }
  54. },
  55. onLoad(opt) {
  56. this.couponId = opt.couponId,
  57. this.page = 1
  58. this.getDetailData()
  59. },
  60. methods: {
  61. getDetailData() {
  62. uni.showLoading({
  63. title: '加载中'
  64. })
  65. let url = 'miniAppMyBMemberCar/queryMiniAppCouponDetail',
  66. params = {
  67. couponId: this.couponId,
  68. }
  69. this.$http(url, params, 'GET').then(res => {
  70. uni.hideLoading();
  71. var data = res.data
  72. if(res.data.couContent){
  73. this.couContent=res.data.couContent.replace(/\<p/gi, '<p style="display: inline-block"');
  74. }
  75. // 处理 undefined和null转为空白字符串
  76. for (const key in data) {
  77. data[key] = this.$praseStrEmpty(data[key])
  78. }
  79. this.detailData = data
  80. })
  81. },
  82. }
  83. }
  84. </script>
  85. <style scoped>
  86. .content {
  87. background: #BE573F;
  88. min-height: 100vh;
  89. }
  90. .whiteBg {
  91. margin: 0rpx 24rpx;
  92. background-color: #FFFFFF;
  93. border-radius: 10rpx;
  94. min-height: 60vh;
  95. }
  96. .firstView {
  97. border-bottom: 1rpx #EEEEEE dashed;
  98. text-align: center;
  99. padding: 50rpx 20rpx;
  100. padding-bottom: 30rpx;
  101. }
  102. .money {
  103. font-size: 44rpx;
  104. color: #333333;
  105. font-weight: bold;
  106. margin-bottom: 10rpx;
  107. }
  108. .condition {
  109. font-size: 28rpx;
  110. color: #999999;
  111. }
  112. .point {
  113. width: 30rpx;
  114. height: 30rpx;
  115. background-color: #BE573F;
  116. border-radius: 15rpx;
  117. }
  118. .leftP {
  119. float: left;
  120. margin-left: -15rpx;
  121. margin-top: -15rpx;
  122. }
  123. .rightP {
  124. float: right;
  125. margin-right: -15rpx;
  126. margin-top: -15rpx;
  127. }
  128. .secondView {
  129. padding: 30rpx 40rpx;
  130. }
  131. .valid {
  132. margin-bottom: 20rpx;
  133. }
  134. .same {
  135. font-size: 28rpx;
  136. color: #666666;
  137. }
  138. .thirdView {
  139. padding: 30rpx 40rpx;
  140. border: 1rpx #EEEEEE solid;
  141. }
  142. .thirdTitle {
  143. font-size: 32rpx;
  144. color: #333333;
  145. margin-bottom: 20rpx;
  146. }
  147. .store {
  148. display: flex;
  149. align-items: center;
  150. margin-bottom: 20rpx;
  151. }
  152. .grayPoint {
  153. width: 12rpx;
  154. height: 12rpx;
  155. border-radius: 6rpx;
  156. background-color: #DDDDDD;
  157. margin-right: 15rpx;
  158. }
  159. .itemContent{
  160. padding: 30rpx 40rpx;
  161. }
  162. </style>