Compare commits
2 Commits
d722c62f49
...
b7df7e350b
Author | SHA1 | Date | |
---|---|---|---|
b7df7e350b | |||
3b51a615ed |
@@ -39,6 +39,11 @@ async function handleOpenChange(open: boolean) {
|
|||||||
<DescriptionsItem label="会议室名称">
|
<DescriptionsItem label="会议室名称">
|
||||||
{{ conferenceSettingsDetail.name }}
|
{{ conferenceSettingsDetail.name }}
|
||||||
</DescriptionsItem>
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="会议室类型">
|
||||||
|
<component
|
||||||
|
:is="renderDict(conferenceSettingsDetail.meetingRoomType,'meeting_room_type')"
|
||||||
|
/>
|
||||||
|
</DescriptionsItem>
|
||||||
<DescriptionsItem label="可容纳人数">
|
<DescriptionsItem label="可容纳人数">
|
||||||
{{ conferenceSettingsDetail.personNumber }}
|
{{ conferenceSettingsDetail.personNumber }}
|
||||||
</DescriptionsItem>
|
</DescriptionsItem>
|
||||||
|
@@ -37,6 +37,16 @@ export const columns: VxeGridProps['columns'] = [
|
|||||||
field: 'name',
|
field: 'name',
|
||||||
minWidth:100,
|
minWidth:100,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '会议室类型',
|
||||||
|
field: 'meetingRoomType',
|
||||||
|
slots: {
|
||||||
|
default: ({row}) => {
|
||||||
|
return renderDict(row.meetingRoomType, 'meeting_room_type');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
minWidth:100,
|
||||||
|
},
|
||||||
// {
|
// {
|
||||||
// title: '会议室地址',
|
// title: '会议室地址',
|
||||||
// field: 'locationName',
|
// field: 'locationName',
|
||||||
@@ -99,7 +109,15 @@ export const modalSchema: FormSchemaGetter = () => [
|
|||||||
fieldName: 'name',
|
fieldName: 'name',
|
||||||
component: 'Input',
|
component: 'Input',
|
||||||
rules: 'required',
|
rules: 'required',
|
||||||
formItemClass: 'col-span-1',
|
},
|
||||||
|
{
|
||||||
|
label: '会议室类型',
|
||||||
|
fieldName: 'meetingRoomType',
|
||||||
|
component: 'Select',
|
||||||
|
componentProps: {
|
||||||
|
options: getDictOptions('meeting_room_type'),
|
||||||
|
},
|
||||||
|
rules: 'selectRequired',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '可容纳人数',
|
label: '可容纳人数',
|
||||||
|
Reference in New Issue
Block a user