交叉互查、案件资料清单下载等功能bug修复

This commit is contained in:
chenlinlin 2025-07-25 19:05:59 +08:00
parent 9fd42c4902
commit 3c2091a825
4 changed files with 3 additions and 15 deletions

View File

@ -24,8 +24,7 @@
import {reactive, toRefs, getCurrentInstance, watch, computed, ref} from 'vue' import {reactive, toRefs, getCurrentInstance, watch, computed, ref} from 'vue'
import Browser from '@/components/Browser.vue' import Browser from '@/components/Browser.vue'
import {useUserStore} from '@/stores/modules/user' import {useUserStore} from '@/stores/modules/user'
import supervisions from "@/api/lawenforcement/SupervisionCheck.js"
const userStore = useUserStore()
const state = reactive({ const state = reactive({
componentLoading: false, componentLoading: false,

View File

@ -264,13 +264,7 @@ function handleDialogOk(formRef) {
console.log(dialogConfig.value.data) console.log(dialogConfig.value.data)
supervisions.add(dialogConfig.value.data).then(res => { supervisions.add(dialogConfig.value.data).then(res => {
if (res.success) { if (res.success) {
messagesApi.sendMessage({
title: '交叉互查完成',
content: '您有新的交叉互查执法信息待处理!',
routeUrl: '/xzzfgl/ddjcjh/ddjcrwgl',
businessKey: dialogConfig.value.data.enterprise.enterpriseId,
receiverIds: ['111111']
}).then(rs => {
}) })
ElMessage.success("转交成功") ElMessage.success("转交成功")
dialogConfig.value.show = false dialogConfig.value.show = false

View File

@ -172,10 +172,7 @@ function handleQuery(query) {
queryParams.value.checkType = '交叉互查' queryParams.value.checkType = '交叉互查'
queryParams.value.flag = 'cl' queryParams.value.flag = 'cl'
apiConfig.value.api.query(queryParams.value).then(res => { apiConfig.value.api.query(queryParams.value).then(res => {
if (res.success) {
tableConfig.value.tableData = res
tableConfig.value.tableLoading = false
}
}) })
} }

View File

@ -91,8 +91,6 @@ public class SupervisionCheckService {
supervisionCheck.setCheckType(supervisionCheckDto.getCheckType()); supervisionCheck.setCheckType(supervisionCheckDto.getCheckType());
if("交叉互查".equals(supervisionCheckDto.getCheckType())){ if("交叉互查".equals(supervisionCheckDto.getCheckType())){
supervisionCheck.setCheckStatus(SupervisionCheck.CheckStatus.reviewing_done); supervisionCheck.setCheckStatus(SupervisionCheck.CheckStatus.reviewing_done);
}else{
supervisionCheck.setCheckStatus(SupervisionCheck.CheckStatus.pending);
} }
supervisionCheck.setDeliverTime(LocalDateTime.now()); supervisionCheck.setDeliverTime(LocalDateTime.now());
supervisionCheck.setEvidence(supervisionCheckDto.getEvidence()); supervisionCheck.setEvidence(supervisionCheckDto.getEvidence());