|
|
|
@ -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=>{
|
|
|
|
|