体验官面部报告对比,新增弹窗,修改选项卡

This commit is contained in:
2023-07-18 17:15:56 +08:00
parent 1fc2b8e514
commit 282161ec33
13 changed files with 292 additions and 75 deletions

View File

@@ -10,6 +10,7 @@ Page({
typesArr : [],
typesIndex : 0,
refertoStatus: false,
checkStatus : false,
// 市级选择
cityArr : [],
@@ -151,7 +152,7 @@ Page({
})
wx.$api.recruit.recruitAdd(data).then(res => {
this.setData({
refertoStatus: true
checkStatus: true
})
}).catch(() =>{
this.setData({
@@ -170,5 +171,15 @@ Page({
wx.switchTab({
url: '/pages/recruit/index'
})
},
/**
* 申请体验官成功后,弹出
*/
checkTap() {
this.setData({
refertoStatus: true,
checkStatus: false
})
}
})