diff --git a/src/views/dangerousWork/hotwork/components/hotwork/hotwork_list/components/detail_cfd.vue b/src/views/dangerousWork/hotwork/components/hotwork/hotwork_list/components/detail_cfd.vue index 1516918..0422aaa 100644 --- a/src/views/dangerousWork/hotwork/components/hotwork/hotwork_list/components/detail_cfd.vue +++ b/src/views/dangerousWork/hotwork/components/hotwork/hotwork_list/components/detail_cfd.vue @@ -389,3 +389,34 @@ export default { width: 100% height: 100% + diff --git a/src/views/keyprojects/outsourced/components/edit.vue b/src/views/keyprojects/outsourced/components/edit.vue index eefc1e5..08b45c6 100644 --- a/src/views/keyprojects/outsourced/components/edit.vue +++ b/src/views/keyprojects/outsourced/components/edit.vue @@ -690,7 +690,7 @@ export default { const corpId = data.varList[i].CORPINFO_ID if (corpId === '1e6dbbe16004402f8d2c0e52afd9a676' || corpId === '3a854eefa7894e06aaa1a2611bca80f6' || - corpId === '969fbd8ac42079a203f9e077ede888c1' || + corpId === '5cee11f6152d42e0a08ae38dc6abcfdf' || corpId === '020578a4c1f04bc692ee25145c2efbe5' || corpId === '90966974de3c4b83aca6f8fd6432d5c2') { this.groupCorpList.push(data.varList[i]) } diff --git a/src/views/keyprojects/videoinfomanager/components/list.vue b/src/views/keyprojects/videoinfomanager/components/list.vue index a6b3f27..bf5766a 100644 --- a/src/views/keyprojects/videoinfomanager/components/list.vue +++ b/src/views/keyprojects/videoinfomanager/components/list.vue @@ -25,8 +25,17 @@ - - + + + + + + + + + + + 搜索 @@ -251,7 +260,8 @@ export default { VIDEONAME: '', UNITS_USER_ID: '', UNIT_USE: '', - UNITS_ID: '' + UNITS_ID: '', + ONLINE_STATUS: '' }, unitsList: [], addForm: { @@ -316,7 +326,16 @@ export default { value: 'id', children: 'children', label: 'name' - } + }, + onlineStatusList: [ + { + ID: 0, + NAME: '在线' + }, { + ID: 1, + NAME: '离线' + } + ] } }, computed: { @@ -630,7 +649,8 @@ export default { VIDEONAME: this.form.VIDEONAME, PERSONNELMANAGEMENT_ID: this.form.UNITS_USER_ID, UNIT_USE: this.form.UNIT_USE, - UNITS_ID: this.form.UNITS_ID + UNITS_ID: this.form.UNITS_ID, + ONLINE_STATUS: this.form.ONLINE_STATUS } ).then((data) => { this.listLoading = false @@ -645,6 +665,7 @@ export default { this.form.UNITS_USER_ID = '' this.form.UNIT_USE = '' this.form.UNITS_ID = '' + this.form.ONLINE_STATUS = '' this.getList() } }