style(contract-manage): 优化合同管理标签样式和表单布局

- 为合同格式、法人章和一式字段添加统一的标签宽度72px
- 合同管理弹窗标签支持长文字自动换行,提升显示效果
- Vite配置中新增本地开发服务器端口设置及API代理规则调整,便于本地联调接口
This commit is contained in:
2026-08-14 12:16:50 +08:00
parent 2fae0772fe
commit a69a2efe45
3 changed files with 24 additions and 13 deletions
+3
View File
@@ -386,6 +386,7 @@ export const option = createCrudOption([
{
label: '合同格式',
prop: 'contractFormat',
labelWidth: '72px',
type: 'select',
dicData: [
{ label: '电子合同', value: '电子合同' },
@@ -399,6 +400,7 @@ export const option = createCrudOption([
{
label: '是否需要加盖法人章',
prop: 'legalSealFlag',
labelWidth: '72px',
type: 'select',
dicData: [
{ label: '否', value: 0 },
@@ -413,6 +415,7 @@ export const option = createCrudOption([
{
label: '一式',
prop: 'copyCount',
labelWidth: '72px',
formslot: true,
hide: true,
order: 60,
+8
View File
@@ -18,3 +18,11 @@ export default {
},
};
</script>
<style>
/* 合同管理弹窗:长 label(如"是否需要加盖法人章")在标签列内自动换行 */
.el-dialog .el-form-item__label {
white-space: normal;
line-height: 1.2;
}
</style>