ASEMiniProgram/pages/bind-document/bind-document.js
2021-03-22 12:01:19 +08:00

234 lines
4.5 KiB
JavaScript

// pages/bind-document.js
import {searchDocument, bindDocument} from '../../api/document'
import {attachRole} from '../../api/user'
Page({
/**
* 页面的初始数据
*/
data: {
radioItems: [
{ name: '1', value: '学生', checked: 'true'},
{ name: '2', value: '家长'},
{ name: '3', value: '辅导员'},
],
userRoleType: '1',
currentValue: '',
document: null,
showDocument: false,
toast: false,
hideToast: true,
warnToast: false,
hideWarnToast: true,
warnText: '',
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
},
radioChange(res) {
console.log(res.detail.value)
this.setData({
userRoleType: res.detail.value
})
},
onCurrentInput(res) {
this.setData({
currentValue: res.detail.value
})
},
onReset() {
this.setData({
document: null,
showDocument: false
})
},
onBind() {
let userRoleName;
let documentCode = this.data.currentValue
switch(this.data.userRoleType) {
case '1':
userRoleName = 'Student'
break;
case '2':
userRoleName = 'Parent'
break;
case '3':
userRoleName = 'Supervisor'
break;
}
// 设置用户角色
attachRole(userRoleName).then(res => {
console.log(res)
}).then(() => {
// 执行绑定操作
return bindDocument(documentCode)
}).then(res => {
app.globalData.userDocument = res
this.setData({
toast: true
});
setTimeout(() => {
this.setData({
hideToast: true
});
setTimeout(() => {
this.setData({
toast: false,
hideToast: false,
});
// 绑定成功后,跳转进入小程序首页
wx.navigateTo({
url: '/pages/index/index'
})
}, 300);
}, 2000);
}).catch(err =>{
console.log(err)
this.setData({
warnToast: true,
warnText: '绑定失败'
});
setTimeout(() => {
this.setData({
hidewarnToast: true,
});
setTimeout(() => {
this.setData({
warnToast: false,
hidewarnToast: false,
});
}, 300);
}, 3000);
})
},
onConfirm() {
let documentCode = this.data.currentValue
let userRoleName;
switch(this.data.userRoleType) {
case '1':
userRoleName = 'Student'
break;
case '2':
userRoleName = 'Parent'
break;
case '3':
userRoleName = 'Supervisor'
break;
}
searchDocument(userRoleName, documentCode).then(res => {
console.log(res)
let document = res
// 转换部分字段
switch(document.gender) {
case 'M':
document.gender = '男'
break;
case 'F':
document.gender = '女'
break;
case 'U':
document.gender = '未知'
break;
}
switch(document.role) {
case 'ROLE_STUDENT':
document.role = '学生'
break;
case 'ROLE_PARENT':
document.role = '家长'
break;
case 'ROLE_SUPERVISOR':
document.role = '辅导员'
break;
}
this.setData({
document: document,
showDocument: true
})
}).catch(err => {
console.log(err)
this.setData({
warnToast: true,
warnText: '未找到对应档案'
});
setTimeout(() => {
this.setData({
hidewarnToast: true,
});
setTimeout(() => {
this.setData({
warnToast: false,
hidewarnToast: false,
});
}, 300);
}, 3000);
})
}
})