修改冀北现场问题
This commit is contained in:
@@ -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
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user