adddeliveryaddress.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. // pages/adddeliveryaddress/adddeliveryaddress.js
  2. const api = require("../../api/api");
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. navbarData: {
  9. showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
  10. title: '新增提货点', //导航栏 中间的标题
  11. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  12. },
  13. genders: ['男士', '女士'],
  14. type: '', //类型
  15. /* 表单 */
  16. id: 0, //id
  17. address: '',
  18. name: '',
  19. genderIndex: 0,
  20. phone: '',
  21. remarks: ''
  22. },
  23. /**
  24. * 生命周期函数--监听页面加载
  25. */
  26. onLoad(options) {
  27. console.log(options.type);
  28. if (options.type === 'edit') {
  29. this.setData({
  30. type: 'edit',
  31. id: wx.getStorageSync('address').id,
  32. address: wx.getStorageSync('address').address,
  33. name: wx.getStorageSync('address').name,
  34. phone: wx.getStorageSync('address').phone,
  35. remarks: wx.getStorageSync('address').remarks,
  36. navbarData: {
  37. showCapsule: 1,
  38. title: '修改地址',
  39. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  40. }
  41. })
  42. } else {
  43. this.setData({
  44. type: 'add',
  45. navbarData: {
  46. showCapsule: 1,
  47. title: '新增地址',
  48. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  49. }
  50. })
  51. }
  52. },
  53. /**
  54. * 生命周期函数--监听页面初次渲染完成
  55. */
  56. onReady() {
  57. },
  58. /**
  59. * 生命周期函数--监听页面显示
  60. */
  61. onShow() {
  62. },
  63. /**
  64. * 生命周期函数--监听页面隐藏
  65. */
  66. onHide() {
  67. },
  68. /**
  69. * 生命周期函数--监听页面卸载
  70. */
  71. onUnload() {
  72. },
  73. /**
  74. * 页面相关事件处理函数--监听用户下拉动作
  75. */
  76. onPullDownRefresh() {
  77. },
  78. /**
  79. * 页面上拉触底事件的处理函数
  80. */
  81. onReachBottom() {
  82. },
  83. /**
  84. * 用户点击右上角分享
  85. */
  86. onShareAppMessage() {
  87. },
  88. // 输入地址/门牌号
  89. inputAddress(e) {
  90. this.setData({
  91. address: e.detail.value
  92. })
  93. },
  94. // 输入姓名
  95. inputName(e) {
  96. this.setData({
  97. name: e.detail.value
  98. })
  99. },
  100. // 选择性别
  101. selectGender(e) {
  102. this.setData({
  103. genderIndex: e.currentTarget.dataset.index
  104. })
  105. },
  106. // 输入手机号
  107. inputPhone(e) {
  108. this.setData({
  109. phone: e.detail.value
  110. })
  111. },
  112. // 输入备注
  113. inputRemarks(e) {
  114. this.setData({
  115. remarks: e.detail.value
  116. })
  117. },
  118. // 保持地址
  119. submitAdd() {
  120. let that = this;
  121. if (that.data.address == '') {
  122. wx.showToast({
  123. title: '提货点地址未录入',
  124. icon: 'none',
  125. mask: true
  126. })
  127. return
  128. }
  129. if (that.data.name == '') {
  130. wx.showToast({
  131. title: '姓名未录入',
  132. icon: 'none',
  133. mask: true
  134. })
  135. return
  136. }
  137. if (that.data.phone == '') {
  138. wx.showToast({
  139. title: '手机号未录入',
  140. icon: 'none',
  141. mask: true
  142. })
  143. return
  144. }
  145. if (that.data.remarks == '') {
  146. wx.showToast({
  147. title: '备注未录入',
  148. icon: 'none',
  149. mask: true
  150. })
  151. return
  152. }
  153. wx.showLoading({
  154. title: '提交中',
  155. mask: true
  156. })
  157. wx.request({
  158. url: api.Member_point,
  159. header: {
  160. 'Authorization': wx.getStorageSync('token')
  161. },
  162. method: 'POST',
  163. data: {
  164. name: that.data.name,
  165. phone: that.data.phone,
  166. address: that.data.address,
  167. remarks: that.data.remarks
  168. },
  169. success(res) {
  170. console.log(res);
  171. wx.hideLoading()
  172. if (res.data.code === 1) {
  173. wx.showToast({
  174. title: '提交成功',
  175. icon: 'success',
  176. mask: true,
  177. success() {
  178. setTimeout(() => {
  179. wx.navigateBack({
  180. delta: 1,
  181. })
  182. }, 1500)
  183. }
  184. })
  185. } else {
  186. wx.showToast({
  187. title: res.data.msg,
  188. mask: true,
  189. icon: 'none'
  190. })
  191. }
  192. },
  193. fail(err) {
  194. wx.hideLoading()
  195. wx.showToast({
  196. title: '发起网络请求失败',
  197. icon: 'none',
  198. mask: true
  199. })
  200. },
  201. complete() {
  202. // wx.hideLoading()
  203. }
  204. })
  205. },
  206. // 修改地址
  207. submitEdit() {
  208. let that = this;
  209. if (that.data.address == '') {
  210. wx.showToast({
  211. title: '提货点地址未录入',
  212. icon: 'none',
  213. mask: true
  214. })
  215. return
  216. }
  217. if (that.data.name == '') {
  218. wx.showToast({
  219. title: '姓名未录入',
  220. icon: 'none',
  221. mask: true
  222. })
  223. return
  224. }
  225. if (that.data.phone == '') {
  226. wx.showToast({
  227. title: '手机号未录入',
  228. icon: 'none',
  229. mask: true
  230. })
  231. return
  232. }
  233. if (that.data.remarks == '') {
  234. wx.showToast({
  235. title: '备注未录入',
  236. icon: 'none',
  237. mask: true
  238. })
  239. return
  240. }
  241. wx.showLoading({
  242. title: '提交中',
  243. mask: true
  244. })
  245. wx.request({
  246. url: api.Gang_point_edit,
  247. header: {
  248. 'Authorization': wx.getStorageSync('token')
  249. },
  250. method: 'POST',
  251. data: {
  252. id: that.data.id,
  253. name: that.data.name,
  254. address: that.data.address,
  255. remarks: that.data.remarks,
  256. phone: that.data.phone
  257. },
  258. success(res) {
  259. console.log(res);
  260. wx.hideLoading()
  261. if (res.data.code === 1) {
  262. wx.showToast({
  263. title: '提交成功',
  264. icon: 'success',
  265. mask: true,
  266. success() {
  267. setTimeout(() => {
  268. wx.navigateBack({
  269. delta: 1,
  270. })
  271. }, 1500)
  272. }
  273. })
  274. } else {
  275. wx.showToast({
  276. title: res.data.msg,
  277. mask: true,
  278. icon: 'none'
  279. })
  280. }
  281. },
  282. fail(err) {
  283. wx.hideLoading()
  284. wx.showToast({
  285. title: '发起网络请求失败',
  286. icon: 'none',
  287. mask: true
  288. })
  289. },
  290. complete() {
  291. // wx.hideLoading()
  292. }
  293. })
  294. }
  295. })