会议室管理

This commit is contained in:
XaoLi717 2024-11-12 10:01:20 +08:00
parent 92f6bcd1b8
commit 4feb1329d2
3 changed files with 26 additions and 2 deletions

View File

@ -760,6 +760,30 @@ const remainingRouter: AppRouteRecordRaw[] = [
activeMenu: '/Home/hsgl/Hsglflow'
}
},
{
path: 'hygl/HyglCreate',
component: () => import('@/views/Home/hygl/HyglCreate.vue'),
name: 'HyglCreate',
meta: {
noCache: true,
hidden: true,
canTo: true,
title: '发起会议管理流程',
activeMenu: '/Home/hygl/Hyglflow'
}
},
{
path: 'hygl/HyglDetail',
component: () => import('@/views/Home/hygl/HyglDetail.vue'),
name: 'HyglDetail',
meta: {
noCache: true,
hidden: true,
canTo: true,
title: '查看会议管理流程',
activeMenu: '/Home/hygl/Hyglflow'
}
},
]
},
]

View File

@ -28,7 +28,7 @@
</el-col>
<el-col :span="12">
<el-form-item label="使用状态" prop="roomStatus">
<el-select v-model="formData.roomStatus" placeholder="请选择会议室类型">
<el-select v-model="formData.roomStatus" placeholder="请选择会议室使用状态">
<el-option
v-for="dict in getIntDictOptions(DICT_TYPE.HSGL_STATUS)"
:key="dict.value"

View File

@ -612,7 +612,7 @@ import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
import { dateFormatter } from '@/utils/formatTime'
import download from '@/utils/download'
import { HyglApi, HyglVO } from '@/api/home/hygl'
import HyglForm from './HyglForm.vue'
import HyglForm from './HyglDetail.vue'
/** 会议管理 列表 */
defineOptions({ name: 'Hygl' })