fix: 修改大屏不能显示bug、修改大屏字体、替换系统logo
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
fyy
2025-07-24 16:09:54 +08:00
parent 85e021b5ac
commit 007bda30bc
13 changed files with 1365 additions and 1176 deletions

View File

@@ -2,9 +2,9 @@ import type { FormSchemaGetter } from '#/adapter/form';
import type { VxeGridProps } from '#/adapter/vxe-table';
import { getDictOptions } from '#/utils/dict';
import { renderDict } from '#/utils/render';
import {h} from "vue";
import {Rate} from "ant-design-vue";
import {rentalOrderList} from "#/api/property/rentalOrder";
import { h } from 'vue';
import { Rate } from 'ant-design-vue';
import { rentalOrderList } from '#/api/property/rentalOrder';
export const querySchema: FormSchemaGetter = () => [
{
@@ -32,12 +32,12 @@ export const columns: VxeGridProps['columns'] = [
return (rowIndex + 1).toString();
},
},
minWidth: '120'
minWidth: '120',
},
{
title: '养护名称',
field: 'maintainName',
minWidth: '120'
minWidth: '120',
},
// {
// title: '服务地点',
@@ -52,7 +52,7 @@ export const columns: VxeGridProps['columns'] = [
return renderDict(row.serveType, 'pro_service_type');
},
},
minWidth: '120'
minWidth: '120',
},
{
title: '养护周期类型',
@@ -62,27 +62,27 @@ export const columns: VxeGridProps['columns'] = [
return renderDict(row.periodType, 'wy_time_unit');
},
},
minWidth: '120'
minWidth: '120',
},
{
title: '养护周期频次',
field: 'periodFrequency',
minWidth: '120'
minWidth: '120',
},
{
title: '关联订单',
field: 'orderId',
minWidth: '120'
minWidth: '120',
},
{
title: '计划执行时间',
field: 'startTime',
minWidth: '120'
minWidth: '120',
},
{
title: '计划完成时间',
field: 'endTime',
minWidth: '120'
minWidth: '120',
},
{
title: '巡检结果',
@@ -92,12 +92,12 @@ export const columns: VxeGridProps['columns'] = [
return renderDict(row.inspectResult, 'pro_inspection_results');
},
},
minWidth: '120'
minWidth: '120',
},
{
title: '处理措施',
field: 'measure',
minWidth: '120'
minWidth: '120',
},
{
title: '客户评分',
@@ -110,12 +110,12 @@ export const columns: VxeGridProps['columns'] = [
});
},
},
minWidth: '150'
minWidth: '150',
},
{
title: '客户反馈',
field: 'customerAdvice',
minWidth: '120'
minWidth: '120',
},
{
title: '处理状态',
@@ -125,7 +125,7 @@ export const columns: VxeGridProps['columns'] = [
return renderDict(row.state, 'pro_processing_status');
},
},
minWidth: '120'
minWidth: '120',
},
{
field: 'action',
@@ -151,7 +151,7 @@ export const modalSchema: FormSchemaGetter = () => [
fieldName: 'maintainName',
component: 'Input',
rules: 'required',
labelWidth:100
labelWidth: 100,
},
{
label: '服务地点',
@@ -159,7 +159,7 @@ export const modalSchema: FormSchemaGetter = () => [
component: 'TreeSelect',
defaultValue: undefined,
rules: 'required',
labelWidth:100
labelWidth: 100,
},
{
label: '服务类型',
@@ -169,7 +169,7 @@ export const modalSchema: FormSchemaGetter = () => [
options: getDictOptions('pro_service_type'),
},
rules: 'selectRequired',
labelWidth:100
labelWidth: 100,
},
{
label: '养护周期类型',
@@ -180,14 +180,14 @@ export const modalSchema: FormSchemaGetter = () => [
options: getDictOptions('wy_time_unit'),
},
rules: 'selectRequired',
labelWidth:100
labelWidth: 100,
},
{
label: '养护周期频次',
fieldName: 'periodFrequency',
component: 'Input',
rules: 'required',
labelWidth:100
labelWidth: 100,
},
{
label: '关联订单',
@@ -200,7 +200,7 @@ export const modalSchema: FormSchemaGetter = () => [
valueField: 'id',
},
rules: 'required',
labelWidth:100
labelWidth: 100,
},
{
label: '计划执行时间',
@@ -212,7 +212,7 @@ export const modalSchema: FormSchemaGetter = () => [
valueFormat: 'YYYY-MM-DD HH:mm:ss',
},
rules: 'required',
labelWidth:100
labelWidth: 100,
},
{
label: '计划完成时间',
@@ -224,7 +224,7 @@ export const modalSchema: FormSchemaGetter = () => [
valueFormat: 'YYYY-MM-DD HH:mm:ss',
},
rules: 'required',
labelWidth:100
labelWidth: 100,
},
{
label: '巡检结果',
@@ -234,14 +234,14 @@ export const modalSchema: FormSchemaGetter = () => [
options: getDictOptions('pro_inspection_results'),
},
rules: 'selectRequired',
labelWidth:100
labelWidth: 100,
},
{
label: '处理措施',
fieldName: 'measure',
component: 'Textarea',
rules: 'required',
labelWidth:100
labelWidth: 100,
},
{
label: '客户评分',
@@ -251,16 +251,16 @@ export const modalSchema: FormSchemaGetter = () => [
allowHalf: false,
count: 5,
tooltips: ['1星', '2星', '3星', '4星', '5星'],
defaultValue: 0
defaultValue: 0,
},
rules: 'required',
labelWidth:100
labelWidth: 100,
},
{
label: '客户反馈',
fieldName: 'customerAdvice',
component: 'Textarea',
labelWidth:100
labelWidth: 100,
},
{
label: '处理状态',
@@ -270,6 +270,6 @@ export const modalSchema: FormSchemaGetter = () => [
options: getDictOptions('pro_processing_status'),
},
rules: 'selectRequired',
labelWidth:100
labelWidth: 100,
},
];