youhui.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <template>
  2. <view class="popu">
  3. <view class="top hflex acenter jbetween">
  4. <view></view>
  5. <view class="title">优惠券</view>
  6. <image src="../static/close.png" mode="aspectFill" @click="close"></image>
  7. </view>
  8. <view class="list vflex">
  9. <u-radio-group placement="column" @change="selectaddress">
  10. <view class="list-item hflex acenter jbetween" :class="active == index ? 'active-item' : ''" v-for="(item,index) in list" :key="index" @click="select(index)">
  11. <image src="../static/youhuiquan.png" mode="aspectFill"></image>
  12. <view class="left vflex jbetween">
  13. <text>{{item.title}}</text>
  14. <text>{{item.intro}}</text>
  15. </view>
  16. <u-radio shape="circle" :name="index" activeColor="#00B0B0"></u-radio>
  17. </view>
  18. <view class="list-item hflex acenter jbetween" :class="active == 0 ? 'active-item' : ''" @click="select('0')" v-if="type == 'vip'">
  19. <view class="name">使用</view>
  20. <u-radio shape="circle" :name="0" activeColor="#00B0B0"></u-radio>
  21. </view>
  22. <view class="list-item hflex acenter jbetween" :class="active == -1 ? 'active-item' : ''" @click="select('-1')">
  23. <view class="name">不使用</view>
  24. <u-radio shape="circle" :name="-1" activeColor="#00B0B0"></u-radio>
  25. </view>
  26. </u-radio-group>
  27. </view>
  28. <view class="btns" @click="sure">
  29. 确定
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import $api from '@/static/js/api.js'
  35. export default {
  36. props: {
  37. list: {
  38. typeof: Array,
  39. default: []
  40. },
  41. type: {
  42. typeof: String,
  43. default: ''
  44. },
  45. index: {
  46. typeof: Number,
  47. default: -1
  48. }
  49. },
  50. data() {
  51. return {
  52. active: '',
  53. }
  54. },
  55. watch: {
  56. index(newvalue,oldvalue) {
  57. this.active = newvalue
  58. },
  59. },
  60. onLoad() {
  61. },
  62. onShow() {
  63. },
  64. onPullDownRefresh() {
  65. },
  66. onReachBottom() {
  67. },
  68. methods: {
  69. selectaddress(e) {
  70. this.active = e
  71. },
  72. select(index) {
  73. this.active = index
  74. },
  75. sure() {
  76. this.$emit('select',this.active)
  77. },
  78. close() {
  79. this.$emit('close')
  80. }
  81. }
  82. }
  83. </script>
  84. <style lang="scss">
  85. .popu {
  86. max-height: 70vh;
  87. overflow: auto;
  88. background: #FFFFFF;
  89. border-radius: 28rpx 26rpx 0rpx 0rpx;
  90. padding: 36rpx 28rpx;
  91. position: relative;
  92. .btns {
  93. position: fixed;
  94. bottom: 44rpx;
  95. left: 28rpx;
  96. width: 694rpx;
  97. height: 84rpx;
  98. background: #00B0B0;
  99. border-radius: 42rpx;
  100. text-align: center;
  101. font-size: 32rpx;
  102. font-family: PingFangSC, PingFang SC;
  103. font-weight: 500;
  104. color: #FFFFFF;
  105. line-height: 84rpx;
  106. }
  107. .list {
  108. padding: 0 0 144rpx;
  109. .active-item {
  110. background: rgba(0,176,176,0.06);
  111. }
  112. .list-item {
  113. padding: 32rpx 30rpx 28rpx;
  114. border-bottom: 1px solid #F1F7FE;
  115. background: #F8F8F8;
  116. border-radius: 16rpx;
  117. margin: 0 0 20rpx;
  118. .name {
  119. font-size: 32rpx;
  120. font-family: PingFangSC, PingFang SC;
  121. font-weight: 500;
  122. color: #222222;
  123. }
  124. .left {
  125. width: 450rpx;
  126. padding: 0 52rpx 0 20rpx;
  127. text:first-child {
  128. font-size: 32rpx;
  129. font-family: PingFangSC, PingFang SC;
  130. font-weight: 600;
  131. color: #222222;
  132. }
  133. text:last-child {
  134. font-size: 24rpx;
  135. font-family: PingFangSC, PingFang SC;
  136. font-weight: 400;
  137. color: #666666;
  138. padding: 14rpx 0 0;
  139. }
  140. }
  141. image {
  142. width: 104rpx;
  143. height: 104rpx;
  144. margin: 0 28rpx 0 0;
  145. }
  146. }
  147. }
  148. .top {
  149. padding: 0 0 28rpx;
  150. .title {
  151. font-size: 32rpx;
  152. font-family: PingFangSC, PingFang SC;
  153. font-weight: 500;
  154. color: #333333;
  155. }
  156. image {
  157. width: 44rpx;
  158. height: 44rpx;
  159. }
  160. }
  161. }
  162. </style>