3bb0fddcca
- transportCapacity/driver、vehicle、ship 页的「全部/30天内到期/已到期」筛选标签改为靠右对齐 - 统一使用 #search-menu 插槽替代 #expireStatus-search,标签移至搜索按钮前 - 标签容器删除宽度限制,增加 order:-1 和 margin-right:12px,保证标签和按钮为一体 - transportCapacity/vehicle 和 ship 的 expireStatus 列 search 改为 false,避免多余输入框出现 - transportCapacity/vehicle、ship 的 searchIndex 提升至6,避免搜索条件折叠,标签默认展开 - 暂用样式更改保证标签与搜索按钮间距和垂直对齐 - temporary-credit-limit 弹窗新增 dialogCustomClass,实现弹窗label固定六字宽度并自动换行 - element-ui.scss 新增临时额度弹窗 label 样式,修改label宽度、换行、对齐,提升可读性 - 调整多处搜索表单内 label 宽度由160px变为88px,优化表单紧凑度 - 多处文本域的最小行数 minRows 统一由较高数值改为2,改善表单布局和输入体验 - 更新 vite.config.mjs 开发服务器端口及代理配置,切换至本地测试环境 - waybill-import-dialog.vue 中修正文本域 autosize 最小行数为2,更符合表单设计规范 - 修改业务页 contract-manage.vue 菜单宽度由245px调整至252px,优化界面布局
99 lines
2.1 KiB
JavaScript
99 lines
2.1 KiB
JavaScript
export default {
|
|
height: 'auto',
|
|
calcHeight: 50,
|
|
tip: false,
|
|
searchShow: true,
|
|
searchMenuSpan: 24,
|
|
searchIcon: true,
|
|
searchIndex: 8,
|
|
searchMenuPosition: 'right',
|
|
border: true,
|
|
index: true,
|
|
viewBtn: true,
|
|
grid: true,
|
|
selection: true,
|
|
labelWidth: 'auto',
|
|
searchLabelWidth: 88,
|
|
menuWidth: 180,
|
|
dialogWidth: 500,
|
|
dialogClickModal: false,
|
|
column: [
|
|
{
|
|
label: '数据源',
|
|
labelTip: '数据源管理配置的数据源列表',
|
|
prop: 'datasourceId',
|
|
hide: true,
|
|
editDisplay: false,
|
|
viewDisplay: false,
|
|
span: 24,
|
|
type: 'select',
|
|
dicUrl: '/blade-develop/datasource/select',
|
|
props: {
|
|
label: 'name',
|
|
value: 'id',
|
|
},
|
|
rules: [
|
|
{
|
|
required: true,
|
|
message: '请选择数据源',
|
|
trigger: 'blur',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: '物理表名',
|
|
labelTip: '从数据源列表选择的物理表名',
|
|
filterable: true,
|
|
prop: 'modelTable',
|
|
type: 'tree',
|
|
span: 24,
|
|
hide: true,
|
|
editDisplay: false,
|
|
viewDisplay: false,
|
|
dicData: [],
|
|
props: {
|
|
label: 'comment',
|
|
value: 'name',
|
|
},
|
|
rules: [
|
|
{
|
|
required: true,
|
|
message: '请输入数据库表名',
|
|
trigger: 'blur',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: '表单名称',
|
|
labelTip: '用于定义本配置的代表名称,默认为数据库表说明',
|
|
prop: 'name',
|
|
gridRow: true,
|
|
search: true,
|
|
span: 24,
|
|
rules: [
|
|
{
|
|
required: true,
|
|
message: '请输入表单名称',
|
|
trigger: 'blur',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: '关联表名',
|
|
labelTip: '用于定义本配置的代表编号,默认为数据库表名,在代码快速生成时会关联匹配',
|
|
prop: 'code',
|
|
gridRow: true,
|
|
search: true,
|
|
disabled: true,
|
|
span: 24,
|
|
rules: [
|
|
{
|
|
required: true,
|
|
message: '请输入表单编号',
|
|
trigger: 'blur',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|