Commit 6fab0c74 by 王宝涛

feat(pybg): 更新排液表格配置和数据模型

- 将搜索表单中的'班组'字段替换为'车辆号码'字段,并配置API数据源
- 添加排液人字段到搜索表单,使用用户选择组件
- 重新排列搜索表单项顺序,调整工作开始时间和结束时间位置
- 移除表格中多余的处理辆数和班组列配置
- 更新工作流程权限配置中的字段映射关系
- 修改接口模型参数,将banzu替换为cphm并调整字段顺序
- 为排液人字段添加默认值配置并移除静态选项配置
parent e9942b22
...@@ -4,17 +4,17 @@ import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel'; ...@@ -4,17 +4,17 @@ import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
* @description: MesCheliangBg分页参数 模型 * @description: MesCheliangBg分页参数 模型
*/ */
export interface MesCheliangBgPageParams extends BasicPageParams { export interface MesCheliangBgPageParams extends BasicPageParams {
banzu: string; cphm: string;
gzr: string;
gzkssj: string; gzkssj: string;
cllx: string; cllx: string;
gzr: string; gzxm: string;
gzjssj: string; gzjssj: string;
gzxm: string;
} }
/** /**
...@@ -38,8 +38,6 @@ export interface MesCheliangBgPageModel { ...@@ -38,8 +38,6 @@ export interface MesCheliangBgPageModel {
gzjssj: string; gzjssj: string;
clls: string; clls: string;
banzu: string;
} }
/** /**
......
...@@ -39,14 +39,15 @@ export const permissionList = [ ...@@ -39,14 +39,15 @@ export const permissionList = [
disabled: false, disabled: false,
isSaveTable: false, isSaveTable: false,
tableName: '', tableName: '',
fieldName: '班组', fieldName: '排液人',
fieldId: 'banzu', fieldId: 'gzr',
isSubTable: false, isSubTable: false,
showChildren: true, showChildren: true,
type: 'radio', type: 'user',
key: '362f762c817749469f47af55832b3363', key: 'b8e63f39708d46cdb64fd9b5e9079dd4',
children: [], children: [],
options: {}, options: {},
defaultValue: '',
}, },
{ {
required: false, required: false,
...@@ -105,15 +106,14 @@ export const permissionList = [ ...@@ -105,15 +106,14 @@ export const permissionList = [
disabled: false, disabled: false,
isSaveTable: false, isSaveTable: false,
tableName: '', tableName: '',
fieldName: '排液人', fieldName: '工作项目',
fieldId: 'gzr', fieldId: 'gzxm',
isSubTable: false, isSubTable: false,
showChildren: true, showChildren: true,
type: 'user', type: 'associate-popup',
key: 'b8e63f39708d46cdb64fd9b5e9079dd4', key: '16549fa420014b3f871e74e4274df5b3',
children: [], children: [],
options: {}, options: {},
defaultValue: '',
}, },
{ {
required: false, required: false,
...@@ -156,22 +156,6 @@ export const permissionList = [ ...@@ -156,22 +156,6 @@ export const permissionList = [
disabled: false, disabled: false,
isSaveTable: false, isSaveTable: false,
tableName: '', tableName: '',
fieldName: '工作项目',
fieldId: 'gzxm',
isSubTable: false,
showChildren: true,
type: 'associate-popup',
key: '16549fa420014b3f871e74e4274df5b3',
children: [],
options: {},
},
{
required: false,
view: true,
edit: true,
disabled: false,
isSaveTable: false,
tableName: '',
fieldName: '处理辆数', fieldName: '处理辆数',
fieldId: 'clls', fieldId: 'clls',
isSubTable: false, isSubTable: false,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment