123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- // pages/adddeliveryaddress/adddeliveryaddress.js
- const api = require("../../api/api");
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- navbarData: {
- showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
- title: '新增提货点', //导航栏 中间的标题
- capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
- },
- genders: ['男士', '女士'],
- type: '', //类型
- /* 表单 */
- id: 0, //id
- address: '',
- name: '',
- genderIndex: 0,
- phone: '',
- remarks: ''
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad(options) {
- console.log(options.type);
- if (options.type === 'edit') {
- this.setData({
- type: 'edit',
- id: wx.getStorageSync('address').id,
- address: wx.getStorageSync('address').address,
- name: wx.getStorageSync('address').name,
- phone: wx.getStorageSync('address').phone,
- remarks: wx.getStorageSync('address').remarks,
- navbarData: {
- showCapsule: 1,
- title: '修改地址',
- capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
- }
- })
- } else {
- this.setData({
- type: 'add',
- navbarData: {
- showCapsule: 1,
- title: '新增地址',
- capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
- }
- })
- }
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady() {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow() {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide() {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload() {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh() {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom() {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage() {
- },
- // 输入地址/门牌号
- inputAddress(e) {
- this.setData({
- address: e.detail.value
- })
- },
- // 输入姓名
- inputName(e) {
- this.setData({
- name: e.detail.value
- })
- },
- // 选择性别
- selectGender(e) {
- this.setData({
- genderIndex: e.currentTarget.dataset.index
- })
- },
- // 输入手机号
- inputPhone(e) {
- this.setData({
- phone: e.detail.value
- })
- },
- // 输入备注
- inputRemarks(e) {
- this.setData({
- remarks: e.detail.value
- })
- },
- // 保持地址
- submitAdd() {
- let that = this;
- if (that.data.address == '') {
- wx.showToast({
- title: '提货点地址未录入',
- icon: 'none',
- mask: true
- })
- return
- }
- if (that.data.name == '') {
- wx.showToast({
- title: '姓名未录入',
- icon: 'none',
- mask: true
- })
- return
- }
- if (that.data.phone == '') {
- wx.showToast({
- title: '手机号未录入',
- icon: 'none',
- mask: true
- })
- return
- }
- if (that.data.remarks == '') {
- wx.showToast({
- title: '备注未录入',
- icon: 'none',
- mask: true
- })
- return
- }
- wx.showLoading({
- title: '提交中',
- mask: true
- })
- wx.request({
- url: api.Member_point,
- header: {
- 'Authorization': wx.getStorageSync('token')
- },
- method: 'POST',
- data: {
- name: that.data.name,
- phone: that.data.phone,
- address: that.data.address,
- remarks: that.data.remarks
- },
- success(res) {
- console.log(res);
- wx.hideLoading()
- if (res.data.code === 1) {
- wx.showToast({
- title: '提交成功',
- icon: 'success',
- mask: true,
- success() {
- setTimeout(() => {
- wx.navigateBack({
- delta: 1,
- })
- }, 1500)
- }
- })
- } 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()
- }
- })
- },
- // 修改地址
- submitEdit() {
- let that = this;
- if (that.data.address == '') {
- wx.showToast({
- title: '提货点地址未录入',
- icon: 'none',
- mask: true
- })
- return
- }
- if (that.data.name == '') {
- wx.showToast({
- title: '姓名未录入',
- icon: 'none',
- mask: true
- })
- return
- }
- if (that.data.phone == '') {
- wx.showToast({
- title: '手机号未录入',
- icon: 'none',
- mask: true
- })
- return
- }
- if (that.data.remarks == '') {
- wx.showToast({
- title: '备注未录入',
- icon: 'none',
- mask: true
- })
- return
- }
- wx.showLoading({
- title: '提交中',
- mask: true
- })
- wx.request({
- url: api.Gang_point_edit,
- header: {
- 'Authorization': wx.getStorageSync('token')
- },
- method: 'POST',
- data: {
- id: that.data.id,
- name: that.data.name,
- address: that.data.address,
- remarks: that.data.remarks,
- phone: that.data.phone
- },
- success(res) {
- console.log(res);
- wx.hideLoading()
- if (res.data.code === 1) {
- wx.showToast({
- title: '提交成功',
- icon: 'success',
- mask: true,
- success() {
- setTimeout(() => {
- wx.navigateBack({
- delta: 1,
- })
- }, 1500)
- }
- })
- } 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()
- }
- })
- }
- })
|