no message

cyl/job_im
jscyl13849007907 1 week ago
parent dbcacf494a
commit 8192dcf0de

@ -365,11 +365,12 @@ export default {
uni.setStorageSync("pgy-agency-id", res.agency.id); uni.setStorageSync("pgy-agency-id", res.agency.id);
uni.setStorageSync("ai-name", res.agency.aiRobotName); uni.setStorageSync("ai-name", res.agency.aiRobotName);
uni.setStorageSync("ai-logo", res.agency.aiLogo); uni.setStorageSync("ai-logo", res.agency.aiLogo);
that.initData(obj);
}); });
} else { } else {
// 使 // 使
this.appInfo = miniAppInfo; this.appInfo = miniAppInfo;
that.initData(miniAppInfo);
if (this.appInfo.noticeImg) { if (this.appInfo.noticeImg) {
this.noticeImg = this.appInfo.noticeImg; this.noticeImg = this.appInfo.noticeImg;
} else { } else {
@ -377,9 +378,6 @@ export default {
} }
} }
// setTimeout(() => {
// that.appInfo = uni.getStorageSync("miniApp-info");
// }, 100);
setTimeout(() => { setTimeout(() => {
if (uni.getStorageSync("miniApp-info").notice) { if (uni.getStorageSync("miniApp-info").notice) {
@ -394,6 +392,7 @@ export default {
}, },
data() { data() {
return { return {
isSelf: false,
noticeColor: "#333", noticeColor: "#333",
isAgency: uni.getStorageSync("apply-userinfo") && uni.getStorageSync("apply-userinfo").agencyId, isAgency: uni.getStorageSync("apply-userinfo") && uni.getStorageSync("apply-userinfo").agencyId,
isJm:uni.getStorageSync("apply-userinfo") && uni.getStorageSync("apply-userinfo").agencyId && uni.getStorageSync("apply-userinfo").agencyId == '114827', isJm:uni.getStorageSync("apply-userinfo") && uni.getStorageSync("apply-userinfo").agencyId && uni.getStorageSync("apply-userinfo").agencyId == '114827',
@ -547,6 +546,28 @@ export default {
} }
}, },
methods: { methods: {
initData($data,callback=() => {}){
let that = this;
if(uni.getStorageSync("apply-token")){
if(uni.getStorageSync("apply-userinfo") && uni.getStorageSync("apply-userinfo").agencyId == $data.id){
that.isSelf = true;
let hasCaidan = that.tabInfo.list.some(item => item.name === '采单');
if (!hasCaidan) {
that.tabInfo.list.push({
name: '采单',
classify: 2
});
}
callback();
}else{
that.isSelf = false;
callback();
}
}else{
that.isSelf = false;
callback();
}
},
getMore(){ getMore(){
let that = this; let that = this;
if(that.isJm){ if(that.isJm){
@ -874,21 +895,24 @@ export default {
}); });
} }
let currentClassify = that.tabInfo.list[that.tabInfo.active].classify;
params = { params = {
...that.getFilterData, ...that.getFilterData,
pageNum: that.query.page, pageNum: that.query.page,
pageSize: that.query.size, pageSize: that.query.size,
keys: that.keyword, keys: that.keyword,
ujc: that.query.ujc, ujc: currentClassify == 2 ? 0 : that.query.ujc,
sortTag: that.query.sortTag, sortTag: that.query.sortTag,
recruitment: 1, recruitment: 1,
classify: 1, classify: 1,
workTypeStr: "", workTypeStr: "",
jobClassify: "", jobClassify: "",
cityName: that.selectedCity == "全国" ? "" : that.selectedCity, cityName: that.selectedCity == "全国" ? "" : that.selectedCity,
brandIds: "", brandIds: ""
checkStore: true
}; };
if (currentClassify !== 2) {
params.checkStore = true;
}
// if (that.tabInfo.list[that.tabInfo.active].classify == 1) { // if (that.tabInfo.list[that.tabInfo.active].classify == 1) {
// params.jobType = 2; // params.jobType = 2;

Loading…
Cancel
Save