fix(ui): 统一文本中单位和符号的全角格式
- 将“里程(km)”、“耗时(ms)”、“得分率(%)”等标签中的括号改为中文全角括号 - 统一调整“万元”、“天”、“份”等单位的显示格式,使用全角符号增强一致性 - 业务合同管理及项目申请相关表单中字段标签规范化全角字符 - 客户档案页面联系人和收款信息模块使用section-card组件包裹,提高界面一致性 - 部分表格列标签中的单位如“吨”、“方”、“元”使用全角括号修正 - 优化项目申请模块路由跳转逻辑,调整部分弹窗标题显示 - 引入section-card组件用于多个功能区块,加强结构层次感和视觉统一性
This commit is contained in:
@@ -287,8 +287,8 @@
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="得分率(%)" required>
|
||||
<div class="range-input standard-range-input">
|
||||
<el-form-item label="得分率(%)" required>
|
||||
<div class="range-input standard-range-input score-rate-range">
|
||||
<el-input
|
||||
v-model="standardForm.scoreRateLower"
|
||||
inputmode="numeric"
|
||||
@@ -316,22 +316,21 @@
|
||||
</el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="额度增加" required>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="额度增加(万元)" required>
|
||||
<el-input
|
||||
v-model="standardForm.creditLimitIncrease"
|
||||
inputmode="decimal"
|
||||
@input="value => handleStandardNumberInput('creditLimitIncrease', value, 2)"
|
||||
>
|
||||
<template #suffix>万元</template>
|
||||
</el-input>
|
||||
class="credit-increase-input"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="12">
|
||||
<el-form-item label="最大资金使用额度(万元)" required>
|
||||
<div class="range-input standard-range-input">
|
||||
<el-form-item label="最大资金使用额度(万元)" required>
|
||||
<div class="range-input standard-range-input credit-limit-range">
|
||||
<el-input
|
||||
v-model="standardForm.creditLimitLower"
|
||||
inputmode="decimal"
|
||||
@@ -1214,6 +1213,24 @@ export default {
|
||||
}
|
||||
}
|
||||
|
||||
.credit-limit-range {
|
||||
width: 520px;
|
||||
max-width: 100%;
|
||||
|
||||
:deep(.el-input) {
|
||||
width: 250px;
|
||||
flex: none;
|
||||
}
|
||||
}
|
||||
|
||||
.score-rate-range {
|
||||
width: 250px;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.credit-increase-input {
|
||||
}
|
||||
|
||||
.score-unit {
|
||||
margin-left: 8px;
|
||||
color: #606266;
|
||||
|
||||
Reference in New Issue
Block a user