diff --git a/src/api/dms/dmsBillsInspectInstance/types.ts b/src/api/dms/dmsBillsInspectInstance/types.ts index 3d95540..3e31edf 100644 --- a/src/api/dms/dmsBillsInspectInstance/types.ts +++ b/src/api/dms/dmsBillsInspectInstance/types.ts @@ -59,8 +59,9 @@ export interface DmsBillsInspectInstanceVO { */ remark: string; -} + routeName: string; +} export interface DmsBillsInspectInstanceForm extends BaseEntity { /** * 主键标识 @@ -127,6 +128,8 @@ export interface DmsBillsInspectInstanceForm extends BaseEntity { */ status?: string; + routeName?: string; + } export interface DmsBillsInspectInstanceQuery extends PageQuery { @@ -186,6 +189,8 @@ export interface DmsBillsInspectInstanceQuery extends PageQuery { */ inspectStatus?: string; + routeName?: string; + /** * 日期范围参数 */ diff --git a/src/views/dms/dmsBaseMaintStation/index.vue b/src/views/dms/dmsBaseMaintStation/index.vue index 24cc275..fddb189 100644 --- a/src/views/dms/dmsBaseMaintStation/index.vue +++ b/src/views/dms/dmsBaseMaintStation/index.vue @@ -56,7 +56,7 @@ - + @@ -178,7 +178,7 @@ const columns = ref([ { key: 0, label: `主键标识`, visible: false }, { key: 1, label: `租户编号`, visible: false }, { key: 2, label: `设备类型`, visible: true }, - { key: 3, label: `保养标准ID`, visible: true }, + { key: 3, label: `保养标准编号`, visible: true }, { key: 4, label: `部位编号`, visible: true }, { key: 5, label: `部位名称`, visible: true }, { key: 6, label: `激活标识`, visible: true }, @@ -198,6 +198,7 @@ const initFormData: DmsBaseMaintStationForm = { maintStationName: undefined, activeFlag: '1', remark: undefined, + maintStandardCode: undefined, maintProjectIds: [] } const data = reactive>({ @@ -211,6 +212,7 @@ const data = reactive