|
|
|
@ -109,6 +109,7 @@ import AdditionalInformation from "./components/additionalInformation";
|
|
|
|
|
import PersonnelCategoryList from "./components/personnelCategory/personnelCategoryList";
|
|
|
|
|
import TrainingIntention from "./components/trainingIntention";
|
|
|
|
|
import EntrepreneurialIntention from "./components/entrepreneurialIntention";
|
|
|
|
|
import WujieVue2 from "wujie-vue2";
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
AddModal,
|
|
|
|
@ -130,7 +131,7 @@ export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
visible: false,
|
|
|
|
|
isSelfSupport: this.getSession('CX_CoopTokenInfo').isSelfSupport, // //是否为自营用户0:否,1:是
|
|
|
|
|
isSelfSupport: this.getSession('CX_Common_UserInfo').isSelfSupport, // //是否为自营用户0:否,1:是
|
|
|
|
|
recordList: null,
|
|
|
|
|
isRecordEmpty: false,
|
|
|
|
|
basicInfo: null,
|
|
|
|
@ -315,6 +316,8 @@ export default {
|
|
|
|
|
this.visible = true;
|
|
|
|
|
},
|
|
|
|
|
onClose() {
|
|
|
|
|
const { bus } = WujieVue2
|
|
|
|
|
bus.$emit('changeUserModal', false)
|
|
|
|
|
this.visible = false;
|
|
|
|
|
this.isModalSwitch = false;
|
|
|
|
|
},
|
|
|
|
|