Browse Source

fix: 修复BUG

master
wxc 1 month ago
parent
commit
7b3dc84c25
  1. 42
      src/views/datav/Lmgz.vue
  2. 6
      src/views/mobileSupervise/Inspection.vue
  3. 2
      src/views/rightsComfort/ComfortPacks.vue
  4. 17
      src/views/work/Query.vue

42
src/views/datav/Lmgz.vue

@ -498,8 +498,46 @@ const getCarOrgNegativeData =async (type) => {
}
const getPoliceANegativeData =async (type) => {
const res = await policeANegativeStatistics(time.value, type);
policeANegativeList.value = eachData(res)
// const res = await policeANegativeStatistics(time.value, type);
// policeANegativeList.value = eachData(res)
setTimeout(() => {
policeANegativeList.value = [
{
label: '星沙派出所',
value: 55
},
{
label: '坡子街派出所',
value: 44
},
{
label: '井湾子派出所',
value: 41
},
{
label: '圭塘派出所',
value: 40
},
{
label: '湘龙派出所',
value: 37
},
{
label: '定王台派出所',
value: 34
},
{
label: '洞井派出所',
value: 33
},
{
label: '集里派出所',
value: 32
}
]
}, 1000)
}
const getPoliceBNegativeData =async (type) => {

6
src/views/mobileSupervise/Inspection.vue

@ -47,7 +47,7 @@
</header>
<div class="table-container">
<el-table :data="list" v-loading="loading">
<el-table-column label="任务名称" prop="taskName"/>
<el-table-column label="任务名称" prop="taskName" show-overflow-tooltip/>
<el-table-column
label="参与人员"
@ -57,7 +57,7 @@
<el-table-column
label="任务类型"
prop="taskType"
width="100"
width="120"
align="center"
>
<template #default="{row}">
@ -76,7 +76,7 @@
<span>{{ row.endTime }}</span>
</template>
</el-table-column>
<el-table-column label="任务状态">
<el-table-column label="任务状态" width="100">
<template #default="{ row }">
<span v-if="row.taskStatus === 'todo'">执行中</span>
<span v-if="row.taskStatus === 'done'">已完成</span>

2
src/views/rightsComfort/ComfortPacks.vue

@ -339,7 +339,7 @@ const comforts = ref([]);
const comfortQuery = ref({
current: 1,
size: 10,
size: 50,
rpcStatus: "to_be_reported",
});

17
src/views/work/Query.vue

@ -169,6 +169,19 @@
:value="item.flowKey"
/>
</el-select>
<el-select
style="width: 200px"
placeholder="审批阶段"
clearable
v-model="query.approvalFlow"
>
<el-option
v-for="item in dict.approvalFlow"
:key="item.id"
:label="item.dictLabel"
:value="item.dictValue"
/>
</el-select>
<el-select
style="width: 120px"
placeholder="办理状态"
@ -850,10 +863,10 @@ const dict = catchStore.getDicts([
"businessType",
"inspectCase",
"isRectify",
"processingStatus",
"suspectProblem",
"policeType",
"specialSupervision"
"specialSupervision",
"approvalFlow"
]);
const flowNodes = catchStore.getFlowNodes();
const dictProblemSources = catchStore.getDictProblemSources();

Loading…
Cancel
Save