会议管理

This commit is contained in:
FLL
2025-07-03 17:49:23 +08:00
parent 4bf741f63d
commit 3827a13cbd
17 changed files with 357 additions and 62 deletions

View File

@@ -14,6 +14,7 @@ export const querySchema: FormSchemaGetter = () => [
{
component: 'Select',
componentProps: {
options: getDictOptions('pro_processing_status'),
},
fieldName: 'state',
label: '处理状态',
@@ -30,60 +31,72 @@ export const columns: VxeGridProps['columns'] = [
return (rowIndex + 1).toString();
},
},
width: 'auto'
},
{
title: '养护名称',
field: 'maintainName',
width: 'auto'
},
{
title: '小区id',
field: 'communityId',
},
{
title: '建筑id',
field: 'buildingId',
},
{
title: '楼层id',
field: 'floorId',
title: '服务地点(房间id',
field: 'roomId',
width: 'auto'
},
{
title: '服务类型',
field: 'serveType',
slots: {
default: ({ row }) => {
return renderDict(row.serveType, 'pro_service_type');
},
},
width: 'auto'
},
{
title: '养护周期类型',
field: 'periodType',
slots: {
default: ({ row }) => {
// 可选从DictEnum中获取 DictEnum.WY_TIME_UNIT 便于维护
return renderDict(row.periodType, 'wy_time_unit');
},
},
width: 'auto'
},
{
title: '养护周期频次',
field: 'periodFrequency',
width: 'auto'
},
{
title: '订单id',
title: '关联订单',
field: 'orderId',
width: 'auto'
},
{
title: '计划执行时间',
field: 'startTime',
width: 'auto'
},
{
title: '计划完成时间',
field: 'endTime',
width: 'auto'
},
{
title: '巡检结果',
field: 'inspectResult',
slots: {
default: ({ row }) => {
return renderDict(row.inspectResult, 'pro_inspection_results');
},
},
width: 'auto'
},
{
title: '处理措施',
field: 'measure',
width: 'auto'
},
{
title: '客户评分',
@@ -96,15 +109,22 @@ export const columns: VxeGridProps['columns'] = [
});
},
},
width:200
width: 'auto'
},
{
title: '客户反馈',
field: 'customerAdvice',
width: 'auto'
},
{
title: '处理状态',
field: 'state',
slots: {
default: ({ row }) => {
return renderDict(row.state, 'pro_processing_status');
},
},
width: 'auto'
},
{
field: 'action',
@@ -130,32 +150,24 @@ export const modalSchema: FormSchemaGetter = () => [
fieldName: 'maintainName',
component: 'Input',
rules: 'required',
labelWidth:100
},
{
label: '小区id',
label: '服务地点',
fieldName: 'communityId',
component: 'Input',
rules: 'required',
},
{
label: '建筑id',
fieldName: 'buildingId',
component: 'Input',
rules: 'required',
},
{
label: '楼层id',
fieldName: 'floorId',
component: 'Input',
rules: 'required',
labelWidth:100
},
{
label: '服务类型',
fieldName: 'serveType',
component: 'Select',
componentProps: {
options: getDictOptions('pro_service_type'),
},
rules: 'selectRequired',
labelWidth:100
},
{
label: '养护周期类型',
@@ -166,18 +178,21 @@ export const modalSchema: FormSchemaGetter = () => [
options: getDictOptions('wy_time_unit'),
},
rules: 'selectRequired',
labelWidth:100
},
{
label: '养护周期频次',
fieldName: 'periodFrequency',
component: 'Input',
rules: 'required',
labelWidth:100
},
{
label: '订单id',
label: '关联订单',
fieldName: 'orderId',
component: 'Input',
rules: 'required',
labelWidth:100
},
{
label: '计划执行时间',
@@ -189,6 +204,7 @@ export const modalSchema: FormSchemaGetter = () => [
valueFormat: 'YYYY-MM-DD HH:mm:ss',
},
rules: 'required',
labelWidth:100
},
{
label: '计划完成时间',
@@ -200,16 +216,24 @@ export const modalSchema: FormSchemaGetter = () => [
valueFormat: 'YYYY-MM-DD HH:mm:ss',
},
rules: 'required',
labelWidth:100
},
{
label: '巡检结果',
fieldName: 'inspectResult',
component: 'Input',
component: 'Select',
componentProps: {
options: getDictOptions('pro_inspection_results'),
},
rules: 'selectRequired',
labelWidth:100
},
{
label: '处理措施',
fieldName: 'measure',
component: 'Input',
rules: 'required',
labelWidth:100
},
{
label: '客户评分',
@@ -222,17 +246,22 @@ export const modalSchema: FormSchemaGetter = () => [
defaultValue: 0
},
rules: 'required',
labelWidth:100
},
{
label: '客户反馈',
fieldName: 'customerAdvice',
component: 'Textarea',
labelWidth:100
},
{
label: '处理状态',
fieldName: 'state',
component: 'Select',
componentProps: {
options: getDictOptions('pro_processing_status'),
},
rules: 'selectRequired',
labelWidth:100
},
];