returnofmoney.js 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. // pages/returnofmoney/returnofmoney.js
  2. const app = getApp();
  3. const api = require('../../api/api');
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. navbarData: {
  10. showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
  11. title: '退款处理', //导航栏 中间的标题,
  12. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  13. },
  14. id: 0, //订单id
  15. billdata: {},
  16. user_info: {}
  17. },
  18. fuzhi() {
  19. wx.setClipboardData({
  20. data: this.data.billdata.refund_number,
  21. })
  22. },
  23. /**
  24. * 生命周期函数--监听页面加载
  25. */
  26. onLoad: function (options) {
  27. this.setData({
  28. id: Number(options.id)
  29. })
  30. },
  31. /**
  32. * 生命周期函数--监听页面初次渲染完成
  33. */
  34. onReady: function () {
  35. },
  36. /**
  37. * 生命周期函数--监听页面显示
  38. */
  39. onShow: function () {
  40. let that = this;
  41. wx.showLoading({
  42. title: '加载中',
  43. mask: true
  44. })
  45. wx.request({
  46. url: api.ReturnGoods_info,
  47. header: {
  48. 'Authorization': wx.getStorageSync('token')
  49. },
  50. data: {
  51. id: that.data.id
  52. },
  53. method: 'POST',
  54. success(res) {
  55. console.log(res);
  56. if (res.data.code === 1) {
  57. that.setData({
  58. billdata: res.data.data
  59. })
  60. that.getUserInfo()
  61. } else {
  62. wx.showToast({
  63. title: res.data.msg,
  64. mask: true,
  65. icon: 'none'
  66. })
  67. }
  68. },
  69. fail(err) {
  70. wx.showToast({
  71. title: '发起网络请求失败',
  72. icon: 'none',
  73. mask: true
  74. })
  75. },
  76. complete() {
  77. wx.hideLoading()
  78. }
  79. })
  80. },
  81. /**
  82. * 生命周期函数--监听页面隐藏
  83. */
  84. onHide: function () {
  85. },
  86. /**
  87. * 生命周期函数--监听页面卸载
  88. */
  89. onUnload: function () {
  90. },
  91. /**
  92. * 页面相关事件处理函数--监听用户下拉动作
  93. */
  94. onPullDownRefresh: function () {
  95. },
  96. /**
  97. * 页面上拉触底事件的处理函数
  98. */
  99. onReachBottom: function () {
  100. },
  101. /**
  102. * 用户点击右上角分享
  103. */
  104. onShareAppMessage: function () {
  105. },
  106. callUser() {
  107. wx.makePhoneCall({
  108. phoneNumber: this.data.user_info.phone,
  109. })
  110. },
  111. getUserInfo() {
  112. let that = this;
  113. wx.showLoading({
  114. title: '加载中',
  115. mask: true
  116. })
  117. wx.request({
  118. url: api.user_info,
  119. header: {
  120. 'Authorization': wx.getStorageSync('token')
  121. },
  122. data: {
  123. id: that.data.billdata.user_id
  124. },
  125. success(res) {
  126. console.log(res);
  127. if (res.data.code === 1) {
  128. that.setData({
  129. user_info: res.data.data
  130. })
  131. } else {
  132. wx.showToast({
  133. title: res.data.msg,
  134. mask: true,
  135. icon: 'none'
  136. })
  137. }
  138. },
  139. fail(err) {
  140. wx.showToast({
  141. title: '发起网络请求失败',
  142. icon: 'none',
  143. mask: true
  144. })
  145. },
  146. complete() {
  147. wx.hideLoading()
  148. }
  149. })
  150. },
  151. // 同意退款
  152. agree() {
  153. let that = this;
  154. wx.showLoading({
  155. title: '加载中',
  156. mask: true
  157. })
  158. wx.request({
  159. url: api.ReturnGoods_refund,
  160. header: {
  161. 'Authorization': wx.getStorageSync('token')
  162. },
  163. data: {
  164. id: that.data.id
  165. },
  166. method: 'POST',
  167. success(res) {
  168. wx.hideLoading()
  169. console.log(res);
  170. if (res.data.code === 1) {
  171. wx.showToast({
  172. title: '操作成功',
  173. mask: true,
  174. success() {
  175. setTimeout(()=>{
  176. wx.navigateBack({
  177. delta: 1,
  178. })
  179. }, 1500)
  180. }
  181. })
  182. } else {
  183. wx.showToast({
  184. title: res.data.msg,
  185. mask: true,
  186. icon: 'none'
  187. })
  188. }
  189. },
  190. fail(err) {
  191. wx.hideLoading()
  192. wx.showToast({
  193. title: '发起网络请求失败',
  194. icon: 'none',
  195. mask: true
  196. })
  197. },
  198. complete() {
  199. // wx.hideLoading()
  200. }
  201. })
  202. },
  203. // 不同意退款
  204. disagree() {
  205. let that = this;
  206. wx.showLoading({
  207. title: '加载中',
  208. mask: true
  209. })
  210. wx.request({
  211. url: api.ReturnGoods_no_refund,
  212. header: {
  213. 'Authorization': wx.getStorageSync('token')
  214. },
  215. data: {
  216. id: that.data.id
  217. },
  218. method: 'POST',
  219. success(res) {
  220. console.log(res);
  221. wx.hideLoading()
  222. if (res.data.code === 1) {
  223. wx.showToast({
  224. title: '操作成功',
  225. mask: true,
  226. success() {
  227. setTimeout(()=>{
  228. wx.navigateBack({
  229. delta: 1,
  230. })
  231. }, 1500)
  232. }
  233. })
  234. } else {
  235. wx.showToast({
  236. title: res.data.msg,
  237. mask: true,
  238. icon: 'none'
  239. })
  240. }
  241. },
  242. fail(err) {
  243. wx.hideLoading()
  244. wx.showToast({
  245. title: '发起网络请求失败',
  246. icon: 'none',
  247. mask: true
  248. })
  249. },
  250. complete() {
  251. // wx.hideLoading()
  252. }
  253. })
  254. }
  255. })