refund.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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>¥ {{realPrice}}</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. realPrice:'',
  42. refundReason:'',
  43. reasonshow:false,
  44. reasonList:[
  45. [
  46. '选错场次',
  47. '计划有变',
  48. '其他'
  49. ]
  50. ],
  51. params:{
  52. },
  53. templateIdList:[],//微信小程序订阅消息
  54. }
  55. },
  56. onShow() {
  57. },
  58. onLoad(page) {
  59. console.log('page',page);
  60. this.orderId = page.id;
  61. this.realPrice = page.realPrice;
  62. this.getSystemInfo();
  63. this.getTemplateIdList();//获取模板列表
  64. },
  65. methods: {
  66. leftClick(e){
  67. let pages = getCurrentPages();
  68. if(pages.length==1){
  69. console.log('1111');
  70. uni.$u.route('/pages/index/index')
  71. }else{
  72. console.log('2222222');
  73. uni.navigateBack()
  74. };
  75. },
  76. getTemplateIdList(){
  77. this.$u.api.templateIdList({templateLabel:'order_refund'}).then(res=>{
  78. console.log('res',res.data);
  79. this.templateIdList = res.data.list.map(item=>{
  80. return item.templateId
  81. });
  82. // if(this.templateIdList.length>0){
  83. // this.templateEven();
  84. // }
  85. }).catch(err=>{
  86. console.log('getTemplateIdList',err);
  87. })
  88. },
  89. confirmReason(e){
  90. console.log('confirmReason',e.value[0]);
  91. this.refundReason = e.value[0];
  92. this.reasonshow = false;
  93. },
  94. submit(){
  95. if(!this.refundReason){
  96. uni.$u.toast('请选择原因')
  97. return
  98. }
  99. // this.templateEven();
  100. // #ifdef MP
  101. this.setTemplate();
  102. // #endif
  103. // #ifdef H5
  104. this.handleSubmit();
  105. // #endif
  106. },
  107. handleSubmit(){
  108. let params = {
  109. orderId:this.orderId,
  110. refundReason:this.refundReason
  111. }
  112. this.$u.api.refundSubmit(params).then(res=>{
  113. uni.$u.toast(res.msg)
  114. uni.navigateBack()
  115. console.log('res',res.data);
  116. }).catch(err=>{
  117. console.log('refundSubmit',err);
  118. })
  119. },
  120. // 订阅消息
  121. templateEven(){
  122. let that = this
  123. wx.showModal({
  124. title: '温馨提示',
  125. content: '为更好的促进与您的交流,服务号需要实时向您发送消息',
  126. confirmText:"同意",
  127. cancelText:"拒绝",
  128. success: function (res) {
  129. if (res.confirm) {
  130. //调用订阅消息
  131. console.log('用户点击确定');
  132. //调用订阅
  133. that.setTemplate();
  134. } else if (res.cancel) {
  135. console.log('用户点击取消');
  136. ///显示第二个弹说明一下
  137. wx.showModal({
  138. title: '温馨提示',
  139. content: '拒绝后您将无法获取实时的消息',
  140. confirmText:"知道了",
  141. showCancel:false,
  142. success: function (res) {
  143. that.handleSubmit();
  144. ///点击知道了的后续操作
  145. ///如跳转首页面
  146. }
  147. });
  148. }
  149. }
  150. });
  151. },
  152. // 设置小程序订阅消息
  153. setTemplate() {
  154. let that = this;
  155. // console.log('templateIdList',this.templateIdList);
  156. wx.requestSubscribeMessage({
  157. tmplIds: this.templateIdList,
  158. success (res) {
  159. // that.handleSubmit();
  160. console.log("success:",res);
  161. },
  162. fail (res) {
  163. console.log("fail:",res);
  164. },
  165. complete (res) {
  166. that.handleSubmit();
  167. console.log("complete:",res);
  168. }
  169. })
  170. },
  171. }
  172. }
  173. </script>
  174. <style>
  175. page{background-color: #F7F7F9;}
  176. </style>
  177. <style lang="scss" scoped>
  178. .page-wrap{
  179. padding: 32rpx 16rpx;
  180. }
  181. .box{
  182. margin-bottom: 24rpx;
  183. background: #FFFFFF;
  184. box-shadow: 0rpx 0rpx 20rpx 2rpx rgba(221,221,221,0.5);
  185. border-radius: 20rpx;
  186. padding: 36rpx 24rpx;
  187. .title{
  188. font-size: 28rpx;
  189. font-weight: 500;
  190. color: #2D2D2D;
  191. margin-bottom: 38rpx;
  192. }
  193. }
  194. .base-info{
  195. .con{
  196. font-size: 24rpx;
  197. font-weight: 400;
  198. color: #7F7F7F;
  199. text-align: right;
  200. }
  201. }
  202. .reason{
  203. .select-reason{
  204. height: 64rpx;
  205. line-height: 64rpx;
  206. border-radius: 8rpx;
  207. border: 2rpx solid #E5E5E5;
  208. padding: 0 24rpx;
  209. font-size: 24rpx;
  210. font-weight: 400;
  211. color: #363636;
  212. }
  213. }
  214. .btn-wrap{
  215. height: 92rpx;
  216. .inner{
  217. position: fixed;
  218. left: 0;
  219. right: 0;
  220. bottom: 66rpx;
  221. }
  222. .btn{
  223. height: 92rpx;
  224. line-height: 92rpx;
  225. width:80%;
  226. margin: 0 auto;
  227. background: linear-gradient(90deg, #FF7878 0%, #ED0000 100%);
  228. border-radius: 46rpx;
  229. font-size: 28rpx;
  230. font-weight: 400;
  231. color: #FFFFFF;
  232. text-align: center;
  233. }
  234. }
  235. </style>