更新页面

This commit is contained in:
2025-07-10 20:37:45 +08:00
parent 529089b73c
commit 2f443e33bd
5 changed files with 61 additions and 41 deletions

View File

@ -9,7 +9,6 @@
import { ref, nextTick, provide, onMounted } from "vue"; import { ref, nextTick, provide, onMounted } from "vue";
import { useStore } from "vuex"; import { useStore } from "vuex";
import { getItem } from "@/utils/storage"; import { getItem } from "@/utils/storage";
import { qcckPost, qcckGet, qcckPut, qcckDelete } from "@/api/qcckApi.js";
import { generateNewStyle, writeNewStyle } from "@/utils/theme"; import { generateNewStyle, writeNewStyle } from "@/utils/theme";
const store = useStore(); const store = useStore();
generateNewStyle(store.getters.mainColor).then((newStyle) => { generateNewStyle(store.getters.mainColor).then((newStyle) => {

View File

@ -474,13 +474,28 @@ export const publicRoutes = [
icon: "article" icon: "article"
}, },
children: [ children: [
{
path: "/mpvPeo",
name: "mpvPeo",
component: () =>import("@/views/backOfficeSystem/DeploymentDisposal/mpvPeo/index"),
meta: {
title: "重点人管理",
icon: "article"
}
},
{
path: "/mpvPeoSh",
name: "mpvPeoSh",
component: () =>import("@/views/backOfficeSystem/DeploymentDisposal/mpvPeoSh/index"),
meta: {
title: "重点人审批",
icon: "article"
}
},
{ {
path: "/mpvGroup", path: "/mpvGroup",
name: "mpvGroup", name: "mpvGroup",
component: () => component: () =>import("@/views/backOfficeSystem/DeploymentDisposal/mpvGroup/index"),
import(
"@/views/backOfficeSystem/DeploymentDisposal/mpvGroup/index"
),
meta: { meta: {
title: "重点群体管理", title: "重点群体管理",
icon: "article" icon: "article"
@ -489,27 +504,13 @@ export const publicRoutes = [
{ {
path: "/autompvGroup", path: "/autompvGroup",
name: "autompvGroup", name: "autompvGroup",
component: () => component: () =>import("@/views/backOfficeSystem/DeploymentDisposal/autompvGroup/index"),
import(
"@/views/backOfficeSystem/DeploymentDisposal/autompvGroup/index"
),
meta: { meta: {
title: "重点群体审批", title: "重点群体审批",
icon: "article" icon: "article"
} }
}, },
{
path: "/mpvPeo",
name: "mpvPeo",
component: () =>
import(
"@/views/backOfficeSystem/DeploymentDisposal/mpvPeo/index"
),
meta: {
title: "重点人管理",
icon: "article"
}
}
] ]
}, },
{ {

View File

@ -162,12 +162,10 @@
<!-- 操作 --> <!-- 操作 -->
<template #controls="{ row }"> <template #controls="{ row }">
<el-link size="small" type="success" @click="addEdit('edit', row)" <!-- 送审后数据到审批中 -->
>编辑</el-link <el-link size="small" type="success" >送审</el-link>
> <el-link size="small" type="success" @click="addEdit('edit', row)" >编辑</el-link>
<el-link size="small" type="danger" @click="deleteRow(row)" <el-link size="small" type="danger" @click="deleteRow(row)">删除</el-link>
>删除</el-link
>
</template> </template>
</MyTable> </MyTable>
<Pages <Pages

View File

@ -0,0 +1,15 @@
<template>
<div>审核人重点人审批 : </div>
<div>操作栏先审批选择审核部门提交</div>
<div>提交审批后才能审核</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -8,10 +8,9 @@
</template> </template>
<script setup> <script setup>
import LineEcharts from "../echarts/moreLineEcharts.vue"; import { qcckPost } from "@/api/qcckApi.js";
import BarHatEcharts from "@/views/home/echarts/barHatEcharts.vue"; import BarHatEcharts from "@/views/home/echarts/barHatEcharts.vue";
import * as echarts from "echarts"; import { onMounted, reactive } from "vue";
import { ref, onMounted, watch, defineProps, reactive } from "vue";
const list = reactive({ const list = reactive({
xDate: ['110警情','人力情报','系统采集','民警处置单'], xDate: ['110警情','人力情报','系统采集','民警处置单'],
list:[ list:[
@ -20,8 +19,16 @@ const list = reactive({
], ],
}) })
onMounted(() => { onMounted(() => {
getCount()
}); });
const getCount = () =>{
qcckPost({},'/mosty-gsxt/qbcj/getXscjTjForLylx').then(res=>{
console.log(res,'=====');
})
}
</script> </script>