VopenPolicy.js 3.9 KB
import {
  request
} from "../../request/index.js"
const a = getApp()
Page({
  data: {
    baseUrl: a.globalData.baseUrl,
    statusTop: a.globalData.statusHeight,
    imagesUrl: a.globalData.imagesUrl,
    four: 4,
    msg: '',
    mobile: '',
    insurance: {},
    id: '',
    type: 3
  },
  onLoad: function (options) {
    let that = this
    //  console.log(options);
    that.setData({
      id: options.che_id,
    })
  },
  onShow: function () {
    let that = this
    //  console.log(that.data.id);
    that.getSuccessPage()
  },
  goback() {
    wx.navigateBack()
  },
  async getSuccessPage() { // 获取
    let that = this
    try {
      const {
        data: {
          data
        }
      } = await request({
        url: 'api/index2/getChe',
        data: {
          id: that.data.id
        }
      })
      //  console.log(data);
      that.setData({
        insurance: data
      })

    } catch (err) {
      //  console.log(err);
      that.setData({
        msg: err.msg
      })
      that.popTest()
    }

  },
  async successPage() { // 提交预约
    let that = this
    let obk = that.data.mobile
    if (obk == '') {
      wx.showToast({
        title: '手机号不能为空',
        icon: 'none',
        duration: 1000,
      })
      return false;
    } else if (obk.length != 11) {
      wx.showToast({
        title: '手机号长度有误!',
        icon: 'none',
        duration: 1000,
      })
      return false;
    }
    var myreg = /^1[3456789]\d{9}$/;
    if (!myreg.test(obk)) {
      wx.showToast({
        title: '手机号有误!',
        icon: 'none',
        duration: 1000,
      })
      return false;
    }
    try {
      const {
        data
      } = await request({
        url: 'api/index2/tiJiao',
        data: {
          id: that.data.id,
          phone: obk,
          type: that.data.type,
        }
      })
      //  console.log(data);
      if (data.code == 1) {
        that.setData({
          msg: data.msg
        })
        that.popSuccessTest()
        wx.navigateTo({
          url: '/pages/VpurchaseSuccessB/VpurchaseSuccessB'
        })
      } else {
        that.setData({
          msg: data.msg
        })
        that.popTest()
      }

    } catch (err) {
      //  console.log(err);
      that.setData({
        msg: err.msg
      })
      that.popTest()
    }

  },
  toMyGarage() { // 切换车
    wx.navigateTo({
      url: '/pages/MyGarage/MyGarage?tdTap=3'
    })
  },
  getMobile(e) {
    let obk = e.detail.value
    //  console.log(obk);
    this.setData({
      mobile: obk
    })
  },
  confirmMobile(e) {
    let that = this
    let mobile = e.detail.value
    that.setData({
      mobile,
    })
    //  console.log(e);
  },










  async public() {
    let that = this
    try {
      const {
        data: {
          data
        }
      } = await request({
        url: '',
        data: {
          goods_id: that.data.goods_id
        }
      })
      //  console.log(data);
      that.setData({
        public: data
      })
    } catch (err) {
      //  console.log(err);
      that.setData({
        msg: err.msg
      })
      that.popTest()
    }
  },
  popTest() {
    wx.showToast({
      title: this.data.msg,
      icon: 'none', //如果要纯文本,不要icon,将值设为'none'
      duration: 1300
    })
  },
  goLogin() {
    wx.showModal({
      title: '提示',
      content: '您尚未登录,前往登录',
      success: function (res) {
        if (res.confirm) {
          wx.navigateTo({
            // url: '/pages/authorization/authorization'
          })

        } else {
          wx.switchTab({
            url: '/pages/home/home'
          })
        }
      }
    })
  },
  popSuccessTest() {
    wx.showToast({
      title: this.data.msg,
      icon: '', //默认值是success,就算没有icon这个值,就算有其他值最终也显示success
      duration: 1300, //停留时间
    })
  },
})