修改冀北现场问题

This commit is contained in:
GGJ
2025-12-12 09:26:56 +08:00
parent b36f765d07
commit 46c55d48ec
38 changed files with 1489 additions and 1370 deletions

View File

@@ -49,6 +49,7 @@ import { planDetailsAudit, sendAlarm } from '@/api/supervision-boot/plan/index'
import { useAdminInfo } from '@/stores/adminInfo'
import { cancelPlanFormData } from '@/api/supervision-boot/plan/index'
//获取登陆用户姓名和部门
const VITE_FLAG = import.meta.env.VITE_NAME == 'jibei'
const adminInfo = useAdminInfo()
defineOptions({
name: 'plan'
@@ -71,9 +72,13 @@ const tableStore = new TableStore({
// publicHeight: 65,
method: 'POST',
column: [
{ title: '序号', width: 80,formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
} },
{
title: '序号',
width: 80,
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
},
{
field: 'province',
title: '所属省份',
@@ -270,9 +275,9 @@ const tableStore = new TableStore({
},
click: row => {
router.push({
name: 'supervision/supervision/manage',
name: 'supervision/supervision/manage' + (VITE_FLAG ? '4' : ''),
query: {
type: 1
type: 4
}
})
}