更新页面
This commit is contained in:
@ -9,7 +9,6 @@
|
||||
import { ref, nextTick, provide, onMounted } from "vue";
|
||||
import { useStore } from "vuex";
|
||||
import { getItem } from "@/utils/storage";
|
||||
import { qcckPost, qcckGet, qcckPut, qcckDelete } from "@/api/qcckApi.js";
|
||||
import { generateNewStyle, writeNewStyle } from "@/utils/theme";
|
||||
const store = useStore();
|
||||
generateNewStyle(store.getters.mainColor).then((newStyle) => {
|
||||
|
@ -474,13 +474,28 @@ export const publicRoutes = [
|
||||
icon: "article"
|
||||
},
|
||||
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",
|
||||
name: "mpvGroup",
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/DeploymentDisposal/mpvGroup/index"
|
||||
),
|
||||
component: () =>import("@/views/backOfficeSystem/DeploymentDisposal/mpvGroup/index"),
|
||||
meta: {
|
||||
title: "重点群体管理",
|
||||
icon: "article"
|
||||
@ -489,27 +504,13 @@ export const publicRoutes = [
|
||||
{
|
||||
path: "/autompvGroup",
|
||||
name: "autompvGroup",
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/DeploymentDisposal/autompvGroup/index"
|
||||
),
|
||||
component: () =>import("@/views/backOfficeSystem/DeploymentDisposal/autompvGroup/index"),
|
||||
meta: {
|
||||
title: "重点群体审批",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/mpvPeo",
|
||||
name: "mpvPeo",
|
||||
component: () =>
|
||||
import(
|
||||
"@/views/backOfficeSystem/DeploymentDisposal/mpvPeo/index"
|
||||
),
|
||||
meta: {
|
||||
title: "重点人管理",
|
||||
icon: "article"
|
||||
}
|
||||
}
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -162,12 +162,10 @@
|
||||
|
||||
<!-- 操作 -->
|
||||
<template #controls="{ row }">
|
||||
<el-link size="small" type="success" @click="addEdit('edit', row)"
|
||||
>编辑</el-link
|
||||
>
|
||||
<el-link size="small" type="danger" @click="deleteRow(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>
|
||||
</template>
|
||||
</MyTable>
|
||||
<Pages
|
||||
|
@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<div>审核人重点人审批 : </div>
|
||||
<div>操作栏:先审批(选择审核部门)提交:</div>
|
||||
<div>提交审批后才能审核</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
@ -8,10 +8,9 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import LineEcharts from "../echarts/moreLineEcharts.vue";
|
||||
import { qcckPost } from "@/api/qcckApi.js";
|
||||
import BarHatEcharts from "@/views/home/echarts/barHatEcharts.vue";
|
||||
import * as echarts from "echarts";
|
||||
import { ref, onMounted, watch, defineProps, reactive } from "vue";
|
||||
import { onMounted, reactive } from "vue";
|
||||
const list = reactive({
|
||||
xDate: ['110警情','人力情报','系统采集','民警处置单'],
|
||||
list:[
|
||||
@ -20,8 +19,16 @@ const list = reactive({
|
||||
],
|
||||
})
|
||||
onMounted(() => {
|
||||
getCount()
|
||||
});
|
||||
|
||||
const getCount = () =>{
|
||||
qcckPost({},'/mosty-gsxt/qbcj/getXscjTjForLylx').then(res=>{
|
||||
console.log(res,'=====');
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user