|
@@ -238,55 +238,60 @@ Page({
|
|
|
},
|
|
|
// 修改地址
|
|
|
submitEdit() {
|
|
|
- let that = this;
|
|
|
-
|
|
|
- if (that.data.editFormPhone == '') {
|
|
|
- wx.showToast({
|
|
|
- title: '手机号未录入',
|
|
|
- icon: 'none',
|
|
|
- mask: true
|
|
|
- })
|
|
|
- return
|
|
|
- }
|
|
|
- wx.request({
|
|
|
- url: api.Gang_point_edit,
|
|
|
- header: {
|
|
|
- 'Authorization': wx.getStorageSync('token')
|
|
|
- },
|
|
|
- method: 'POST',
|
|
|
- data: {
|
|
|
- id: that.data.ziquAddress[that.data.ziquIndex].id,
|
|
|
- name: that.data.ziquAddress[that.data.ziquIndex].name,
|
|
|
- address: that.data.ziquAddress[that.data.ziquIndex].address,
|
|
|
- remarks: that.data.ziquAddress[that.data.ziquIndex].remarks,
|
|
|
- phone: that.data.editFormPhone
|
|
|
- },
|
|
|
- success(res) {
|
|
|
- console.log(res);
|
|
|
- wx.hideLoading()
|
|
|
- if (res.data.code === 1) {
|
|
|
- console.log('修改手机号成功')
|
|
|
- that.openPayTypePicker()
|
|
|
- } else {
|
|
|
- wx.showToast({
|
|
|
- title: res.data.msg,
|
|
|
- mask: true,
|
|
|
- icon: 'none'
|
|
|
- })
|
|
|
- }
|
|
|
- },
|
|
|
- fail(err) {
|
|
|
- wx.hideLoading()
|
|
|
+ // 物流提交
|
|
|
+ if(this.data.tabType=='wuliu'){
|
|
|
+ this.openPayTypePicker()
|
|
|
+ }else{
|
|
|
+ let that = this;
|
|
|
+
|
|
|
+ if (that.data.editFormPhone == '') {
|
|
|
wx.showToast({
|
|
|
- title: '发起网络请求失败',
|
|
|
- icon: 'none',
|
|
|
+ title: '手机号未录入',
|
|
|
+ icon: 'none',
|
|
|
mask: true
|
|
|
})
|
|
|
- },
|
|
|
- complete() {
|
|
|
- // wx.hideLoading()
|
|
|
+ return
|
|
|
}
|
|
|
- })
|
|
|
+ wx.request({
|
|
|
+ url: api.Gang_point_edit,
|
|
|
+ header: {
|
|
|
+ 'Authorization': wx.getStorageSync('token')
|
|
|
+ },
|
|
|
+ method: 'POST',
|
|
|
+ data: {
|
|
|
+ id: that.data.ziquAddress[that.data.ziquIndex].id,
|
|
|
+ name: that.data.ziquAddress[that.data.ziquIndex].name,
|
|
|
+ address: that.data.ziquAddress[that.data.ziquIndex].address,
|
|
|
+ remarks: that.data.ziquAddress[that.data.ziquIndex].remarks,
|
|
|
+ phone: that.data.editFormPhone
|
|
|
+ },
|
|
|
+ success(res) {
|
|
|
+ console.log(res);
|
|
|
+ wx.hideLoading()
|
|
|
+ if (res.data.code === 1) {
|
|
|
+ console.log('修改手机号成功')
|
|
|
+ that.openPayTypePicker()
|
|
|
+ } else {
|
|
|
+ wx.showToast({
|
|
|
+ title: res.data.msg,
|
|
|
+ mask: true,
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ fail(err) {
|
|
|
+ wx.hideLoading()
|
|
|
+ wx.showToast({
|
|
|
+ title: '发起网络请求失败',
|
|
|
+ icon: 'none',
|
|
|
+ mask: true
|
|
|
+ })
|
|
|
+ },
|
|
|
+ complete() {
|
|
|
+ // wx.hideLoading()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
},
|
|
|
// 下单
|
|
|
openPayTypePicker() {
|