applicationRefund.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. <template>
  2. <view class="page">
  3. <view class="commodity-information">
  4. <view class="commodity-1">
  5. <image class="commodity-img"
  6. src="https://img11.360buyimg.com/jdcms/s460x460_jfs/t1/156939/24/43697/126104/6619de23F69802006/8432635baed61875.jpg.webp"
  7. mode=""></image>
  8. <view class="commodity-right">
  9. <view class="commodity-2">
  10. <view class="commodity-title">
  11. OATLY 噢麦力 醇香燕麦…
  12. </view>
  13. </view>
  14. <view class="commodity-3">
  15. <view class="specifications">
  16. 【醇香】250ml*3
  17. </view>
  18. <view style="font-size: 24rpx;">
  19. x1
  20. </view>
  21. </view>
  22. <view class="commodity-price">
  23. <text style="font-size: 20rpx;">¥</text>
  24. <text>133</text>.
  25. <text style="font-size: 20rpx;">22</text>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. <view class="reason">
  31. <view class="application-reason">
  32. <view class="">
  33. 申请原因
  34. </view>
  35. <view class="right" @click="openReason">
  36. <text>{{refundText}}</text>
  37. <image class="right-icon" src="../../static/mine/325.png" mode=""></image>
  38. </view>
  39. </view>
  40. <view class="application-reason">
  41. <view class="">
  42. 退款金额
  43. </view>
  44. <view class="commodity-price">
  45. <text style="font-size: 20rpx;">¥</text>
  46. <text>133</text>.
  47. <text style="font-size: 20rpx;">22</text>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="application-explain">
  52. <view class="application-title">
  53. 申请说明
  54. </view>
  55. <view class="textarea">
  56. <u--textarea v-model="value1" border="none" placeholder="请您详细填写申请说明" ></u--textarea>
  57. <u-upload
  58. :fileList="fileList6"
  59. @afterRead="afterRead"
  60. @delete="deletePic"
  61. name="6"
  62. multiple
  63. :maxCount="1"
  64. width="250"
  65. height="150"
  66. >
  67. <view class="unload">
  68. <view class="text-content">
  69. 上传凭证<br/>(最多9张)
  70. </view>
  71. </view>
  72. </u-upload>
  73. </view>
  74. </view>
  75. <reasonPopupVue :show="show" @close="close"></reasonPopupVue>
  76. </view>
  77. </template>
  78. <script>
  79. import reasonPopupVue from './component/reasonPopup.vue';
  80. export default {
  81. components: {
  82. reasonPopupVue
  83. },
  84. data() {
  85. return {
  86. show: false,
  87. value1:"",
  88. refundText:"请选择退款原因"
  89. };
  90. },
  91. methods: {
  92. openReason() {
  93. this.show = true
  94. },
  95. close(value) {
  96. console.log(value)
  97. this.refundText = value
  98. this.show = false
  99. }
  100. },
  101. mounted() {
  102. uni.setNavigationBarTitle({
  103. title:"申请退款"
  104. })
  105. }
  106. }
  107. </script>
  108. <style lang="scss" scoped>
  109. .page {
  110. padding: 20rpx 24rpx;
  111. .commodity-information {
  112. padding: 28rpx 20rpx;
  113. background-color: #fff;
  114. border-radius: 16rpx;
  115. .commodity-1 {
  116. display: flex;
  117. .commodity-img {
  118. width: 156rpx;
  119. height: 156rpx;
  120. margin-right: 20rpx;
  121. border-radius: 10rpx;
  122. }
  123. .commodity-right {
  124. width: 73%;
  125. }
  126. .commodity-2 {
  127. display: flex;
  128. justify-content: space-between;
  129. width: 100%;
  130. .commodity-title {
  131. width: 328rpx;
  132. overflow: hidden;
  133. white-space: nowrap;
  134. text-overflow: ellipsis;
  135. margin-right: 38rpx;
  136. }
  137. }
  138. .commodity-3 {
  139. display: flex;
  140. justify-content: space-between;
  141. margin-top: 20rpx;
  142. color: #777;
  143. .specifications {
  144. font-size: 28rpx;
  145. color: #777;
  146. }
  147. }
  148. .commodity-price {
  149. margin-top: 24rpx;
  150. font-weight: 600;
  151. }
  152. }
  153. }
  154. .reason {
  155. background-color: #fff;
  156. padding: 0 20rpx;
  157. border-radius: 16rpx;
  158. margin-top: 20rpx;
  159. .application-reason {
  160. display: flex;
  161. justify-content: space-between;
  162. height: 104rpx;
  163. align-items: center;
  164. font-size: 28rpx;
  165. .right {
  166. display: flex;
  167. align-items: center;
  168. color: rgba(34, 34, 34, .6);
  169. font-size: 28rpx;
  170. }
  171. .right-icon {
  172. width: 32rpx;
  173. height: 32rpx;
  174. }
  175. }
  176. }
  177. .application-explain{
  178. margin-top: 20rpx;
  179. padding: 28rpx 20rpx;
  180. background-color: #fff;
  181. border-radius: 16rpx;
  182. .application-title{
  183. font-size: 28rpx;
  184. color: #222;
  185. margin-bottom: 18rpx;
  186. }
  187. .textarea{
  188. background-color: #f4f4f4;
  189. padding: 24rpx;
  190. border-radius: 16rpx;
  191. }
  192. .unload{
  193. width: 614rpx;
  194. height: 152rpx;
  195. text-align: center;
  196. border-radius: 16rpx;
  197. color: #929292;
  198. border: 2rpx dashed #979797;
  199. font-size: 20rpx;
  200. .text-content{
  201. margin-top: 80rpx;
  202. }
  203. }
  204. }
  205. }
  206. .u-textarea{
  207. background-color: #f4f4f4;
  208. padding: 0;
  209. }
  210. </style>