|
|
|
|
@ -400,7 +400,7 @@
|
|
|
|
|
<label>涉嫌问题</label> |
|
|
|
|
<span>{{ activeRow.involveProblem }}</span> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="col col-12"> |
|
|
|
|
<label>涉及单位</label> |
|
|
|
|
<span |
|
|
|
|
@ -434,11 +434,11 @@ import {
|
|
|
|
|
getNegativeId |
|
|
|
|
} from "@/api/data/caseVerif"; |
|
|
|
|
import { DistributionState } from "@/enums/dictEnums"; |
|
|
|
|
import { getDictLable } from "@/utils/util"; |
|
|
|
|
import { getDictLable ,getYearTime} from "@/utils/util"; |
|
|
|
|
import feedback from "@/utils/feedback"; |
|
|
|
|
|
|
|
|
|
import useCatchStore from "@/stores/modules/catch"; |
|
|
|
|
|
|
|
|
|
const route =useRoute() |
|
|
|
|
const catchStore = useCatchStore(); |
|
|
|
|
const dict = catchStore.getDicts([ |
|
|
|
|
"distributionState", |
|
|
|
|
@ -474,6 +474,15 @@ function reset() {
|
|
|
|
|
|
|
|
|
|
getList(); |
|
|
|
|
|
|
|
|
|
//检测跳转来源界面是否为大屏 |
|
|
|
|
watch(()=>route.query.toString(), |
|
|
|
|
()=>{ |
|
|
|
|
if(route.query.open){ |
|
|
|
|
query.value.discoveryTime=getYearTime() |
|
|
|
|
} |
|
|
|
|
getList() |
|
|
|
|
},{immediate:true,deep:true}) |
|
|
|
|
|
|
|
|
|
const show = ref(false); |
|
|
|
|
|
|
|
|
|
async function handleDel(row) { |
|
|
|
|
@ -524,6 +533,8 @@ async function handleAction(row) {
|
|
|
|
|
negativeShow.value = true |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const detailShow = ref(false); |
|
|
|
|
const activeRow = ref({}); |
|
|
|
|
|
|
|
|
|
@ -531,4 +542,4 @@ function handleDetail(row) {
|
|
|
|
|
activeRow.value = row; |
|
|
|
|
detailShow.value = true; |
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|
</script> |
|
|
|
|
|