refundMoney.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. <template>
  2. <view class="box">
  3. <view class="content">
  4. <view class="viewBg">
  5. <image src="../../static/img/icon_xinghao.png" mode="" style="width: 14rpx; height: 14rpx;"></image>
  6. <view class="leftTitle">退款原因</view>
  7. <picker class="width70" mode="selector" :range="reasonNameArray" @change="reasonChange">
  8. <view class="blackColor" :class="{grayColor: reason==''}">
  9. {{reason == '' ? '请选择' : reason}}
  10. </view>
  11. </picker>
  12. <image src="../../static/img/rightArrow.png" mode="" style="width: 13rpx; height: 23rpx;"></image>
  13. </view>
  14. <view class="moneyBg">
  15. <view class="viewBg2">
  16. <image src="../../static/img/icon_xinghao.png" mode="" style="width: 14rpx; height: 14rpx;"></image>
  17. <view class="leftTitle">退款金额</view>
  18. <input class="blackColor" type="number" v-model="money" :placeholder="'最大可退 ¥'+maxMoney"
  19. placeholder-style="color:#999999" />
  20. </view>
  21. <view class="grayColor">如全额退款,优惠券会退回到您的账户</view>
  22. </view>
  23. <view class="contentBg">
  24. <view class="leftTitle">补充描述</view>
  25. <textarea placeholder-style="color:#999999" placeholder="选填,请输入补充描述" v-model="exeContent"
  26. class="textareaCont" maxlength="-1" auto-height="true" @confirm="feedDone" />
  27. </view>
  28. <view class="bottom">
  29. <view class="shoreDz" @click="submit">提交</view>
  30. </view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. data() {
  37. return {
  38. sheetId: '',
  39. reasonArray: [],
  40. reasonNameArray: [],
  41. reasonId: '',
  42. reason:'',
  43. maxMoney: '',
  44. money: '',
  45. exeContent: '',
  46. edit: '', //修改申请
  47. editId: '',
  48. }
  49. },
  50. onLoad(opt) {
  51. this.sheetId = opt.sheetId;
  52. this.maxMoney = opt.maxMoney;
  53. this.getRefundData();
  54. //修改申请
  55. this.edit = opt.edit;
  56. this.editId = opt.editId;
  57. this.money = opt.money;
  58. this.reasonId = opt.reasonId;
  59. this.reason = opt.reason;
  60. this.exeContent = opt.exeContent;
  61. if (opt.exeContent == null || opt.exeContent == 'null') {
  62. this.exeContent = ''
  63. }
  64. },
  65. methods: {
  66. submit() {
  67. if (this.reasonId == '') {
  68. uni.showToast({
  69. title: '请选择退款原因',
  70. icon: 'none',
  71. duration: 2000,
  72. });
  73. return ;
  74. }
  75. if (this.money==0) {
  76. uni.showToast({
  77. title: '请输入退款金额',
  78. icon: 'none',
  79. duration: 2000,
  80. });
  81. return ;
  82. }
  83. if (this.money > this.maxMoney) {
  84. uni.showToast({
  85. title: '退款金额不能大于最大可退金额',
  86. icon: 'none',
  87. duration: 2000,
  88. });
  89. return ;
  90. }
  91. if (this.edit == 'true') {
  92. console.log('修改申请');
  93. this.editUrl();
  94. } else {
  95. this.addUrl();
  96. }
  97. },
  98. addUrl(){
  99. uni.showLoading({});
  100. this.$http('worldKeepCar/orderRefund/applyRefund', {
  101. sheetId:this.sheetId,
  102. applyReasonId:this.reasonId,
  103. applyReason:this.reason,
  104. money:this.money,
  105. reasonComment: this.exeContent,
  106. }, 'POST').then(res => {
  107. uni.hideLoading();
  108. if(res.code==0){
  109. uni.showToast({
  110. title: '提交成功',
  111. icon: 'none',
  112. duration: 2000,
  113. });
  114. setTimeout(function() {
  115. uni.navigateBack({
  116. })
  117. }, 2000);
  118. }
  119. })
  120. },
  121. editUrl(){
  122. uni.showLoading({});
  123. this.$http('worldKeepCar/orderRefund/editApply', {
  124. applyReasonId:this.reasonId,
  125. applyReason:this.reason,
  126. money:this.money,
  127. reasonComment: this.exeContent,
  128. id:this.editId,
  129. }, 'POST').then(res => {
  130. uni.hideLoading();
  131. if(res.code==0){
  132. uni.showToast({
  133. title: '提交成功',
  134. icon: 'none',
  135. duration: 2000,
  136. });
  137. setTimeout(function() {
  138. uni.navigateBack({
  139. })
  140. }, 2000);
  141. }
  142. })
  143. },
  144. getRefundData() {
  145. uni.showLoading({
  146. title: '加载中'
  147. })
  148. let url = 'worldKeepCar/orderRefund/refuseReasonList',
  149. params = {
  150. type: 3,
  151. }
  152. this.$http(url, params, 'GET').then(res => {
  153. uni.hideLoading();
  154. this.reasonArray = res.data
  155. this.reasonArray.forEach((item, index) => {
  156. this.reasonNameArray.push(item.contents)
  157. });
  158. })
  159. },
  160. feedDone(e) {
  161. this.exeContent = e.target.value
  162. },
  163. reasonChange(e) {
  164. this.reasonId = this.reasonArray[e.target.value].id
  165. this.reason = this.reasonArray[e.target.value].contents
  166. },
  167. }
  168. }
  169. </script>
  170. <style scoped>
  171. .box {
  172. min-height: 100vh;
  173. background: #F4F5F7;
  174. padding-top: 20rpx;
  175. }
  176. .content {
  177. background-color: #FFFFFF;
  178. border-radius: 10rpx;
  179. margin: 20rpx 24rpx;
  180. padding: 0 20rpx;
  181. }
  182. .viewBg {
  183. display: flex;
  184. align-items: center;
  185. padding: 30rpx 0;
  186. border-bottom: 1rpx solid #EEEEEE;
  187. }
  188. .width70 {
  189. width: 70%;
  190. }
  191. .moneyBg {
  192. padding: 30rpx 0;
  193. border-bottom: 1rpx solid #EEEEEE;
  194. }
  195. .viewBg2 {
  196. display: flex;
  197. align-items: center;
  198. margin-bottom: 20rpx;
  199. }
  200. .leftTitle {
  201. color: #333333;
  202. font-size: 28rpx;
  203. width: 130rpx;
  204. margin-right: 50rpx;
  205. }
  206. .blackColor {
  207. color: #333333;
  208. font-size: 28rpx;
  209. }
  210. .grayColor {
  211. color: #999999;
  212. font-size: 28rpx;
  213. }
  214. .textareaCont {
  215. width: 70%;
  216. font-size: 28rpx;
  217. color: #333333;
  218. }
  219. .contentBg {
  220. display: flex;
  221. align-items: center;
  222. padding: 30rpx 0;
  223. }
  224. .bottom {
  225. width: 750rpx;
  226. height: 120rpx;
  227. background: #FFFFFF;
  228. box-shadow: 0px -4px 8px 0px rgba(153, 153, 153, 0.08);
  229. position: fixed;
  230. left: 0;
  231. bottom: 0;
  232. display: flex;
  233. justify-content: space-around;
  234. }
  235. .shoreDz {
  236. width: 702rpx;
  237. height: 74rpx;
  238. background: linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  239. border-radius: 37rpx;
  240. text-align: center;
  241. line-height: 74rpx;
  242. color: #FFFFFF;
  243. font-size: 30rpx;
  244. margin-top: 24rpx;
  245. }
  246. </style>