公寓小程序端前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

168 lines
3.4 KiB

// subpages/index/checkInUser/checkInUser.js
import {
bindIdCard
} from "../../../api/user"
import {
selectMzGraduateInfo,
eSignDownload
} from "../../../api/index"
const app = getApp()
Page({
/**
* 页面的初始数据
*/
data: {
form: {
graduateName: '',
idCard: '',
telephone: '',
type: ''
}
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
console.log(options);
if (options) {
this.setData({
'form.idCard': options.idCard,
'form.telephone':app.globalData.userInfo.phone || '',
'form.graduateName': options.name,
type: options.type || ''
})
}
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady() {
},
onRouteDone(e) {
},
/**
* 生命周期函数--监听页面显示
*/
onShow() {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide() {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload() {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh() {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom() {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage() {
},
onChange(e) {
console.log(e);
this.setData({
'form.idCard': e.detail
})
},
onChangePhone(e) {
this.setData({
'form.telephone': e.detail
})
},
onChangeName(e) {
this.setData({
'form.graduateName': e.detail
})
},
submit() {
if(this.data.form.idCard.length != 18){
wx.showToast({
title: '请确认身份证号',
icon:'none'
})
return false
}
if(this.data.form.telephone.length != 11){
wx.showToast({
title: '请确认手机号',
icon:'none'
})
return false
}
this.bindIdCard()
if (this.data.type === 'out') {
setTimeout(()=>{
wx.navigateTo({
url: '/subpages/index/checkOutConfirm/index/index',
})
},1500)
return false
}else{
selectMzGraduateInfo({idCard:this.data.form.idCard}).then(res=>{
if(res.code === 200){
this.setData({
info:res.data
})
if(res.data.signType === 0 && res.data.contract){
app.globalData.userInfo.chooseRoomId = res.data.chooseRecId
console.log(res.data.contract,'链接》》》》');
res.data.contract = res.data.contract.replace('https://h5.esign.cn','https://hxm5112004501.h5.esign.cn')
wx.navigateTo({
url: '/pages/webView/webView?url=' + encodeURIComponent(res.data.contract),
})
}else if(res.data.signType === 1){
// 线下签订
wx.switchTab({
url: '/pages/noData/noData?msg=暂无合同签订&idCard=' + this.data.idCard,
})
}else{
wx.navigateTo({
url: '/pages/noData/noData?idCard='+ this.data.form.idCard,
})
}
}
}).catch(err=>{
wx.navigateTo({
url: '/pages/noData/noData?idCard='+ this.data.form.idCard,
})
})
}
},
bindIdCard() {
bindIdCard({
idCard: this.data.form.idCard,
name: this.data.form.graduateName
}).then(res => {
console.log(res);
})
}
})