Browse Source

1111

master
jiangyy 3 years ago
parent
commit
1a5515c494
  1. 7
      src/views/modules/visual/command/cpts/eventInfo.vue
  2. 7
      src/views/modules/visual/command/cpts/qsydw.vue
  3. 13
      src/views/modules/visual/command/index.vue

7
src/views/modules/visual/command/cpts/eventInfo.vue

@ -36,7 +36,10 @@ import eventInfo from "@/views/modules/shequzhili/event/cpts/event-info";
export default {
name: "dialogInfo",
props: {
eventId: {
type: String,
required: 'true'
},
},
components: {
@ -49,7 +52,7 @@ export default {
loading: false,
pageType: 'dispose',
eventId: '1552537796854706177',
// eventId: '',
eventDetailData: {},
};
},

7
src/views/modules/visual/command/cpts/qsydw.vue

@ -76,7 +76,10 @@ import record from "@/views/modules/shequzhili/tuceng/anquan/xuncha/cpts/record"
export default {
name: "dialogInfo",
props: {
enterpriseId: {
type: String,
required: 'true'
},
},
components: {
@ -93,7 +96,7 @@ export default {
eventDetailData: {},
enterpriseInfo: {},
enterpriseId: '1544585407179968514',
// enterpriseId: '',
};

13
src/views/modules/visual/command/index.vue

@ -160,6 +160,7 @@
<event-info v-if="pageType==='watch-event'"
ref="ref_event"
:eventId="eventId"
@handleClose="handleClose" />
<service-info v-if="pageType==='create-service'"
@ -173,6 +174,7 @@
<qsydw v-if="pageType==='watch-xuncha'"
ref="ref_xuncha"
:enterpriseId="enterpriseId"
@handleClose="handleClose" />
<!-- <people v-if="pageType==='watch-resi'"
@ -395,7 +397,9 @@ export default {
searchResult: iniSearchResult(),
pageType: '',
icResiUserId:'',
icResiUserId: '',
eventId: '',
enterpriseId: '',
};
},
@ -426,16 +430,17 @@ export default {
if (type == "create-service") {
//
} else if (type == "watch-resi") {
this.toSubAgency('people',info.icResiUserId)
this.icResiUserId = info.icResiUserId
this.toSubAgency('people', info.icResiUserId)
this.icResiUserId = info.icResiUserId
//
} else if (type == "watch-event") {
//
} else if (type == "create-demand") {
//
this.icResiUserId = info.icResiUserId
}else if(type=="watch-xuncha"){
} else if (type == "watch-xuncha") {
this.enterpriseId = info.enterpriseId
}
},

Loading…
Cancel
Save