|
@@ -335,7 +335,7 @@
|
|
</el-input>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item label="附件" prop="schedulePictures" v-if="eventStatusButton=='sh'">
|
|
<el-form-item label="附件" prop="schedulePictures" v-if="eventStatusButton=='sh'">
|
|
- <ImageUpload ref="ImageUpload" :limit="10" :fileType="['jpg', 'png','jpeg']" :value="uploadAttachList"
|
|
|
|
|
|
+ <ImageUpload class="sj-upload" ref="ImageUpload" :limit="10" :fileType="['jpg', 'png','jpeg']" :value="uploadAttachList"
|
|
@input="getUrl"></ImageUpload>
|
|
@input="getUrl"></ImageUpload>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<!--<el-form-item label="联系人" v-if="eventStatusButton=='qs'">-->
|
|
<!--<el-form-item label="联系人" v-if="eventStatusButton=='qs'">-->
|
|
@@ -348,24 +348,38 @@
|
|
<!--</el-select>-->
|
|
<!--</el-select>-->
|
|
<!--</el-form-item>-->
|
|
<!--</el-form-item>-->
|
|
<el-button size="mini" type="primary" v-if="eventStatusButton=='qr'"
|
|
<el-button size="mini" type="primary" v-if="eventStatusButton=='qr'"
|
|
|
|
+ class="sj-icon-btn"
|
|
|
|
+ icon="el-icon-document-checked"
|
|
@click="updateCentereventTEventcatalogueStatus('qr',false)">确认
|
|
@click="updateCentereventTEventcatalogueStatus('qr',false)">确认
|
|
</el-button>
|
|
</el-button>
|
|
<el-button size="mini" type="primary" v-if="eventStatusButton=='qs'"
|
|
<el-button size="mini" type="primary" v-if="eventStatusButton=='qs'"
|
|
|
|
+ class="sj-icon-btn"
|
|
|
|
+ icon="el-icon-edit"
|
|
@click="updateCentereventTEventcatalogueStatus('qs',true)">签收
|
|
@click="updateCentereventTEventcatalogueStatus('qs',true)">签收
|
|
</el-button>
|
|
</el-button>
|
|
<el-button size="mini" type="primary" v-if="eventStatusButton=='wb'"
|
|
<el-button size="mini" type="primary" v-if="eventStatusButton=='wb'"
|
|
|
|
+ class="sj-icon-btn"
|
|
|
|
+ icon="el-icon-close-notification"
|
|
@click="updateCentereventTEventcatalogueStatus('wb',true)">误报
|
|
@click="updateCentereventTEventcatalogueStatus('wb',true)">误报
|
|
</el-button>
|
|
</el-button>
|
|
<el-button size="mini" type="primary" v-if="eventStatusButton=='cf'"
|
|
<el-button size="mini" type="primary" v-if="eventStatusButton=='cf'"
|
|
|
|
+ class="sj-icon-btn"
|
|
|
|
+ icon="el-icon-document-copy"
|
|
@click="updateCentereventTEventcatalogueStatus('cf',true)">重复
|
|
@click="updateCentereventTEventcatalogueStatus('cf',true)">重复
|
|
</el-button>
|
|
</el-button>
|
|
<el-button size="mini" type="primary" v-if="eventStatusButton=='ld'"
|
|
<el-button size="mini" type="primary" v-if="eventStatusButton=='ld'"
|
|
|
|
+ class="sj-icon-btn"
|
|
|
|
+ icon="el-icon-phone"
|
|
@click="updateCentereventTEventcatalogueStatus('ld',true)">发起联动
|
|
@click="updateCentereventTEventcatalogueStatus('ld',true)">发起联动
|
|
</el-button>
|
|
</el-button>
|
|
<el-button size="mini" type="primary" v-if="eventStatusButton=='sh'"
|
|
<el-button size="mini" type="primary" v-if="eventStatusButton=='sh'"
|
|
|
|
+ class="sj-icon-btn"
|
|
|
|
+ icon="el-icon-circle-check"
|
|
@click="updateCentereventTEventcatalogueStatus('shtg',true)">通过
|
|
@click="updateCentereventTEventcatalogueStatus('shtg',true)">通过
|
|
</el-button>
|
|
</el-button>
|
|
<el-button size="mini" type="primary" v-if="eventStatusButton=='sh'"
|
|
<el-button size="mini" type="primary" v-if="eventStatusButton=='sh'"
|
|
|
|
+ class="sj-icon-btn"
|
|
|
|
+ icon="el-icon-circle-close"
|
|
@click="updateCentereventTEventcatalogueStatus('shbtg',true)">不通过
|
|
@click="updateCentereventTEventcatalogueStatus('shbtg',true)">不通过
|
|
</el-button>
|
|
</el-button>
|
|
</el-form>
|
|
</el-form>
|
|
@@ -1458,10 +1472,17 @@ export default {
|
|
eventCode: this.eventCode
|
|
eventCode: this.eventCode
|
|
}
|
|
}
|
|
centereventtdepteventList(param).then(res => {
|
|
centereventtdepteventList(param).then(res => {
|
|
- this.depteventList = res.data
|
|
|
|
|
|
+ if(Array.isArray(res.data)&&res.data.length>0){
|
|
|
|
+ this.depteventList = this.unique(res.data);
|
|
|
|
+ console.log(this.depteventList)
|
|
|
|
+ }
|
|
this.showResponsibilityDialog = true
|
|
this.showResponsibilityDialog = true
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ unique(arr1) {
|
|
|
|
+ const res = new Map()
|
|
|
|
+ return arr1.filter((item) => !res.has(item.deptId) && res.set(item.deptId, 1))
|
|
|
|
+ },
|
|
closeResponsibilityDialog() { //责任制关闭
|
|
closeResponsibilityDialog() { //责任制关闭
|
|
this.dutysystemTableData = []
|
|
this.dutysystemTableData = []
|
|
this.dutysystemDeptName = ''
|
|
this.dutysystemDeptName = ''
|
|
@@ -1817,6 +1838,7 @@ export default {
|
|
this.sendEventType = null
|
|
this.sendEventType = null
|
|
this.sendHuoZaiBanJing = 0
|
|
this.sendHuoZaiBanJing = 0
|
|
this.sendGuanLianYuAn = null
|
|
this.sendGuanLianYuAn = null
|
|
|
|
+ this.filterText = ''
|
|
// this.longitude = null
|
|
// this.longitude = null
|
|
// this.latitude = null
|
|
// this.latitude = null
|
|
this.sendTaskTitle = null
|
|
this.sendTaskTitle = null
|
|
@@ -1837,6 +1859,7 @@ export default {
|
|
this.sendDeptId = null
|
|
this.sendDeptId = null
|
|
this.sendDeptName = null
|
|
this.sendDeptName = null
|
|
this.sendUserFegin = []
|
|
this.sendUserFegin = []
|
|
|
|
+ this.filterText = ''
|
|
this.sendEventType = null
|
|
this.sendEventType = null
|
|
this.sendHuoZaiBanJing = 0
|
|
this.sendHuoZaiBanJing = 0
|
|
this.sendGuanLianYuAn = null
|
|
this.sendGuanLianYuAn = null
|