交叉互查、执法证号登录等bug修改

This commit is contained in:
zhangchaoyang02 2025-08-01 19:08:47 +08:00
parent 4acd89ec2f
commit a12e5fc501
6 changed files with 20 additions and 4 deletions

View File

@ -36,7 +36,7 @@
</div>
</div>
<div class="right-profile">
gzt_tcdl" @click="handleLogout" title="退出"></i>
</div>
</div>
</template>

View File

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

View File

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

View File

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

View File

@ -23,7 +23,11 @@ import java.util.Map;
@RequestMapping(Constants.API_PREFIX + "/bigscreen")
public class BigScreenController {
private final BigScreenService bigScreenService;
public BigScreenController(BigScreenService bigScreenService) {
this.bigScreenService = bigScreenService;
}
/**
* 数据概览统计
*

View File

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