相似同类事件新增详情弹框

Lvtianfang
吕天方 3 weeks ago
parent 3c77b6e2ba
commit 7c9f5c5991

@ -6,7 +6,7 @@ ENV = 'development'
# 若依管理系统/开发环境
# VUE_APP_BASE_API = '/dev-api'
VUE_APP_BASE_API = 'http://192.168.0.109:9102/api'
VUE_APP_BASE_API = 'http://192.168.0.110:9102/api'
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true

@ -84,11 +84,16 @@
<!-- <el-button type="danger" @click="reported(2)">退</el-button> -->
<el-button type="primary" @click="reported">退</el-button>
</div>
<urgency-audit title="相似同类事件详情" ref="urgencyAudit" :auditStatus="2"></urgency-audit>
</el-dialog>
</template>
<script>
import { similarEventsPage, noAccordWith } from "@/api/eventPage"
import urgencyAudit from '@/views/components/urgencyAudit.vue'
export default {
components:{
urgencyAudit
},
data() {
return {
showCK:false,
@ -127,7 +132,6 @@ export default {
getList(id){
this.loading = true;
similarEventsPage(id).then(res=>{
console.log(res);
this.tableData = [...res.data];
if(this.multipleSelection.length > 0) {
this.tableData.map(item=>{
@ -149,7 +153,9 @@ export default {
})
},
//
toDetail(){},
toDetail(row){
this.$refs.urgencyAudit.open(this.audioInfo,row);
},
//
sign(row){
this.tableData.map(item=>{

@ -277,7 +277,11 @@ export default {
this.backupsInfo = {...row}
if(item){
this.isTrue = true;
this.getListTwo(item.caseSerial);
if(item.caseSerial) {
this.getListTwo(item.caseSerial);
} else {
this.getListTwo(item.resultId);
}
} else if(!item && this.eventInfo.msgType == '3'){
this.isTrue = false;
this.getList(row.innerEventId);

Loading…
Cancel
Save