|
@@ -55,7 +55,6 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="事件名称" align="center" prop="name" />
|
|
|
<el-table-column label="事件描述" align="center" prop="detail" />
|
|
|
- <el-table-column label="相关图片" align="center" prop="detail" />
|
|
|
<el-table-column label="相关图片" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
{{getCount(scope.row.pics)+getCount(scope.row.dealPics)}}
|
|
@@ -119,7 +118,7 @@
|
|
|
<el-row type="flex" class="row-bg" style="margin-top:2rem">
|
|
|
<el-col :span="5"><div style="float:right">状态:</div></el-col>
|
|
|
<el-col :span="19">
|
|
|
- <div style="padding-left:2rem">
|
|
|
+ <div style="padding-left:2rem">
|
|
|
<div>
|
|
|
{{getStatus(detailObj.status)}}
|
|
|
</div>
|
|
@@ -128,7 +127,7 @@
|
|
|
<el-row type="flex" class="row-bg" style="margin-top:2rem">
|
|
|
<el-col :span="5"><div style="float:right">事件等级:</div></el-col>
|
|
|
<el-col :span="19">
|
|
|
- <div style="padding-left:2rem">
|
|
|
+ <div style="padding-left:2rem">
|
|
|
<div :class='"color_"+detailObj.incLevel'>
|
|
|
{{getLevel(detailObj.incLevel)}}
|
|
|
</div>
|
|
@@ -167,7 +166,7 @@
|
|
|
</div>
|
|
|
<div v-if="detailObj.pics" style="display:flex; flex-direction: row;margin-top:3rem;padding-left:5rem">
|
|
|
<div v-for="(pic,index) in detailObj.picList.split(',')">
|
|
|
- <div :class='selectindex === index?"imgSelect":""' @click="selectImg(index)" style="margin-left:1rem">
|
|
|
+ <div :class='selectindex === index?"imgSelect":""' v-if="pic !== ''" @click="selectImg(index)" style="margin-left:1rem">
|
|
|
<img :src='getImageUrl(pic)' style="width: 11.7rem;height: 8.7rem;"/>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -204,7 +203,7 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
pageList:[],
|
|
|
-
|
|
|
+
|
|
|
picImage:'',
|
|
|
|
|
|
detailObj:{},
|
|
@@ -248,9 +247,9 @@ export default {
|
|
|
// 表单参数
|
|
|
form: {},
|
|
|
selectindex:0,
|
|
|
-
|
|
|
+
|
|
|
formObj:{},
|
|
|
-
|
|
|
+
|
|
|
pointArry:{
|
|
|
locations:'',
|
|
|
type:''
|
|
@@ -298,7 +297,7 @@ export default {
|
|
|
for(var index in this.dict.type.tl_xun_area){
|
|
|
if(this.dict.type.tl_xun_area[index].value == id){
|
|
|
return this.dict.type.tl_xun_area[index].label
|
|
|
- }
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
getImage (){
|
|
@@ -456,7 +455,7 @@ export default {
|
|
|
return "success-row";
|
|
|
}
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
};
|
|
|
</script>
|