apply-for-refund.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. <!-- 申请退款 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="item">
  5. <view class="item-top">
  6. <text>限源预售</text>
  7. </view>
  8. <view class="item-content">
  9. <image src="../../../static/img-4.png" class="product-img" mode="aspectFill"></image>
  10. <view class="item-content-sidebar">
  11. <view class="product-item-row-between">
  12. <view class="product-item-name">
  13. 冻干柠檬片 蜂蜜柠檬茶 保留鲜度96% 美白神器
  14. </view>
  15. <view class="row-end">
  16. <text class="product-item-price">¥394.00</text>
  17. <text class="product-item-num">x <text>1</text></text>
  18. </view>
  19. </view>
  20. <view class="product-item-tag">
  21. <text>一盒15g*20袋</text>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="box">
  27. <view class="box-label">
  28. 退款信息
  29. </view>
  30. <view class="refund-list">
  31. <view class="refund-item">
  32. <view class="row-between" @tap="showCargoStatus">
  33. <text class="row-name">货物状态</text>
  34. <view class="select-row">
  35. 请选择
  36. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="refund-item">
  41. <view class="row-between" @tap="showRefundReason">
  42. <text class="row-name">退款原因</text>
  43. <view class="select-row">
  44. 请选择
  45. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  46. </view>
  47. </view>
  48. </view>
  49. <view class="refund-item">
  50. <view class="row-between">
  51. <text class="row-name">退款金额</text>
  52. <text class="refund-price">¥980.00</text>
  53. </view>
  54. <view class="refund-msg">
  55. 不可修改,最多¥980.00,含发货邮费¥0.00,其中包含积分
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. <view class="upload-box">
  61. <view class="upload-box-label">
  62. 上传凭证<text>(最多3张照片)</text>
  63. </view>
  64. <view class="img-container">
  65. <view class="note-image-box">
  66. <view class="note-image-item" v-for="(item,index) in imageLists" :key="index">
  67. <view class="close-icon" @click="del(index)">
  68. <image src="../../../static/close-2.png" mode=""></image>
  69. </view>
  70. <view class="image-box" @click="previewImg(index)">
  71. <image :src="item.url" class="img" mode="aspectFill"></image>
  72. </view>
  73. </view>
  74. <view v-if="imageLists.length < 9" class="note-image-item" @click="addImage">
  75. <image src="../../../static/add-3.png" class="add-img" mode="aspectFill"></image>
  76. </view>
  77. </view>
  78. </view>
  79. </view>
  80. <view class="footer">
  81. <button type="default" class="active">提交</button>
  82. </view>
  83. <!-- 货物状态-弹窗 -->
  84. <view v-show="isShowCargoStatus">
  85. <view class="mask" @tap="closeCargoStatus"></view>
  86. <view class="window">
  87. <view class="window-label">
  88. 货物状态
  89. </view>
  90. <scroll-view scroll-y="true" class="window-select-box">
  91. <view class="radio-wrap">
  92. <view class="radio-row" v-for="(item, index) in list" :key="index" @click="choseItem(item.id)">
  93. <view class="leftsidebar">
  94. <text>{{item.name}}</text>
  95. </view>
  96. <image class="circle-img"
  97. :src="id == item.id ? '../../../static/circle-active.png' : '../../../static/circle.png'"
  98. mode="" />
  99. </view>
  100. </view>
  101. </scroll-view>
  102. <view class="window-bottom">
  103. <button type="default">确定</button>
  104. </view>
  105. </view>
  106. </view>
  107. <!-- 货物状态-弹窗 -->
  108. <!-- 退款原因-弹窗 -->
  109. <view v-show="isShowRefundReason">
  110. <view class="mask" @tap="closeRefundReason"></view>
  111. <view class="window">
  112. <view class="window-label">
  113. 退款原因
  114. </view>
  115. <scroll-view scroll-y="true" class="window-select-box">
  116. <view class="radio-wrap">
  117. <view class="radio-row" v-for="(item, index) in reasonList" :key="index"
  118. @click="selectItem(item.isActive)">
  119. <view class="leftsidebar">
  120. <text>{{item.name}}</text>
  121. </view>
  122. <image class="circle-img"
  123. :src="isActive == item.isActive ? '../../../static/circle-active.png' : '../../../static/circle.png'"
  124. mode="" />
  125. </view>
  126. </view>
  127. </scroll-view>
  128. <view class="window-bottom">
  129. <button type="default">确定</button>
  130. </view>
  131. </view>
  132. </view>
  133. <!-- 退款原因-弹窗 -->
  134. </view>
  135. </template>
  136. <script>
  137. export default {
  138. data() {
  139. return {
  140. imageLists: [], //存放图片数组
  141. //货物状态-弹窗
  142. isShowCargoStatus: false,
  143. //货物状态列表-单选
  144. list: [{
  145. id: 1,
  146. name: '未收到货',
  147. },
  148. {
  149. id: 2,
  150. name: '已收到货',
  151. },
  152. ],
  153. id: 1, //单选 初始化第一个高亮
  154. //退款原因-弹窗
  155. isShowRefundReason: false,
  156. reasonList: [{
  157. isActive: 1,
  158. name: '不喜欢/不想要',
  159. },
  160. {
  161. isActive: 2,
  162. name: '空包裹',
  163. }, {
  164. isActive: 3,
  165. name: '快递/物流一直未送达',
  166. }, {
  167. isActive: 4,
  168. name: '快递/物流无跟踪记录',
  169. }, {
  170. isActive: 5,
  171. name: '货物破损已拒签',
  172. }, {
  173. isActive: 6,
  174. name: '其他',
  175. },
  176. ],
  177. isActive: 1, //单选 初始化第一个高亮
  178. }
  179. },
  180. methods: {
  181. //删除图片
  182. del(index) {
  183. this.imageLists.splice(index, 1)
  184. },
  185. //添加图片
  186. addImage() {
  187. const count = 9 - this.imageLists.length
  188. uni.chooseImage({
  189. count: count,
  190. success: res => {
  191. let tempfilepaths = res.tempFilePaths
  192. tempfilepaths.forEach((item, index) => {
  193. // 处理h5多选的情况
  194. if (index < count) {
  195. this.imageLists.push({
  196. url: item
  197. })
  198. }
  199. })
  200. }
  201. })
  202. },
  203. //查看图片
  204. previewImg(index) {
  205. let urls = []
  206. for (let i = 0; i < this.imageLists.length; i++) {
  207. urls.push(this.imageLists[i].url)
  208. }
  209. uni.previewImage({
  210. current: index,
  211. urls: urls,
  212. })
  213. },
  214. /**
  215. * 货物状态-弹窗
  216. */
  217. showCargoStatus() {
  218. this.isShowCargoStatus = true;
  219. },
  220. closeCargoStatus() {
  221. this.isShowCargoStatus = false;
  222. },
  223. //单选-选择货物状态
  224. choseItem: function(index) {
  225. this.id = index;
  226. },
  227. /**
  228. * 退款原因-弹窗
  229. */
  230. showRefundReason() {
  231. this.isShowRefundReason = true;
  232. },
  233. closeRefundReason() {
  234. this.isShowRefundReason = false;
  235. },
  236. //单选-选择退款原因
  237. selectItem: function(index) {
  238. this.isActive = index;
  239. },
  240. }
  241. }
  242. </script>
  243. <style scoped>
  244. @import "./apply-for-refund.css";
  245. </style>