refund.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. <template>
  2. <view class="pages">
  3. <view class="" :style="{height: navHeight+'px' }"></view>
  4. <view class="navbar-box">
  5. <u-navbar title="申请退款" :safeAreaInsetTop="true" @leftClick="leftClick" :titleStyle="{color:'#fff'}" leftIconColor="#fff" bgColor="#EF1818"></u-navbar>
  6. </view>
  7. <view class="page-wrap">
  8. <view class="box base-info">
  9. <view class="title u-flex u-row-between">
  10. <text>申请退款金额</text>
  11. <text>¥ {{refundAmount}}</text>
  12. </view>
  13. <view class="con">
  14. (预计3个工作日内退回)
  15. </view>
  16. </view>
  17. <view class="box reason">
  18. <view class="title">退款原因(必填)</view>
  19. <view class="select-reason u-flex u-row-between" @click="reasonshow=true">
  20. <text>{{refundReason||'请选择原因'}}</text>
  21. <u-icon name="arrow-down" color="#E5E5E5" size="36rpx"></u-icon>
  22. </view>
  23. <u-picker :show="reasonshow" :columns="reasonList" @confirm="confirmReason" @cancel="reasonshow=false"></u-picker>
  24. </view>
  25. </view>
  26. <view class="btn-wrap">
  27. <view class="inner">
  28. <view class="btn" @click="submit">确认退款</view>
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import { systemInfo } from "@/mixin.js";
  35. export default {
  36. mixins: [systemInfo], // 使用mixin
  37. data() {
  38. return {
  39. staticUrl:this.$commonConfig.staticUrl,
  40. orderId:'',
  41. refundAmount:'',
  42. viewerList:[],
  43. refundReason:'',
  44. reasonshow:false,
  45. reasonList:[
  46. [
  47. '选错场次',
  48. '计划有变',
  49. '其他'
  50. ]
  51. ],
  52. params:{
  53. },
  54. templateIdList:[],//微信小程序订阅消息
  55. }
  56. },
  57. onShow() {
  58. },
  59. onLoad(page) {
  60. console.log('page',page);
  61. this.orderId = page.id;
  62. this.refundAmount = page.refundAmount;
  63. this.viewerList = JSON.parse(page.viewerList);
  64. this.getSystemInfo();
  65. this.getTemplateIdList();//获取模板列表
  66. },
  67. methods: {
  68. leftClick(e){
  69. let pages = getCurrentPages();
  70. if(pages.length==1){
  71. // console.log('1111');
  72. uni.$u.route('/pages/index/index')
  73. }else{
  74. // console.log('2222222');
  75. uni.navigateBack()
  76. };
  77. },
  78. getTemplateIdList(){
  79. this.$u.api.templateIdList({templateLabel:'order_refund'}).then(res=>{
  80. console.log('res',res.data);
  81. this.templateIdList = res.data.list.map(item=>{
  82. return item.templateId
  83. });
  84. // if(this.templateIdList.length>0){
  85. // this.templateEven();
  86. // }
  87. }).catch(err=>{
  88. console.log('getTemplateIdList',err);
  89. })
  90. },
  91. confirmReason(e){
  92. console.log('confirmReason',e.value[0]);
  93. this.refundReason = e.value[0];
  94. this.reasonshow = false;
  95. },
  96. submit(){
  97. if(!this.refundReason){
  98. uni.$u.toast('请选择原因')
  99. return
  100. }
  101. // this.templateEven();
  102. // #ifdef MP
  103. this.setTemplate();
  104. // #endif
  105. // #ifdef H5
  106. this.handleSubmit();
  107. // #endif
  108. },
  109. handleSubmit(){
  110. let params = {
  111. orderId:this.orderId,
  112. refundReason:this.refundReason,
  113. refundAmount:this.refundAmount,
  114. viewerList:this.viewerList
  115. }
  116. this.$u.api.refundSubmit(params).then(res=>{
  117. uni.$u.toast(res.msg)
  118. // uni.navigateBack()
  119. setTimeout(()=>{
  120. // uni.$u.route('/center/orderdetails', {
  121. // type:'redirectTo',
  122. // id: this.orderId
  123. // });
  124. uni.redirectTo({
  125. url: `/center/orderdetails?id=${this.orderId}`
  126. })
  127. // uni.$u.route('/center/order');
  128. },1500)
  129. console.log('res',res.data);
  130. }).catch(err=>{
  131. console.log('refundSubmit',err);
  132. })
  133. },
  134. // 订阅消息
  135. templateEven(){
  136. let that = this
  137. wx.showModal({
  138. title: '温馨提示',
  139. content: '为更好的促进与您的交流,服务号需要实时向您发送消息',
  140. confirmText:"同意",
  141. cancelText:"拒绝",
  142. success: function (res) {
  143. if (res.confirm) {
  144. //调用订阅消息
  145. console.log('用户点击确定');
  146. //调用订阅
  147. that.setTemplate();
  148. } else if (res.cancel) {
  149. console.log('用户点击取消');
  150. ///显示第二个弹说明一下
  151. wx.showModal({
  152. title: '温馨提示',
  153. content: '拒绝后您将无法获取实时的消息',
  154. confirmText:"知道了",
  155. showCancel:false,
  156. success: function (res) {
  157. that.handleSubmit();
  158. ///点击知道了的后续操作
  159. ///如跳转首页面
  160. }
  161. });
  162. }
  163. }
  164. });
  165. },
  166. // 设置小程序订阅消息
  167. setTemplate() {
  168. let that = this;
  169. // console.log('templateIdList',this.templateIdList);
  170. wx.requestSubscribeMessage({
  171. tmplIds: this.templateIdList,
  172. success (res) {
  173. // that.handleSubmit();
  174. console.log("success:",res);
  175. },
  176. fail (res) {
  177. console.log("fail:",res);
  178. },
  179. complete (res) {
  180. that.handleSubmit();
  181. console.log("complete:",res);
  182. }
  183. })
  184. },
  185. }
  186. }
  187. </script>
  188. <style>
  189. page{background-color: #F7F7F9;}
  190. </style>
  191. <style lang="scss" scoped>
  192. .page-wrap{
  193. padding: 32rpx 16rpx;
  194. }
  195. .box{
  196. margin-bottom: 24rpx;
  197. background: #FFFFFF;
  198. box-shadow: 0rpx 0rpx 20rpx 2rpx rgba(221,221,221,0.5);
  199. border-radius: 20rpx;
  200. padding: 36rpx 24rpx;
  201. .title{
  202. font-size: 28rpx;
  203. font-weight: 500;
  204. color: #2D2D2D;
  205. margin-bottom: 38rpx;
  206. }
  207. }
  208. .base-info{
  209. .con{
  210. font-size: 24rpx;
  211. font-weight: 400;
  212. color: #7F7F7F;
  213. text-align: right;
  214. }
  215. }
  216. .reason{
  217. .select-reason{
  218. height: 64rpx;
  219. line-height: 64rpx;
  220. border-radius: 8rpx;
  221. border: 2rpx solid #E5E5E5;
  222. padding: 0 24rpx;
  223. font-size: 24rpx;
  224. font-weight: 400;
  225. color: #363636;
  226. }
  227. }
  228. .btn-wrap{
  229. height: 92rpx;
  230. .inner{
  231. position: fixed;
  232. left: 0;
  233. right: 0;
  234. bottom: 66rpx;
  235. }
  236. .btn{
  237. height: 92rpx;
  238. line-height: 92rpx;
  239. width:80%;
  240. margin: 0 auto;
  241. background: linear-gradient(90deg, #FF7878 0%, #ED0000 100%);
  242. border-radius: 46rpx;
  243. font-size: 28rpx;
  244. font-weight: 400;
  245. color: #FFFFFF;
  246. text-align: center;
  247. }
  248. }
  249. </style>