更新页面

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

@ -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

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>
<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>