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