添加备注

dev
秦青青 2 years ago
parent 46563e3a9f
commit 1515c320c4

@ -35,6 +35,7 @@ export default {
this.vipID = JSON.parse(sessionStorage.getItem('userInfo')).id;
}
const { bus } = WujieVue2;
//
bus.$on('openUserInfo', (event) => {
if (event.status) {
this.asyncOpenUserInfo();

@ -41,19 +41,27 @@
<a-tabs default-active-key="1" :tabBarGutter="40" @change="tabChange">
<a-tab-pane key="1" tab="会员资料" force-render>
<div class="marginBottom55">
<!-- BasicInfo基本用户信息 -->
<BasicInfo v-if="basicInfo" :id="vipID" :isSelfSupport="isSelfSupport"
:educationWordList="educationWordList" :info="basicInfo"
@update="updateSysMemberBase" />
<!-- JobWantedStatus求职意向 -->
<JobWantedStatus :id="vipID" :isSelfSupport="isSelfSupport" />
<!-- JobExperience工作经历 -->
<JobExperience :id="vipID" :isSelfSupport="isSelfSupport" />
<!-- EducationList教育经历 -->
<EducationList :id="vipID" :isSelfSupport="isSelfSupport"
:educationWordList="educationWordList" />
<div v-if="isSelfSupport === 1" class="dashline marginBottom8" />
<!-- AdditionalInformation补充信息 -->
<AdditionalInformation v-if="isSelfSupport === 1" :id="vipID"
:isSelfSupport="isSelfSupport" />
<!-- PersonnelCategoryList人员类别 -->
<PersonnelCategoryList v-if="isSelfSupport === 1" :id="vipID"
:isSelfSupport="isSelfSupport" />
<!-- TrainingIntention 培训意向-->
<TrainingIntention v-if="isSelfSupport === 1" :id="vipID" :isSelfSupport="isSelfSupport" />
<!-- EntrepreneurialIntention 创业意向-->
<EntrepreneurialIntention v-if="isSelfSupport === 1" :id="vipID"
:isSelfSupport="isSelfSupport" />
</div>
@ -95,6 +103,7 @@
</div>
</div>
</a-drawer>
<!-- 招聘追踪弹窗 -->
<AddModal ref="addRecordModal" v-if="memberObject && isModalSwitch" :memberObject="memberObject" :isBut="false" @fun="addRecordBeforeUpdateRecordList" :title="'添加追踪结果'" :moresInfo={} :vipId="vipID" />
</div>
</template>
@ -131,7 +140,7 @@ export default {
data() {
return {
visible: false,
isSelfSupport: this.getSession('CX_Common_UserInfo').isSelfSupport, // //01
isSelfSupport: this.getSession('CX_Common_UserInfo').isSelfSupport, // //01
recordList: null,
isRecordEmpty: false,
basicInfo: null,

Loading…
Cancel
Save