refactor(contract-manage): 优化结算货币标签显示

- 结算货币选项中仅显示字典值,去除字典键拼接
- 注释掉样式中 el-form-item 标签的行高设置,避免样式冲突
This commit is contained in:
2026-09-09 10:39:30 +08:00
parent 09f1af9a0a
commit 06f6950434
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1045,7 +1045,7 @@
}
.el-form-item--default .el-form-item__label {
line-height: 14px;
//line-height: 14px;
}
// ============ 必填星号 * 与 label 首行齐平(全局) ============
// label 为 inline-flex,星号 ::before 与文字是两个独立 flex 子项;
+1 -1
View File
@@ -1790,7 +1790,7 @@ export default {
return Array.isArray(data) ? data : data.records || [];
};
this.settlementCurrencyOptions = records(currencyRes).map(item => ({
label: `${item.dictKey} - ${item.dictValue}`,
label: item.dictValue,
value: item.dictKey,
}));
this.settlementModeDictOptions = records(methodRes).map(item => ({