|
|
|
@ -6,6 +6,7 @@ var qqmapsdk;
|
|
|
|
|
|
|
|
|
|
|
|
Page({
|
|
|
|
Page({
|
|
|
|
data: {
|
|
|
|
data: {
|
|
|
|
|
|
|
|
recordShow: false,
|
|
|
|
images:[],
|
|
|
|
images:[],
|
|
|
|
isLogin:false,
|
|
|
|
isLogin:false,
|
|
|
|
statusBarHeight: wx.getStorageSync("statusBarHeight"), // 状态栏高度
|
|
|
|
statusBarHeight: wx.getStorageSync("statusBarHeight"), // 状态栏高度
|
|
|
|
@ -1269,6 +1270,21 @@ Page({
|
|
|
|
|
|
|
|
|
|
|
|
goNewEnroll(e) {
|
|
|
|
goNewEnroll(e) {
|
|
|
|
let that = this;
|
|
|
|
let that = this;
|
|
|
|
|
|
|
|
console.log(e.currentTarget.dataset.job);
|
|
|
|
|
|
|
|
this.setData({
|
|
|
|
|
|
|
|
recordShow: true,
|
|
|
|
|
|
|
|
currentInfo: e.currentTarget.dataset.job,
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
console.log(this.data.recordShow);
|
|
|
|
|
|
|
|
wx.hideTabBar({
|
|
|
|
|
|
|
|
animation: false,
|
|
|
|
|
|
|
|
success: (result) => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
fail: () => { },
|
|
|
|
|
|
|
|
complete: () => { }
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
let argument;
|
|
|
|
let argument;
|
|
|
|
argument = JSON.stringify(that.data.jobDetail).replace(/\=|\&/g, "3D");
|
|
|
|
argument = JSON.stringify(that.data.jobDetail).replace(/\=|\&/g, "3D");
|
|
|
|
@ -1588,5 +1604,19 @@ Page({
|
|
|
|
this.setData({
|
|
|
|
this.setData({
|
|
|
|
iosDialogTobe: false,
|
|
|
|
iosDialogTobe: false,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
hidedrawershow (e) {
|
|
|
|
|
|
|
|
console.log(e);
|
|
|
|
|
|
|
|
this.setData({
|
|
|
|
|
|
|
|
[e.detail.type]: false
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
wx.showTabBar({
|
|
|
|
|
|
|
|
animation: false,
|
|
|
|
|
|
|
|
success: (result) => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
fail: () => { },
|
|
|
|
|
|
|
|
complete: () => { }
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|