master
zsk 2 years ago
parent 566fa85489
commit 3e892bc262

@ -1751,7 +1751,7 @@ button.loginOut {
}
.weui-search-bar__form .icon-sousuo {
position: absolute;
left: 14px;
left: 8px;
width: 16px;
top: 1px;
height: 16px;

@ -374,17 +374,42 @@ Page({
}
},
toMapChoice(e) {
var that = this;
console.log(e);
try {
wx.setStorageSync("onSiteRemark", that.data.onSiteRemark);
wx.setStorageSync("addressList", e.currentTarget.dataset.address);
} catch (error) {
console.log(error);
}
wx.navigateTo({
url: "../mine/addressPage/index",
});
var that = this;
console.log(e.currentTarget.dataset.address);
var address = e.currentTarget.dataset.address
wx.getLocation({
type: 'gcj02', //返回可以用于wx.openLocation的经纬度
success (res) {
console.log(res)
wx.openLocation({
latitude: Number(address.storeLat),
longitude: Number(address.storeLng),
name: address.storeName,
address: address.storeAddr,
scale: 15,
success (res) {
console.log(res)
},
fail (res) {
console.log(res)
}
});
},
fail(res){
console.log(res);
}
})
// console.log(e);
// try {
// wx.setStorageSync("onSiteRemark", that.data.onSiteRemark);
// wx.setStorageSync("addressList", e.currentTarget.dataset.address);
// } catch (error) {
// console.log(error);
// }
// wx.navigateTo({
// url: "../mine/addressPage/index",
// });
},
// openMap(e) {
// wx.showLoading({
@ -696,7 +721,7 @@ Page({
roundRect1(ctx, 24 * 2, baseTop - 100, 1104, roundRectHeight, 32, "#fff");
console.log(that.data.jobDetail.store);
that.data.jobDetail.storeJob.jobSpecialLabelNames.forEach((item1, index) => {
that.data.jobDetail.jobSpecialLabelNames.forEach((item1, index) => {
// console.log(item1);
// console.log(ctx.measureText(item1).width);
if (index <= 2) {
@ -710,10 +735,10 @@ Page({
fillTextLineBreak(ctx, that.data.jobDetail.store.aliasName, logoLeft, baseTop, 500 * 2, 20, "#333", titleSize, "600"); // 岗位标题
console.log(630);
fillTextLineBreak(ctx, that.data.jobDetail.storeJob.hourlyPay, salaryClassifyValueLeft, baseTop + salaryClassifyValueTop, 400 * 2, 20, "#ff4400", titleSize, "600"); // 时薪
fillTextLineBreak(ctx, that.data.jobDetail.storeJob.monthlyPay, salaryClassifyValueLeft + ctx.measureText(that.data.jobDetail.storeJob.monthlyPay).width, baseTop + salaryClassifyValueTop, 400 * 2, 20, "#ff4400", monthlyPaySize, "400"); // 月工资
fillTextLineBreak(ctx, that.data.jobDetail.hourlyPay, salaryClassifyValueLeft, baseTop + salaryClassifyValueTop, 400 * 2, 20, "#ff4400", titleSize, "600"); // 时薪
fillTextLineBreak(ctx, that.data.jobDetail.monthlyPay, salaryClassifyValueLeft + ctx.measureText(that.data.jobDetail.monthlyPay).width, baseTop + salaryClassifyValueTop, 400 * 2, 20, "#ff4400", monthlyPaySize, "400"); // 月工资
fillTextLineBreak(ctx, that.data.jobDetail.store.districtStr + "丨", salaryClassifyValueLeft, baseTop + ageTop, 300 * 2, 20, "#333", monthlyPaySize); // 省市年龄
fillTextLineBreak(ctx, that.data.jobDetail.storeJob.age, salaryClassifyValueLeft + ctx.measureText(that.data.jobDetail.store.districtStr + "丨").width, baseTop + ageTop, 300 * 2, 20, "#333", monthlyPaySize); // 省市年龄
fillTextLineBreak(ctx, that.data.jobDetail.age, salaryClassifyValueLeft + ctx.measureText(that.data.jobDetail.store.districtStr + "丨").width, baseTop + ageTop, 300 * 2, 20, "#333", monthlyPaySize); // 省市年龄
// let src
// src = that.data.jobDetail.store.logo.indexOf("https") > -1 ? that.data.jobDetail.store.logo : that.data.jobDetail.store.logo.replace("http", "https")
console.log(that.data.jobDetail.store.logo);
@ -828,34 +853,35 @@ Page({
});
wx.request({
// url: app.globalData.ip + "/store/job/getStoreJobDetailById?storeJobId=" + that.data.searchForm.storeJobId,
url: app.globalData.ip + "/overall/store/job/getStoreJobDetailById?storeJobId=" + that.data.searchForm.storeJobId,
method: "POST",
url: app.globalData.ip + "/yishoudan/custom/job/detailApp/" + that.data.searchForm.storeJobId,
method: "get",
header: app.globalData.headers,
data: that.data.searchForm,
success: function (res) {
console.log(res);
if (res.data.status == 200) {
var result = res.data.data;
var title = result.storeJob.jobName;
var result = {};
result = res.data.data.record;
var title = result.jobName;
// var title1 = result.store.aliasName;
// that.data.logo2
// wx.setStorageSync({
// key: "onSiteRemark",
// data: result.storeJob.onSiteRemark,
// data: result.onSiteRemark,
// })
that.setData({
shareTitle: title,
onSiteRemark: result.storeJob.onSiteRemark,
});
let regs = /\.(jpg|jpeg|png)(\?.*)?$/;
res.data.data.storeImage.forEach((item) => {
res.data.data.images.forEach((item) => {
item.isImg = regs.test(item.url.toLowerCase());
});
result.storeJob.genderRestrict = commonUtil.getGenderByMinAge(result.storeJob);
result.genderRestrict = commonUtil.getGenderByMinAge(result);
that.setData({
shareTitle: title,
images:res.data.data.images,
onSiteRemark: result.onSiteRemark,
});
if (app.isNotEmptyCheck(title)) {
title = result.storeJob.jobName;
title = result.jobName;
} else {
title = result.store.aliasName;
}
@ -864,45 +890,45 @@ Page({
title,
});
result.storeJob.workType = commonUtil.getWorkTypeById(result.storeJob.workTypeMulti);
result.workType = commonUtil.getWorkTypeById(result.workTypeMulti);
if (app.isNotEmptyCheck(result.storeJob.calculationSalaryType)) {
result.storeJob.calculationSalaryType = result.storeJob.calculationSalaryType.split("#")[0];
if (app.isNotEmptyCheck(result.calculationSalaryType)) {
result.calculationSalaryType = result.calculationSalaryType.split("#")[0];
}
if (app.isNotEmptyCheck(result.storeJob.jobDesp)) {
result.storeJob.jobDesp = result.storeJob.jobDesp.replaceAll("*****", "").split("————————")[0];
result.storeJob["jobDesp1"] = result.storeJob.jobDesp.replace("⚠", "<i class='t-icon t-icon-zhuyi' style='margin-bottom:-2px;width:17px;height:17px;background-repeat:no-repeat;background-size:100% 100%'></i>");
result.storeJob["jobDesp1"] = result.storeJob.jobDesp1.replace("[红包]", "<i class='t-icon t-icon-hongbao' style='margin-bottom:-2px;width:17px;height:17px;background-repeat:no-repeat;background-size:100% 100%'></i>");
if (app.isNotEmptyCheck(result.jobDesp)) {
result.jobDesp = result.jobDesp.replaceAll("*****", "").split("————————")[0];
result["jobDesp1"] = result.jobDesp.replace("⚠", "<i class='t-icon t-icon-zhuyi' style='margin-bottom:-2px;width:17px;height:17px;background-repeat:no-repeat;background-size:100% 100%'></i>");
result["jobDesp1"] = result.jobDesp1.replace("[红包]", "<i class='t-icon t-icon-hongbao' style='margin-bottom:-2px;width:17px;height:17px;background-repeat:no-repeat;background-size:100% 100%'></i>");
}
if (app.isNotEmptyCheck(result.storeJob.paymentSalaryType)) {
result.storeJob.paymentSalaryType = result.storeJob.paymentSalaryType.split("");
if (app.isNotEmptyCheck(result.paymentSalaryType)) {
result.paymentSalaryType = result.paymentSalaryType.split("");
}
if (app.isNotEmptyCheck(result.storeJob.salaryDesp)) {
result.storeJob.salaryDesp = result.storeJob.salaryDesp.split("");
if (app.isNotEmptyCheck(result.salaryDesp)) {
result.salaryDesp = result.salaryDesp.split("");
}
if (app.isNotEmptyCheck(result.storeJob.workDurationDesp)) {
result.storeJob.workDurationDesp = result.storeJob.workDurationDesp.split("");
if (app.isNotEmptyCheck(result.workDurationDesp)) {
result.workDurationDesp = result.workDurationDesp.split("");
}
if (app.isNotEmptyCheck(result.storeJob.probationDesp)) {
result.storeJob.probationDesp = result.storeJob.probationDesp.split("");
if (app.isNotEmptyCheck(result.probationDesp)) {
result.probationDesp = result.probationDesp.split("");
}
if (app.isNotEmptyCheck(result.storeJob.workingLunchDesp)) {
result.storeJob.workingLunchDesp = result.storeJob.workingLunchDesp.split("");
if (app.isNotEmptyCheck(result.workingLunchDesp)) {
result.workingLunchDesp = result.workingLunchDesp.split("");
}
if (app.isNotEmptyCheck(result.storeJob.dormitoryDesp)) {
result.storeJob.dormitoryDesp = result.storeJob.dormitoryDesp.split("");
if (app.isNotEmptyCheck(result.dormitoryDesp)) {
result.dormitoryDesp = result.dormitoryDesp.split("");
}
if (app.isNotEmptyCheck(result.storeJob.foregift)) {
result.storeJob.foregift = result.storeJob.foregift.split("");
if (app.isNotEmptyCheck(result.foregift)) {
result.foregift = result.foregift.split("");
var arrTemp = [];
result.storeJob.foregift.forEach((item) => {
result.foregift.forEach((item) => {
var arr = item.split("");
if (app.length > 0) {
@ -912,15 +938,15 @@ Page({
});
}
});
result.storeJob.foregift = arrTemp;
result.foregift = arrTemp;
} else {
result.storeJob.foregift = "无押金";
result.foregift = "无押金";
}
result.store.distance = commonUtil.getDistanceName(result.store.distance);
if (app.isNotEmptyCheck(result.store.distance)) {
result.store.distance = "丨" + result.store.distance;
}
// result.store.distance = commonUtil.getDistanceName(result.store.distance);
// if (app.isNotEmptyCheck(result.store.distance)) {
// result.store.distance = "丨" + result.store.distance;
// }
/*if (app.isNotEmptyCheck(result.store.district)) {
var tempArr = result.store.district.split(",");
@ -936,22 +962,22 @@ Page({
// getStoreAddress
that.disposeJobListData(result);
if (app.isNotEmptyCheck(result.store.logo)) {
result["logo2"] = result.store.logo.replace("http:", "https:");
result.store.logo.indexOf("https") > -1 ? result.store.logo : result.store.logo.replace("http", "https")
} else {
result["logo2"] = "";
}
// console.log(commonUtil.getReturnFeeTypeName1ById(result.storeJob.returnFeeType, result.storeJob.returnFee));
// if (app.isNotEmptyCheck(result.store.logo)) {
// result["logo2"] = result.store.logo.replace("http:", "https:");
// result.store.logo.indexOf("https") > -1 ? result.store.logo : result.store.logo.replace("http", "https")
// } else {
// result["logo2"] = "";
// }
// console.log(commonUtil.getReturnFeeTypeName1ById(result.returnFeeType, result.returnFee));
console.log("isout");
if (app.isNotEmptyCheck(result.storeJob.returnFeeType) || result.storeJob.returnFeeType == "0" || result.storeJob.returnFee == "0") {
if (app.isNotEmptyCheck(result.returnFeeType) || result.returnFeeType == "0" || result.returnFee == "0") {
that.setData({
fuWuFei: commonUtil.getReturnFeeTypeName1ById(result.storeJob.returnFeeType, result.storeJob.returnFee),
fuWuFei: commonUtil.getReturnFeeTypeName1ById(result.returnFeeType, result.returnFee),
});
}
// else if (result.storeJob.returnFeeType == 7) {
// else if (result.returnFeeType == 7) {
// that.setData({
// fuWuFei: commonUtil.getReturnFeeTypeNameById(result.storeJob.returnFeeType),
// fuWuFei: commonUtil.getReturnFeeTypeNameById(result.returnFeeType),
// });
// }
else {
@ -962,33 +988,33 @@ Page({
console.log(result);
console.log(commonUtil);
let citys = commonUtil.setJobInfoPosition(result.store.district);
// city = city.replace(/,/g, " | ")
result.storeImage.splice(0,1)
let citys = commonUtil.setJobInfoPosition(result.storeDistrict);
// result.storeImage.splice(0,1)
that.data.jobDetail["storeName"] = result.storeName;
that.data.jobDetail["notes"] = result.jobInfo;
that.setData({
jobDetail: result,
isMaskShow: !(result.storeJob.recruitment == "1"),
isMaskShow: !(result.recruitment == "1"),
citys: citys || "-",
addressNew: result.store.district.replace(/,/g, "") + result.store.detailPosition,
// addressNew: result.store.district.replace(/,/g, "") + result.store.detailPosition,
});
that.data.jobDetail.storeJob["storeName"] = that.data.jobDetail.store.storeName;
that.showSexAge();
// that.getAgencyInfo(res.data.data.storeJob);
if (app.isEmptyCheck(res.data.data.storeJob.handoverInfo)) {
that.setData({
djxx: "暂无对接信息",
});
} else {
that.setData({
djxx: res.data.data.storeJob.handoverInfo,
});
}
// if (app.isEmptyCheck(res.data.data.storeJob.handoverInfo)) {
// that.setData({
// djxx: "暂无对接信息",
// });
// } else {
// that.setData({
// djxx: res.data.data.storeJob.handoverInfo,
// });
// }
console.log(that.data.jobDetail);
}
wx.hideLoading();
@ -1001,25 +1027,25 @@ Page({
var manStr = "";
var womanStr = "";
if (app.isNotEmptyCheck(that.data.jobDetail.storeJob.minAgeMan) || app.isNotEmptyCheck(that.data.jobDetail.storeJob.maxAgeMan)) {
if (app.isNotEmptyCheck(that.data.jobDetail.minAgeMan) || app.isNotEmptyCheck(that.data.jobDetail.maxAgeMan)) {
manStr = "男 ";
}
if (app.isNotEmptyCheck(that.data.jobDetail.storeJob.minAgeMan)) {
manStr = manStr + that.data.jobDetail.storeJob.minAgeMan;
if (app.isNotEmptyCheck(that.data.jobDetail.minAgeMan)) {
manStr = manStr + that.data.jobDetail.minAgeMan;
}
if (app.isNotEmptyCheck(that.data.jobDetail.storeJob.maxAgeMan)) {
manStr = manStr + "-" + that.data.jobDetail.storeJob.maxAgeMan;
if (app.isNotEmptyCheck(that.data.jobDetail.maxAgeMan)) {
manStr = manStr + "-" + that.data.jobDetail.maxAgeMan;
}
if (app.isNotEmptyCheck(that.data.jobDetail.storeJob.minAgeWoman) || app.isNotEmptyCheck(that.data.jobDetail.storeJob.maxAgeWoman)) {
if (app.isNotEmptyCheck(that.data.jobDetail.minAgeWoman) || app.isNotEmptyCheck(that.data.jobDetail.maxAgeWoman)) {
womanStr = "女 ";
}
if (app.isNotEmptyCheck(that.data.jobDetail.storeJob.minAgeWoman)) {
womanStr = womanStr + that.data.jobDetail.storeJob.minAgeWoman;
if (app.isNotEmptyCheck(that.data.jobDetail.minAgeWoman)) {
womanStr = womanStr + that.data.jobDetail.minAgeWoman;
}
if (app.isNotEmptyCheck(that.data.jobDetail.storeJob.maxAgeWoman)) {
womanStr = womanStr + "-" + that.data.jobDetail.storeJob.maxAgeWoman;
if (app.isNotEmptyCheck(that.data.jobDetail.maxAgeWoman)) {
womanStr = womanStr + "-" + that.data.jobDetail.maxAgeWoman;
}
if (womanStr != "") {
@ -1035,7 +1061,7 @@ Page({
*/
disposeJobListData(jobDetail) {
var that = this;
console.log(jobDetail);
// item["workType"] = commonUtil.getWorkTypeById(
// item.workTypeMulti
// );
@ -1047,80 +1073,77 @@ Page({
// }
//年龄
var ageStr = "";
if (app.isNotEmptyCheck(jobDetail.storeJob.minAge) && app.isNotEmptyCheck(jobDetail.storeJob.maxAge)) {
ageStr = jobDetail.storeJob.minAge + "-" + jobDetail.storeJob.maxAge + "岁";
} else if (app.isNotEmptyCheck(jobDetail.storeJob.minAge)) {
ageStr = jobDetail.storeJob.minAge + "岁以上";
} else if (app.isNotEmptyCheck(jobDetail.storeJob.maxAge)) {
ageStr = jobDetail.storeJob.maxAge + "岁以下";
if (app.isNotEmptyCheck(jobDetail.minAge) && app.isNotEmptyCheck(jobDetail.maxAge)) {
ageStr = jobDetail.minAge + "-" + jobDetail.maxAge + "岁";
} else if (app.isNotEmptyCheck(jobDetail.minAge)) {
ageStr = jobDetail.minAge + "岁以上";
} else if (app.isNotEmptyCheck(jobDetail.maxAge)) {
ageStr = jobDetail.maxAge + "岁以下";
}
jobDetail.storeJob["age"] = ageStr;
jobDetail["age"] = ageStr;
//时薪
// var hourlyPayStr = "";
var hasHourlyPay = true;
console.log(jobDetail.storeJob);
// if (app.isNotEmptyCheck(jobDetail.storeJob.hourlyPay)) {
// hourlyPayStr = jobDetail.storeJob.hourlyPay + "元/小时";
console.log(jobDetail);
// if (app.isNotEmptyCheck(jobDetail.hourlyPay)) {
// hourlyPayStr = jobDetail.hourlyPay + "元/小时";
// hasHourlyPay = true;
// } else if (app.isNotEmptyCheck(jobDetail.storeJob.dayPay)) {
// hourlyPayStr = jobDetail.storeJob.dayPay + "元/日";
// } else if (app.isNotEmptyCheck(jobDetail.dayPay)) {
// hourlyPayStr = jobDetail.dayPay + "元/日";
// hasHourlyPay = true;
// } else {
// if (app.isNotEmptyCheck(jobDetail.storeJob.minMonthlyPay) && app.isNotEmptyCheck(jobDetail.storeJob.maxMonthlyPay)) {
// if (jobDetail.storeJob.minMonthlyPay == jobDetail.storeJob.maxMonthlyPay) {
// hourlyPayStr = jobDetail.storeJob.minMonthlyPay;
// if (app.isNotEmptyCheck(jobDetail.minMonthlyPay) && app.isNotEmptyCheck(jobDetail.maxMonthlyPay)) {
// if (jobDetail.minMonthlyPay == jobDetail.maxMonthlyPay) {
// hourlyPayStr = jobDetail.minMonthlyPay;
// } else {
// hourlyPayStr = jobDetail.storeJob.minMonthlyPay + "-" + jobDetail.storeJob.maxMonthlyPay;
// hourlyPayStr = jobDetail.minMonthlyPay + "-" + jobDetail.maxMonthlyPay;
// }
// } else if (app.isNotEmptyCheck(jobDetail.storeJob.minMonthlyPay)) {
// hourlyPayStr = jobDetail.storeJob.minMonthlyPay;
// } else if (app.isNotEmptyCheck(jobDetail.storeJob.maxMonthlyPay)) {
// hourlyPayStr = jobDetail.storeJob.maxMonthlyPay;
// } else if (app.isNotEmptyCheck(jobDetail.minMonthlyPay)) {
// hourlyPayStr = jobDetail.minMonthlyPay;
// } else if (app.isNotEmptyCheck(jobDetail.maxMonthlyPay)) {
// hourlyPayStr = jobDetail.maxMonthlyPay;
// }
// }
// if (app.isNotEmptyCheck(jobDetail.storeJob.dayPay)){
// if (app.isNotEmptyCheck(jobDetail.dayPay)){
// }
// if (app.isNotEmptyCheck(jobDetail.storeJob.salaryClassify) && app.isNotEmptyCheck(jobDetail.storeJob.salaryClassifyValue)) {
// if (app.isNotEmptyCheck(jobDetail.salaryClassify) && app.isNotEmptyCheck(jobDetail.salaryClassifyValue)) {
jobDetail.storeJob["hourlyPay"] = commonUtil.getSalaryClassifyValue(jobDetail.storeJob.salaryClassify, jobDetail.storeJob.salaryClassifyValue);
jobDetail["hourlyPay"] = commonUtil.getSalaryClassifyValue(jobDetail.salaryClassify, jobDetail.salaryClassifyValue);
// }
//月薪
var monthlyPayStr = "";
if (hasHourlyPay) {
if (app.isNotEmptyCheck(jobDetail.storeJob.minMonthlyPay) && app.isNotEmptyCheck(jobDetail.storeJob.maxMonthlyPay)) {
if (jobDetail.storeJob.minMonthlyPay == jobDetail.storeJob.maxMonthlyPay) {
monthlyPayStr = jobDetail.storeJob.minMonthlyPay;
if (app.isNotEmptyCheck(jobDetail.minMonthlyPay) && app.isNotEmptyCheck(jobDetail.maxMonthlyPay)) {
if (jobDetail.minMonthlyPay == jobDetail.maxMonthlyPay) {
monthlyPayStr = jobDetail.minMonthlyPay/100;
} else {
monthlyPayStr = jobDetail.storeJob.minMonthlyPay + "-" + jobDetail.storeJob.maxMonthlyPay;
monthlyPayStr = jobDetail.minMonthlyPay/100 + "-" + jobDetail.maxMonthlyPay/100;
}
} else if (app.isNotEmptyCheck(jobDetail.storeJob.minMonthlyPay)) {
monthlyPayStr = jobDetail.storeJob.minMonthlyPay;
} else if (app.isNotEmptyCheck(jobDetail.storeJob.maxMonthlyPay)) {
monthlyPayStr = jobDetail.storeJob.maxMonthlyPay;
} else if (app.isNotEmptyCheck(jobDetail.minMonthlyPay)) {
monthlyPayStr = jobDetail.minMonthlyPay/100;
} else if (app.isNotEmptyCheck(jobDetail.maxMonthlyPay)) {
monthlyPayStr = jobDetail.maxMonthlyPay/100;
}
}
jobDetail.storeJob["monthlyPay"] = monthlyPayStr;
jobDetail["monthlyPay"] = monthlyPayStr;
//地址深圳丨龙岗区丨
var districtStr = "";
if (app.isNotEmptyCheck(jobDetail.store.district)) {
var districtArr = jobDetail.store.district.split(",");
if (districtArr.length < 3) {
districtStr = districtArr[districtArr.length - 1];
} else {
districtStr = districtArr[1] + "丨" + districtArr[2];
}
//districtStr = districtArr[1] + '丨' + districtArr[2];
}
jobDetail.store["districtStr"] = districtStr;
jobDetail.storeJob["districtDetail"] = commonUtil.getStoreAddress(jobDetail.storeJob.district, jobDetail.storeJob.detailPosition);
// var districtStr = "";
// if (app.isNotEmptyCheck(jobDetail.store.district)) {
// var districtArr = jobDetail.store.district.split(",");
// if (districtArr.length < 3) {
// districtStr = districtArr[districtArr.length - 1];
// } else {
// districtStr = districtArr[1] + "丨" + districtArr[2];
// }
// }
// jobDetail.store["districtStr"] = districtStr;
// jobDetail["districtDetail"] = commonUtil.getStoreAddress(jobDetail.district, jobDetail.detailPosition);
//职位特色
if (app.isNotEmptyCheck(jobDetail.storeJob.jobSpecialLabelNames)) {
jobDetail.storeJob["jobSpecialLabelNames"] = that.getJobSpecialLabelNamesArray(jobDetail.storeJob.jobSpecialLabelNames);
if (app.isNotEmptyCheck(jobDetail.jobSpecialLabelNames)) {
jobDetail["jobSpecialLabelNames"] = that.getJobSpecialLabelNamesArray(jobDetail.jobSpecialLabelNames);
}
// if (app.isNotEmptyCheck(jobDetail.storeJob.jobRequestLabelNames)) {
// jobDetail.storeJob['jobRequestLabelNames'] = that.getJobRequestLabelNamesArray(jobDetail.storeJob.jobRequestLabelNames);
// }
},
getJobSpecialLabelNamesArray(jobSpecialLabelNames) {
if (app.isNotEmptyCheck(jobSpecialLabelNames)) {
@ -1139,10 +1162,10 @@ Page({
var that = this;
console.log(that.data.jobDetail);
console.log(that.data.jobDetail.storeJob.jobLabelId);
console.log(that.data.jobDetail.jobLabelId);
wx.navigateTo({
url: "../similar/index?brandId=" + that.data.jobDetail.store.brandId + "&jobLabelId=" + that.data.jobDetail.storeJob.jobLabelId + "&classify=99",
url: "../similar/index?brandId=" + that.data.jobDetail.store.brandId + "&jobLabelId=" + that.data.jobDetail.jobLabelId + "&classify=99",
});
},
@ -1244,7 +1267,7 @@ Page({
let that = this;
let argument;
argument = JSON.stringify(that.data.jobDetail.storeJob).replace(/\=|\&/g, "3D");
argument = JSON.stringify(that.data.jobDetail).replace(/\=|\&/g, "3D");
if (!this.data.isLogin) {
wx.setStorageSync("comeFromPage", "detailBaoming");
@ -1281,12 +1304,12 @@ Page({
var that = this;
console.log(e);
console.log(e.detail.errMsg);
console.log(that.data.jobDetail.storeJob);
console.log(that.data.jobDetail);
/*wx.setStorageSync({
key: "jobDetailStorage",
data: that.data.jobDetail.storeJob,
data: that.data.jobDetail,
});*/
wx.setStorageSync("jobDetailStorage", that.data.jobDetail.storeJob);
wx.setStorageSync("jobDetailStorage", that.data.jobDetail);
// console.log(e);
// console.log(e.detail.errMsg)
console.log(e.detail.iv);
@ -1327,7 +1350,7 @@ Page({
});*/
promise.then((res) => {
let argument;
argument = JSON.stringify(that.data.jobDetail.storeJob).replace(/\=|\&/g, "3D");
argument = JSON.stringify(that.data.jobDetail).replace(/\=|\&/g, "3D");
wx.navigateTo({
url: `../newEnroll/enroll/index?applyType=1&info=${argument}`,
});
@ -1380,7 +1403,7 @@ Page({
} else {
promise.then((res) => {
let argument;
argument = JSON.stringify(that.data.jobDetail.storeJob).replace(/\=|\&/g, "3D");
argument = JSON.stringify(that.data.jobDetail).replace(/\=|\&/g, "3D");
wx.navigateTo({
url: `../newEnroll/enroll/index?applyType=1&info=${argument}`,
});
@ -1504,11 +1527,11 @@ Page({
var txt;
if (collected - 1 == 0) {
//取消收藏
that.data.jobDetail.storeJob.collected = 2;
that.data.jobDetail.collected = 2;
txt = "取消收藏";
} else {
//收藏
that.data.jobDetail.storeJob.collected = 1;
that.data.jobDetail.collected = 1;
txt = "收藏成功";
}

@ -4,7 +4,7 @@
<view class="p20 pt12 pb10" id="tocanvas">
<view class="v-center">
<view class="jobTitle">
{{jobDetail.storeJob.jobName}}
{{jobDetail.jobName}}
</view>
</view>
<view class="display-flex mt12">
@ -21,33 +21,33 @@
</view>
<view class="f14s c045 mb4">
<!-- 深圳丨龙岗区丨16-35岁 -->
<block>{{jobDetail.storeJob.genderRestrict}}</block>
丨{{jobDetail.storeJob.age}}
<!-- {{jobDetail.storeJob.district}}{{jobDetail.storeJob.age}} -->
<block>{{jobDetail.genderRestrict}}</block>
丨{{jobDetail.age}}
<!-- {{jobDetail.district}}{{jobDetail.age}} -->
</view>
</view>
</view>
<view class="tr">
<view class="jobMoney color-f40">
<!-- {{jobDetail.storeJob.combiSalary}} -->
{{jobDetail.storeJob.hourlyPay || '--'}}
<!-- {{jobDetail.combiSalary}} -->
{{jobDetail.hourlyPay || '--'}}
</view>
<view class="f14s c633 mt10 color-f40">
<!-- 5200-8400 -->
{{jobDetail.storeJob.monthlyPay || '--'}}
{{jobDetail.monthlyPay || '--'}}
</view>
</view>
</view>
<view class="bb1 tabBox pb4 mt4">
<!-- <view wx:if="{{jobDetail.storeJob.rebate != null}}" class='tagsLi spli'>
返费{{jobDetail.storeJob.rebate}}
<!-- <view wx:if="{{jobDetail.rebate != null}}" class='tagsLi spli'>
返费{{jobDetail.rebate}}
</view>-->
<view class="display-flex" hover-class="none" hover-stop-propagation="false">
<!-- <view class="t-icon t-icon-ziying1" wx:if="{{jobDetail.storeProjectSignType == 1}}"></view> -->
<view class="tagsLi" style="color:{{labelColor[index % labelColor.length]}};background-color:{{bgColor[index % bgColor.length]}};" wx:for="{{jobDetail.storeJob.jobSpecialLabelNames}}" wx:for-item="item1" wx:key="index">{{item1}}</view>
<view class="tagsLi" style="color:{{labelColor[index % labelColor.length]}};background-color:{{bgColor[index % bgColor.length]}};" wx:for="{{jobDetail.jobSpecialLabelNames}}" wx:for-item="item1" wx:key="index">{{item1}}</view>
</view>
<view class="display-flex" hover-class="none" hover-stop-propagation="false">
<view class="tagsLi" tyle="color:{{labelColor[index % labelColor.length]}};background-color:{{bgColor[index % bgColor.length]}};" wx:for="{{jobDetail.storeJob.jobRequestLabelNames}}" wx:for-item="item1" wx:key="index">{{item1}}</view>
<view class="tagsLi" tyle="color:{{labelColor[index % labelColor.length]}};background-color:{{bgColor[index % bgColor.length]}};" wx:for="{{jobDetail.jobRequestLabelNames}}" wx:for-item="item1" wx:key="index">{{item1}}</view>
</view>
</view>
</view>
@ -55,36 +55,27 @@
<view>
<i class="iconfont icon-dizhi11 f18 mr10 lh1" style="color:var(--color-ysd);"></i>
</view>
<view class="address c3">{{jobDetail.poses.store.posContent ? jobDetail.poses.store.posContent :'暂无地址信息'}}</view>
<view class="address c3">{{jobDetail.storeAddr ? jobDetail.storeAddr :'暂无地址信息'}}</view>
<view>
<i class="iconfont icon-gengduo11 f14 ml18 dib pr c9" style="line-height:1;top:1px;"></i>
</view>
</view>
<view class="p016 mt12">
<image src="https://file.matripe.com.cn/images/2024/02/16/1708049493749933.jpg" class="img5" mode=""/>
<image src="https://file.matripe.com.cn/images/2024/02/16/1708049493749933.jpg" class="img5" mode=""/>
<image src="https://file.matripe.com.cn/images/2024/02/16/1708049493749933.jpg" class="img5" mode=""/>
<image src="https://file.matripe.com.cn/images/2024/02/16/1708049493749933.jpg" class="img5" mode=""/>
<image src="https://file.matripe.com.cn/images/2024/02/16/1708049493749933.jpg" class="img5" mode=""/>
<view class="p016 mt12" wx:if="{{images.length > 0}}">
<block wx:for="{{images}}" wx:for-item="item" wx:key="index">
<image src="{{item}}" bind:tap="showImage" data-src="{{item}}" class="img5" mode=""/>
</block>
</view>
<view class="p020">
<view class="f14">
<block wx:if="{{currIndex == '1'}}">
<view wx:if="{{jobDetail.storeJob.notes}}">
<view>
<view class="detailH3">
<view class="fl mr12" style="width: 4px;height: 19px;background: #0dcc91;border-radius: 2px;"></view>
职位描述</view>
<view class="pri f16" style="line-height:24px;padding:3px 0px;border-radius: 4px;color:#777;">70%长白班,
夫妻房满月报销
体检费满月可报销路费男 16-53女 16-49
(卡年卡月)无文化要求,不识字也可以,需要身
份证原件,可接收身份证临时,消磁,纹身烟疤需提前确认,不接收案底,不接收
黑户,维族、藏族和新疆的少数民族名额已满,其他少数民族继续接收薪资待遇:员工同工同酬,计件工资+工龄工资+全勤奖+岗位津贴+高温补贴等月综合工资5000-7000元月出勤28天</view>
<view class="pri f16" style="line-height:24px;padding:3px 0px;border-radius: 4px;color:#777;">{{jobDetail.jobInfo}}</view>
</view>
@ -96,73 +87,73 @@
<view class="outSp">
<view class="display-flex">
<view class="rb1">面试时间</view>
<view class="textb1">{{jobDetail.storeJob.interviewDuration}}</view>
<view class="textb1">{{jobDetail.interviewDuration}}</view>
</view>
<!-- <view class="display-flex">
<view class="rb1">面试地点</view>
<view class="textb1">{{jobDetail.storeJob.interviewAddr}}</view>
<view class="textb1">{{jobDetail.interviewAddr}}</view>
</view>-->
<!-- <view class="display-flex">
<view class="rb1">驻场信息</view>
<view class="textb1">{{jobDetail.storeJob.onSiteInfo}}</view>
<view class="textb1">{{jobDetail.onSiteInfo}}</view>
</view>-->
<view class="display-flex">
<view class="rb1">出行方式</view>
<view class="textb1">{{jobDetail.storeJob.tripMode}}</view>
<view class="textb1">{{jobDetail.tripMode}}</view>
</view>
<!-- <view class="display-flex">
<view class="rb1">驻场信息1</view>
<view class="textb1">{{jobDetail.storeJob.onSiteTransfers}}</view>
<view class="textb1">{{jobDetail.onSiteTransfers}}</view>
</view>-->
<view class="display-flex">
<view class="rb1">面试说明</view>
<view class="textb1">{{jobDetail.storeJob.interviewDesp}}</view>
<view class="textb1">{{jobDetail.interviewDesp}}</view>
</view>
</view>
<view class="detailH3">入离职</view>
<view class="outSp">
<!-- <view class="display-flex">
<view class="rb1">入职时间</view>
<view class="textb1">{{jobDetail.storeJob.entryDuration}}</view>
<view class="textb1">{{jobDetail.entryDuration}}</view>
</view>
<view class="display-flex">
<view class="rb1">入职资料</view>
<view class="textb1">{{jobDetail.storeJob.entryInformation}}</view>
<view class="textb1">{{jobDetail.entryInformation}}</view>
</view>
<view class="display-flex">
<view class="rb1">入职合同</view>
<view class="textb1">{{jobDetail.storeJob.entryContracts}}</view>
<view class="textb1">{{jobDetail.entryContracts}}</view>
</view>-->
<view class="display-flex">
<view class="rb1">入职说明</view>
<view class="textb1">{{jobDetail.storeJob.entryDesp}}</view>
<view class="textb1">{{jobDetail.entryDesp}}</view>
</view>
<view class="display-flex">
<view class="rb1">入职说明</view>
<view class="textb1">{{jobDetail.storeJob.leaveRequire}}</view>
<view class="textb1">{{jobDetail.leaveRequire}}</view>
</view>
<view class="display-flex">
<view class="rb1">返厂</view>
<view class="textb1">{{jobDetail.storeJob.leaveDesp}}</view>
<view class="textb1">{{jobDetail.leaveDesp}}</view>
</view>
</view>
<!-- <view class="detailH3">离职</view>
<view class="outSp">
<view class="display-flex">
<view class="rb1">离职要求</view>
<view class="textb1">{{jobDetail.storeJob.leaveRequire}}</view>
<view class="textb1">{{jobDetail.leaveRequire}}</view>
</view>
<view class="display-flex">
<view class="rb1">补充说明</view>
<view class="textb1">{{jobDetail.storeJob.leaveDesp}}</view>
<view class="textb1">{{jobDetail.leaveDesp}}</view>
</view>
</view>-->
</block>
<block wx:if="{{currIndex == '3'}}">
<view class="detailH3">报名须知</view>
<view class="pri border1" style="line-height:24px;padding:3px 8px;border-radius: 4px;color:#333">{{jobDetail.storeJob.agencyStatement}}</view>
<view class="pri border1" style="line-height:24px;padding:3px 8px;border-radius: 4px;color:#333">{{jobDetail.agencyStatement}}</view>
<!-- <view class="detailH3">温馨提示</view>
<view class="pri" style="border:1px solid #eee;line-height:24px;padding:3px 8px;border-radius: 4px;color:#ff4400">{{jobDetail.storeJob.sweetTips}}
<view class="pri" style="border:1px solid #eee;line-height:24px;padding:3px 8px;border-radius: 4px;color:#ff4400">{{jobDetail.sweetTips}}
</view>-->
</block>
<block wx:if="{{currIndex == '4'}}">
@ -170,7 +161,7 @@
<view wx:if="{{isAgency}}" class="outSp">
<!-- <view class="display-flex" wx:if='{{managerRoleClassify}}'>
<view class="rb1">伯才利润</view>
<view class="textb1">{{jobDetail.storeJob.boCaiProfit}}</view>
<view class="textb1">{{jobDetail.boCaiProfit}}</view>
</view>-->
<!-- <view class="display-flex">
<view class="rb1">服务费</view>
@ -178,52 +169,52 @@
</view>-->
<!-- <view class="display-flex">
<view class="rb1">总利润</view>
<view class="textb1">{{jobDetail.storeJob.totalProfit}}</view>
<view class="textb1">{{jobDetail.totalProfit}}</view>
</view>-->
<!-- <view class="display-flex">
<view class="rb1">伯才利润</view>
<view class="textb1">{{jobDetail.storeJob.boCaiProfit}}</view>
<view class="textb1">{{jobDetail.boCaiProfit}}</view>
</view>-->
<!-- <view class="display-flex">
<view class="rb1">服务费</view>
<view class="textb1">{{jobDetail.storeJob.returnFee}}</view>
<view class="textb1">{{jobDetail.returnFee}}</view>
</view>-->
<!-- <view class="display-flex">
<view class="rb1">代理利润</view>
<view class="textb1">{{jobDetail.storeJob.agencyProfit}}</view>
<view class="textb1">{{jobDetail.agencyProfit}}</view>
</view>-->
<view class="display-flex">
<view class="rb1">服务费详情</view>
<view class="textb1">{{jobDetail.storeJob.agencyProfit}}</view>
<view class="textb1">{{jobDetail.agencyProfit}}</view>
</view>
<view class="display-flex">
<view class="rb1">扣税说明</view>
<view class="textb1">{{jobDetail.storeJob.deductTaxDesp}}</view>
<view class="textb1">{{jobDetail.deductTaxDesp}}</view>
</view>
<view class="display-flex">
<view class="rb1 vsb">
<view class hover-class="none" hover-stop-propagation="false">账单日</view>
<view class hover-class="none" hover-stop-propagation="false">(出名单时间)</view>
</view>
<view class="textb1 fsa" style>{{jobDetail.storeJob.outListTime}}</view>
<view class="textb1 fsa" style>{{jobDetail.outListTime}}</view>
</view>
<view class="display-flex">
<view class="rb1 vsb">
<view class hover-class="none" hover-stop-propagation="false">结算日</view>
<view class hover-class="none" hover-stop-propagation="false">(结算时间)</view>
</view>
<view class="textb1 fsa" style>{{jobDetail.storeJob.settlementTime}}</view>
<view class="textb1 fsa" style>{{jobDetail.settlementTime}}</view>
</view>
</view>
<view wx:else class bindtap="showTobe" hover-class="none" hover-stop-propagation="false">仅代理可见</view>
</block>
<block wx:if="{{currIndex == '5'}}">
<view class="pri" style="line-height:24px;padding:5px 8px;border-radius: 4px;color:#333">
<view data-content="{{jobDetail.storeJob.jobDesp}}" catchtap="setCopy">
<view data-content="{{jobDetail.jobDesp}}" catchtap="setCopy">
<!-- <icon class="iconfont icon-fuzhi mr4" style="font-size:16px;float: right;"></icon> -->
<span class="desp-copy">复制</span>
</view>
<rich-text class hover-class="none" hover-stop-propagation="false" nodes="{{jobDetail.storeJob.jobDesp1}}"></rich-text>
<rich-text class hover-class="none" hover-stop-propagation="false" nodes="{{jobDetail.jobDesp1}}"></rich-text>
<view class="contactInfo" hover-class="none" data-info="{{userInfo.agencyStatus == 1 ? (userInfo.noticeEndStr ? userInfo.noticeEndStr : ('详情咨询:' + userInfo.tel)) : (serviceInfo.userName + ' ' + (serviceInfo.workPhone || '-'))}}" hover-stop-propagation="false">{{userInfo.agencyStatus == 1 ? (userInfo.noticeEndStr ? userInfo.noticeEndStr : ('详情咨询:' + userInfo.tel)) : ('详情咨询:' + serviceInfo.aliasName + (serviceInfo.workPhone || '-'))}}</view>
<view class="f14 tac mt16" wx:if="{{userInfo.agencyStatus == 1}}" hover-class="none" hover-stop-propagation="false">
以上联系人,可以
@ -231,15 +222,15 @@
</view>
</view>
<!-- <view class="detailH3">温馨提示</view>
<view class="pri" style="border:1px solid #eee;line-height:24px;padding:3px 8px;border-radius: 4px;color:#ff4400">{{jobDetail.storeJob.sweetTips}}
<view class="pri" style="border:1px solid #eee;line-height:24px;padding:3px 8px;border-radius: 4px;color:#ff4400">{{jobDetail.sweetTips}}
</view>-->
</block>
</view>
<!-- <view wx:if="{{jobDetail.storeJob.baseInfo != null && jobDetail.storeJob.baseInfo != ''}}" class='display-flex pb20 mt20' style="border-bottom:1rpx solid #e2e2e2;">
<!-- <view wx:if="{{jobDetail.baseInfo != null && jobDetail.baseInfo != ''}}" class='display-flex pb20 mt20' style="border-bottom:1rpx solid #e2e2e2;">
<view class='flex-1 f14 c085'>
<view>利润政策</view>
<view style="white-space: pre-line;">{{bclr}}</view>
<view style="white-space: pre-line;margin-top:20px;">{{jobDetail.storeJob.baseInfo}}</view>
<view style="white-space: pre-line;margin-top:20px;">{{jobDetail.baseInfo}}</view>
<view style="margin-top: 20px;">对接信息</view>
<view style="white-space: pre-line;"> {{djxx}}</view>
</view>

@ -1921,7 +1921,7 @@ Page({
console.log(e);
var that = this;
wx.navigateTo({
url: "../detailApp/index?storeJobId=" + e.currentTarget.dataset.id + "&wxCode=" + that.data.wxCode,
url: "../detail/index?storeJobId=" + e.currentTarget.dataset.id + "&wxCode=" + that.data.wxCode,
});
},
@ -2347,17 +2347,18 @@ Page({
},
doCollected (collected, storeJobId) {
var that = this;
var url = "/user/collect/job/add";
if (collected - 1 == 0) {
url = "/user/collect/job/remove";
}
console.log(app.globalData.headers);
var url = "/assistant/job/collect/"+storeJobId;
// if (collected - 1 == 0) {
// url = "/user/collect/job/remove";
// }
// console.log(app.globalData.headers);
//发起网络请求
wx.request({
url: app.globalData.ip + url,
data: {
storeJobId: storeJobId,
},
// data: {
// jobId: storeJobId,
// classify:0
// },
header: app.globalData.headers,
method: "GET",
success: function (res) {
@ -2366,25 +2367,11 @@ Page({
//取消收藏
for (var i = 0; i != that.data.recordList.length; ++i) {
if (that.data.recordList[i].id - storeJobId == 0) {
that.data.recordList[i].collected = 2;
that.data.recordList[i].collected = 1;
break;
}
}
txt = "取消收藏";
that.data.currentJobDrawer.collected = 2;
if (that.data.choiceCollect == 1) {
if (that.data.drawerShow) {
that.data.drawerShow = false;
}
that.data.storeJobListSearchForm.pageNum = 1;
that.setData({
recordList: [],
drawerShow: that.data.drawerShow,
storeJobListSearchForm: that.data.storeJobListSearchForm,
});
that.getJobList();
}
} else {
//收藏
for (var i = 0; i != that.data.recordList.length; ++i) {
@ -2393,13 +2380,8 @@ Page({
break;
}
}
that.data.currentJobDrawer.collected = 1;
txt = "收藏成功";
}
console.log(that.data.currentJobDrawer);
that.setData({
recordList: that.data.recordList,
currentJobDrawer: that.data.currentJobDrawer,

@ -285,15 +285,11 @@
<image src="{{item.logo || 'https://matripe.oss-cn-beijing.aliyuncs.com/default.png'}}" mode="aspectFit" class="logoClass" alt></image>
<image class="pendant" wx:if="{{item.hotJob == 1}}" src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/hot.png" mode="aspectFit|aspectFill|widthFix" binderror bindload></image>
</view>
<button wx:if="{{isLogin && hasUserInfo - 0 == 0}}" class="collect biggerSize2 v-center {{item.collected - 1 == 0 ? 'collectred':''}}" open-type="getUserInfo" style="width:52px;" catchtap="getUserInfoBtn" data-type="4" data-collected="{{item.collected}}" data-jobid="{{item.id}}" hover-stop-propagation>
<icon class="iconfont icon-shoucang lh12" style="color: #888" wx:if="{{item.collected - 2 != 0}}"></icon>
<button wx:if="{{isLogin}}" class="collect biggerSize v-center {{item.collected - 1 == 0 ? 'collectred':''}}" catchtap="collectPaste" style="width:52px;" data-collected="{{item.collected}}" data-jobid="{{item.id}}" hover-stop-propagation>
<icon class="iconfont icon-shoucang lh12" style="color: #888" wx:if="{{item.collected == 0}}"></icon>
<icon class="iconfont icon-yishoucang lh12 color-f40" style wx:else></icon>
<text class="f10 {{item.collected - 1 == 0 ? 'color-f40':'c8'}}" style="line-height: 36px; margin-left: 2px">{{item.collected - 2 != 0 ? '收藏' : '已收藏'}}</text>
</button>
<button wx:if="{{isLogin && hasUserInfo - 1 == 0}}" class="collect biggerSize v-center {{item.collected - 1 == 0 ? 'collectred':''}}" catchtap="collectPaste" style="width:52px;" data-collected="{{item.collected}}" data-jobid="{{item.id}}" hover-stop-propagation>
<icon class="iconfont icon-shoucang lh12" style="color: #888" wx:if="{{item.collected - 2 == 0}}"></icon>
<icon class="iconfont icon-yishoucang lh12 color-f40" style wx:else></icon>
<text class="f10 {{item.collected - 1 == 0 ? 'color-f40':'c8'}}" style="line-height: 12px; margin-left: 2px">{{item.collected - 2 == 0 ? '收藏' : '已收藏'}}</text>
<text class="f10 {{item.collected - 1 == 0 ? 'color-f40':'c8'}}" style="line-height: 12px; margin-left: 2px">{{item.collected == 0 ? '收藏' : '已收藏'}}</text>
</button>
<button wx:if="{{!isLogin}}" style="width:52px;" class="collect biggerSize" open-type="getPhoneNumber" catchgetphonenumber="getPhoneNumber" catchtap="emptyMethod" data-collected="{{item.collected}}" data-jobid="{{item.id}}" hover-stop-propagation>
<icon class="iconfont icon-shoucang" style="color: #888"></icon>

@ -1,13 +1,14 @@
// pages/mine/myJob/index.js
const app = getApp();
Page({
/**
* 页面的初始数据
*/
data: {
recordList:[],
inputVal:''
},
/**
* 生命周期函数--监听页面加载
*/
@ -26,7 +27,21 @@ Page({
* 生命周期函数--监听页面显示
*/
onShow() {
this.getList();
},
getList(){
var that = this;
wx.request({
url: app.globalData.ip + "/yishoudan/common/order/list",
method: "Post",
header: app.globalData.headers,
success: function (res) {
console.log(res);
that.setData({
recordList:res.data.data
})
}
})
},
/**

@ -1,3 +1,3 @@
{
"navigationBarTitleText": "我的工作"
"navigationBarTitleText": "我的报名"
}

@ -1,34 +1,35 @@
<view class="tc" wx:if="{{!hasAddress}}">
<view class="t-icon t-icon-zanwu" style="width: 80px; height: 80px; margin: 50% auto 20px"></view>
<view class="mt20 cccc">暂无记录</view>
<block wx:if="{{recordList}}">
<!-- <view class="weui-search-bar weui-search-bar_focusing bgf" id="searchBar" style="line-height: 1;padding-left:16px;padding-right:16px">
<view class="weui-search-bar__form flex-1 fsa g_bg_f_5">
<view class="weui-search-bar__box flex-1 fsa" style="border-radius: 17px;">
<i class="iconfont icon-sousuo"></i>
<input type="text" class="weui-search-bar__input flex-1 c3" style="max-width:150px" placeholder-style="color:#999;" value="{{inputVal}}" placeholder="搜索职位名称" bindinput="inputTyping" bindconfirm="searchKey" auto-focus confirm-type="search" />
<view class="iconfont icon-qingchu1 biggerSize" wx:if="{{inputVal}}" catchtap="clearInput"></view>
<view class="search" bindtap="searchKey">搜索</view>
</view>
</view>
</view> -->
<view class="bt1">
<!-- <view class="f18 ml10 mt16">当前</view>
<view class="bgf display-flex p1020">
<image src="https://matripe.oss-cn-beijing.aliyuncs.com/default.png" style="width: 52px;height: 52px;" mode="" />
<view class="display-flex flex-1 ml8">
<view class="bgf display-flex p16 pb0" wx:for="{{recordList}}">
<view class="display-flex flex-1 ml8 pb16 bb1">
<view class="flex-1">
<view class="f16 fwb">滁州立讯小时工</view>
<view class="f16 fwb">{{recordList}}</view>
<view class="f16 fwb color-f40 mt8">27元/小时</view>
</view>
<view class="tr">
<view class="f16 fwb">待审核</view>
<view class="f14 mt8">2023-08-31 18:02</view>
<view class="f14 c9">2023-08-31 18:02</view>
</view>
</view>
</view>
</view>
<view class="f18 ml10 mt16">历史</view>
<view class="bgf display-flex p1020">
<image src="https://matripe.oss-cn-beijing.aliyuncs.com/default.png" style="width: 52px;height: 52px;" mode="" />
<view class="display-flex flex-1 ml8">
<view class="flex-1">
<view class="f16 fwb">滁州立讯小时工</view>
<view class="f16 fwb color-f40 mt8">27元/小时</view>
</view>
<view class="tr">
<view class="f16 fwb">待审核</view>
<view class="f14 mt8">2023-08-31 18:02</view>
</block>
<view class="tc" wx:else="">
<view class="t-icon t-icon-zanwu" style="width: 80px; height: 80px; margin: 50% auto 20px"></view>
<view class="mt20 cccc">暂无记录</view>
</view>
</view>
</view> -->

@ -796,7 +796,7 @@ Page({
// }
paramData["agencyId"] = '3087';
paramData["storeJobId"] = jobInfo.storeJobId;
paramData["jobId"] = jobInfo.storeJobId;
paramData["policy"] = jobInfo.policy;
paramData["interviewTime"] = jobInfo.currentTime;
paramData["receptionTime"] = jobInfo.currentTime2;
@ -814,7 +814,7 @@ Page({
}).then((paramData) => {
console.log(paramData);
wx.request({
url: app.globalData.ip + "/user/apply/order/addByAgency",
url: app.globalData.ip + "/yishoudan/common/order/add",
header: app.globalData.headers,
data: paramData,
method: "POST",

@ -164,7 +164,7 @@
<view class="weui-cells weui-cells_form">
<view class="weui-cell">
<view class="weui-cell__hd">
<label class="weui-label c085">电话</label>
<label class="weui-label c085">电话 <text class="cfred">*</text></label>
</view>
<view class="weui-cell__bd">
<input class="weui-input" type="number" name="tel" bindblur="getTel" bindinput="bothwayBind" data-type="tel" value="{{userInfo.tel}}" placeholder="请输入电话" placeholder-class="input__placeholder" />

Loading…
Cancel
Save