fix(ui): 统一文本中单位和符号的全角格式
- 将“里程(km)”、“耗时(ms)”、“得分率(%)”等标签中的括号改为中文全角括号 - 统一调整“万元”、“天”、“份”等单位的显示格式,使用全角符号增强一致性 - 业务合同管理及项目申请相关表单中字段标签规范化全角字符 - 客户档案页面联系人和收款信息模块使用section-card组件包裹,提高界面一致性 - 部分表格列标签中的单位如“吨”、“方”、“元”使用全角括号修正 - 优化项目申请模块路由跳转逻辑,调整部分弹窗标题显示 - 引入section-card组件用于多个功能区块,加强结构层次感和视觉统一性
This commit is contained in:
@@ -219,7 +219,7 @@ export const option = createCrudOption([
|
||||
minWidth: 120,
|
||||
},
|
||||
{
|
||||
label: '项目资金使用额度(万元)',
|
||||
label: '项目资金使用额度(万元)',
|
||||
prop: 'fundLimit',
|
||||
type: 'number',
|
||||
precision: 2,
|
||||
@@ -228,7 +228,7 @@ export const option = createCrudOption([
|
||||
rules: amountRules('项目资金使用额度'),
|
||||
},
|
||||
{
|
||||
label: '项目应收账款额度(万元)',
|
||||
label: '项目应收账款额度(万元)',
|
||||
prop: 'receivableLimit',
|
||||
type: 'number',
|
||||
precision: 2,
|
||||
@@ -237,7 +237,7 @@ export const option = createCrudOption([
|
||||
rules: amountRules('项目应收账款额度'),
|
||||
},
|
||||
{
|
||||
label: '应收账款回款期限(天)',
|
||||
label: '应收账款回款期限(天)',
|
||||
prop: 'receivableDays',
|
||||
type: 'number',
|
||||
hide: true,
|
||||
@@ -245,7 +245,7 @@ export const option = createCrudOption([
|
||||
rules: [{ required: true, message: '请输入应收账款回款期限', trigger: 'blur' }],
|
||||
},
|
||||
{
|
||||
label: '回款账期(天)',
|
||||
label: '回款账期(天)',
|
||||
prop: 'paymentDays',
|
||||
type: 'number',
|
||||
hide: true,
|
||||
@@ -311,7 +311,7 @@ export const option = createCrudOption([
|
||||
minWidth: 130,
|
||||
},
|
||||
{
|
||||
label: '项目规模(万元)',
|
||||
label: '项目规模(万元)',
|
||||
prop: 'projectScale',
|
||||
type: 'number',
|
||||
precision: 2,
|
||||
@@ -320,7 +320,7 @@ export const option = createCrudOption([
|
||||
rules: [nonNegativeRule('项目规模')],
|
||||
},
|
||||
{
|
||||
label: '预计利润(万元)',
|
||||
label: '预计利润(万元)',
|
||||
prop: 'estimatedProfit',
|
||||
type: 'number',
|
||||
precision: 2,
|
||||
@@ -329,7 +329,7 @@ export const option = createCrudOption([
|
||||
rules: [nonNegativeRule('预计利润')],
|
||||
},
|
||||
{
|
||||
label: '资金需求(万元)',
|
||||
label: '资金需求(万元)',
|
||||
prop: 'fundDemand',
|
||||
type: 'number',
|
||||
precision: 2,
|
||||
|
||||
Reference in New Issue
Block a user