style(transportCapacity): 调整到期筛选标签位置和样式,统一标签展示逻辑

- 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,优化界面布局
This commit is contained in:
2026-08-14 00:33:32 +08:00
parent 27672dfaff
commit 3bb0fddcca
44 changed files with 141 additions and 76 deletions
+1
View File
@@ -495,6 +495,7 @@ export const option = createCrudOption([
prop: 'remark',
type: 'textarea',
span: 24,
minRows: 2,
hide: true,
order: 40,
maxlength: 2000,
+2 -2
View File
@@ -120,7 +120,7 @@ export const option = {
label: '备注',
prop: 'remark',
type: 'textarea',
minRows: 3,
minRows: 2,
span: 24,
order: 360,
minWidth: 180,
@@ -175,7 +175,7 @@ export const option = {
label: '备注',
prop: 'basicRemark',
type: 'textarea',
minRows: 3,
minRows: 2,
span: 24,
order: 315,
minWidth: 180,
@@ -87,6 +87,7 @@ export const config = {
};
export const option = {
dialogCustomClass: 'temporary-credit-limit-dialog',
...createCrudOption([
{
label: '申请单号',
@@ -258,6 +259,7 @@ export const option = {
prop: 'remark',
type: 'textarea',
span: 24,
minRows: 2,
hide: true,
maxlength: 200,
showWordLimit: true,
+3 -3
View File
@@ -416,7 +416,7 @@ export const option = {
label: '备注',
prop: 'remark',
type: 'textarea',
minRows: 4,
minRows: 2,
span: 24,
order: 330,
minWidth: 180,
@@ -572,7 +572,7 @@ export const option = {
prop: 'goodsJson',
type: 'textarea',
formslot: true,
minRows: 5,
minRows: 2,
span: 24,
order: 270,
hide: true,
@@ -593,7 +593,7 @@ export const option = {
prop: 'attachmentsJson',
type: 'textarea',
formslot: true,
minRows: 3,
minRows: 2,
span: 24,
order: 260,
hide: true,
+5 -5
View File
@@ -570,7 +570,7 @@ export const option = {
label: '备注',
prop: 'remark',
type: 'textarea',
minRows: 4,
minRows: 2,
span: 24,
order: 810,
minWidth: 180,
@@ -698,7 +698,7 @@ export const option = {
label: '货物信息',
prop: 'goodsJson',
type: 'textarea',
minRows: 5,
minRows: 2,
span: 24,
hide: true,
display: false,
@@ -710,7 +710,7 @@ export const option = {
label: '承运信息',
prop: 'carrierJson',
type: 'textarea',
minRows: 4,
minRows: 2,
span: 24,
hide: true,
display: false,
@@ -722,7 +722,7 @@ export const option = {
label: '过程配置',
prop: 'processJson',
type: 'textarea',
minRows: 4,
minRows: 2,
span: 24,
hide: true,
display: false,
@@ -734,7 +734,7 @@ export const option = {
label: '运费信息',
prop: 'freightJson',
type: 'textarea',
minRows: 4,
minRows: 2,
span: 24,
hide: true,
display: false,