交叉互查、执法证号登录等bug修改
This commit is contained in:
parent
4acd89ec2f
commit
a12e5fc501
|
|
@ -36,7 +36,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="right-profile">
|
<div class="right-profile">
|
||||||
|
gzt_tcdl" @click="handleLogout" title="退出"></i>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,8 @@
|
||||||
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,
|
||||||
|
|
|
||||||
|
|
@ -264,7 +264,13 @@ 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
|
||||||
|
|
|
||||||
|
|
@ -172,7 +172,10 @@ 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
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,11 @@ import java.util.Map;
|
||||||
@RequestMapping(Constants.API_PREFIX + "/bigscreen")
|
@RequestMapping(Constants.API_PREFIX + "/bigscreen")
|
||||||
public class BigScreenController {
|
public class BigScreenController {
|
||||||
|
|
||||||
|
private final BigScreenService bigScreenService;
|
||||||
|
|
||||||
|
public BigScreenController(BigScreenService bigScreenService) {
|
||||||
|
this.bigScreenService = bigScreenService;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* 数据概览统计
|
* 数据概览统计
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -91,6 +91,8 @@ 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());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue