cyl/master-0804
wangxia 4 months ago
parent 0c2c3345f0
commit 742d1f6801

@ -1,7 +1,7 @@
<template>
<div class="p-root-detail-user g_w_all g_bg_page g_kuaishou">
<u-navbar backIconColor="#333" :borderBottom="false" :immersive="true" :customBack="goHome" :background="{ background: navColor }" :backIconName="fromShare ? 'home' : 'arrow-left'"></u-navbar>
<view class=" u-navbar-fixed" style="background-color: #caf1e0 !important;height:160px"></view>
<view class="u-navbar-fixed" style="background-color: #caf1e0 !important; height: 160px"></view>
<div class style="background-color: #caf1e0 !important">
<view class="m-info g_p_20 g_pt_12 g_pb_0 g_bg_f g_position_rela" hover-class="none" style="margin-top: 0; border-radius: 8px 8px 0 0">
<view class="g_flex_row_start">
@ -96,15 +96,7 @@
</div>
</div>
<!-- 发布职位确认框 -->
<u-modal v-model="submitConfirm"
width="90%"
negativeTop="150"
confirmText="发布职位"
:showTitle="false"
:confirmStyle="{ color: '#576b95', 'font-weight': 600 }"
:cancelStyle="{ color: '#000', 'font-weight': 600 }"
:showConfirmButton="false"
>
<u-modal v-model="submitConfirm" width="90%" negativeTop="150" confirmText="发布职位" :showTitle="false" :confirmStyle="{ color: '#576b95', 'font-weight': 600 }" :cancelStyle="{ color: '#000', 'font-weight': 600 }" :showConfirmButton="false">
<div class="g_fs_17 g_text_c">
<div class style="padding: 42px 24px 36px">
<div class="g_text_c g_fw_600 g_c_0">创建团队/企业</div>
@ -616,6 +608,9 @@ export default {
}
}
this.G.Get(this.api.bind_subscribeSubmit + "/" + that.uid, { agencyId: that.agencyInfo.id, agencyName: that.agencyInfo.fullName, source: _code, remark: " " }, (res) => {
this.getAgencyInfo().then(() => {
that.getAgencyById().then(() => {});
});
uni.showToast({
title: "申请成功",
icon: "none",
@ -684,22 +679,17 @@ export default {
let that = this;
this.isLogin = true;
console.log("successLogin", e);
this.getAgencyInfo().then(() => {
that.getAgencyById().then(() => {
that.getDefault("init");
if (that.info.recordStatus == 3 || that.info.recordStatus == 4 || that.info.recordStatus == 6) {
that.handleSubmit();
} else {
if (that.info.recordStatus == 5) {
uni.showToast({
title: "已发起关注申请, 正在等待通过",
icon: "none",
});
}
}
});
});
that.getDefault("init");
if (that.info.recordStatus == 3 || that.info.recordStatus == 4 || that.info.recordStatus == 6) {
that.handleSubmit();
} else {
if (that.info.recordStatus == 5) {
uni.showToast({
title: "已发起关注申请, 正在等待通过",
icon: "none",
});
}
}
},
jobLogin() {
let that = this;

Loading…
Cancel
Save