|
|
|
@ -6,7 +6,7 @@
|
|
|
|
<div class="g_pb_16">
|
|
|
|
<div class="g_pb_16">
|
|
|
|
<img class="g_h_80 g_w_80 g_radius_50" :src="beFllowAgencyInfo.logo || 'https://matripe-cms.oss-cn-beijing.aliyuncs.com/dailibaoming/APP/default.svg'" alt="" />
|
|
|
|
<img class="g_h_80 g_w_80 g_radius_50" :src="beFllowAgencyInfo.logo || 'https://matripe-cms.oss-cn-beijing.aliyuncs.com/dailibaoming/APP/default.svg'" alt="" />
|
|
|
|
<div class="g_fs_20 g_mt_12 g_mb_12 g_fw_600">
|
|
|
|
<div class="g_fs_20 g_mt_12 g_mb_12 g_fw_600">
|
|
|
|
{{ beFllowAgencyInfo.agencyName || "-" }}
|
|
|
|
{{ beFllowAgencyInfo.fullName || "-" }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="g_c_9 g_fs_14">
|
|
|
|
<div class="g_c_9 g_fs_14">
|
|
|
|
{{ beFllowAgencyInfo.desp || "-" }}
|
|
|
|
{{ beFllowAgencyInfo.desp || "-" }}
|
|
|
|
@ -22,7 +22,7 @@
|
|
|
|
<div class="g_mt_30">
|
|
|
|
<div class="g_mt_30">
|
|
|
|
<div class="g_fs_18 g_mb_8 g_pl_12">填写企业简称:</div>
|
|
|
|
<div class="g_fs_18 g_mb_8 g_pl_12">填写企业简称:</div>
|
|
|
|
<div class="r_box g_pl_10">
|
|
|
|
<div class="r_box g_pl_10">
|
|
|
|
<u-input v-model="agencyInfo.fullName" :disabled="disabled" height="88" placeholder="区域+名称,如:上海发财劳务"></u-input>
|
|
|
|
<u-input v-model="agencyInfo.fullName" :customStyle="{ color: disabled ? '#999' : '#333' }" :disabled="disabled" height="88" placeholder="区域+名称,如:上海发财劳务"></u-input>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="g_fs_12 g_c_9 g_mt_6 g_pl_12">设置后系统将自动创建团队并关注该发单号,您作为创建人可在我的页面管理团队。</div>
|
|
|
|
<div class="g_fs_12 g_c_9 g_mt_6 g_pl_12">设置后系统将自动创建团队并关注该发单号,您作为创建人可在我的页面管理团队。</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@ -92,6 +92,7 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
onShow() {
|
|
|
|
onShow() {
|
|
|
|
|
|
|
|
let that = this;
|
|
|
|
that.G.Get("/checkUserLogin", {}, (res) => {
|
|
|
|
that.G.Get("/checkUserLogin", {}, (res) => {
|
|
|
|
console.log("checkUserLogin", res);
|
|
|
|
console.log("checkUserLogin", res);
|
|
|
|
if (res) {
|
|
|
|
if (res) {
|
|
|
|
@ -147,25 +148,38 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
getAgencyById() {
|
|
|
|
getAgencyById() {
|
|
|
|
let that = this;
|
|
|
|
let that = this;
|
|
|
|
this.G.Get(this.api.order_getAgencyByIdForApply, { agencyId: that.uid, inviteUserId: this.inviteUserId }, (res) => {
|
|
|
|
return new Promise((reso, reject) => {
|
|
|
|
console.log("resresresresresres++++++++++++++", res);
|
|
|
|
this.G.Get(this.api.order_getAgencyByIdForApply, { agencyId: that.uid, inviteUserId: this.inviteUserId }, (res) => {
|
|
|
|
that.beFllowAgencyInfo = res;
|
|
|
|
console.log("resresresresresres++++++++++++++", res);
|
|
|
|
if (res.id == that.agencyInfo.id) {
|
|
|
|
that.beFllowAgencyInfo = res;
|
|
|
|
that.isSelf = true;
|
|
|
|
if (res.id == that.agencyInfo.id) {
|
|
|
|
}
|
|
|
|
that.isSelf = true;
|
|
|
|
that.numList = [
|
|
|
|
}
|
|
|
|
{ label: "总职位", num: res.jobNum },
|
|
|
|
that.numList = [
|
|
|
|
{ label: "最近更新", num: res.recruitmentJobNum },
|
|
|
|
{ label: "总职位", num: res.jobNum },
|
|
|
|
{ label: "粉丝", num: res.downNum },
|
|
|
|
{ label: "最近更新", num: res.recruitmentJobNum },
|
|
|
|
];
|
|
|
|
{ label: "粉丝", num: res.downNum },
|
|
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
reso();
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
successLogin(e) {
|
|
|
|
successLogin(e) {
|
|
|
|
let that = this;
|
|
|
|
let that = this;
|
|
|
|
console.log("successLogin", e);
|
|
|
|
console.log("successLogin", e);
|
|
|
|
this.getAgencyInfo().then(() => {
|
|
|
|
this.getAgencyInfo().then(() => {
|
|
|
|
that.getAgencyById();
|
|
|
|
that.getAgencyById().then(() => {
|
|
|
|
that.applyAdd();
|
|
|
|
if (that.beFllowAgencyInfo.recordStatus == 3 || that.beFllowAgencyInfo.recordStatus == 4 || that.beFllowAgencyInfo.recordStatus == 6) {
|
|
|
|
|
|
|
|
that.applyAdd();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
if (that.beFllowAgencyInfo.recordStatus == 5) {
|
|
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
|
|
title: "已发起关注申请, 正在等待通过",
|
|
|
|
|
|
|
|
icon: "none",
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
getAgencyInfo() {
|
|
|
|
getAgencyInfo() {
|
|
|
|
|