refactor(contract-manage): 优化结算货币标签显示
- 结算货币选项中仅显示字典值,去除字典键拼接 - 注释掉样式中 el-form-item 标签的行高设置,避免样式冲突
This commit is contained in:
@@ -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 => ({
|
||||
|
||||
Reference in New Issue
Block a user