diff --git a/src/views/audit/rechargeAudit.vue b/src/views/audit/rechargeAudit.vue
index 830aa38..b150abc 100644
--- a/src/views/audit/rechargeAudit.vue
+++ b/src/views/audit/rechargeAudit.vue
@@ -39,14 +39,16 @@
今
昨
近7天
+ 重置
+ 查询
+
-
-
- 重置
- 查询
+
+
+
diff --git a/src/views/consume/coinConsumeDetail.vue b/src/views/consume/coinConsumeDetail.vue
index b25d5b9..9c55998 100644
--- a/src/views/consume/coinConsumeDetail.vue
+++ b/src/views/consume/coinConsumeDetail.vue
@@ -75,8 +75,8 @@ const consumePlatform = [
label: 'Homily Link'
},
{
- value: 'ERP系统',
- label: 'ERP系统'
+ value: 'ERP',
+ label: 'ERP'
}
]
diff --git a/src/views/managerecharge/rate.vue b/src/views/managerecharge/rate.vue
index 2dcd191..9f21c11 100644
--- a/src/views/managerecharge/rate.vue
+++ b/src/views/managerecharge/rate.vue
@@ -191,6 +191,8 @@ const getEditData = async function (row) {
}
// 编辑汇率
const editRate = async function () {
+ // 提交前验证 汇率是否为数字
+ rateEdit.value.num = parseFloat(rateEdit.value.num);
try {
console.log('搜索参数', rateEdit.value)
// 发送POST请求
@@ -245,7 +247,6 @@ function formatDate(value) {
}
-
// 输入框过滤
function handleInput(value) {
// 检查是否使用了中文句号
@@ -271,11 +272,13 @@ function handleInput(value) {
// 小数点前没有数字时补0
if (value.startsWith('.')) {
value = '0' + value;
- ElMessage.info('已自动补充前导0');
+ // 需求没有,注释,先不显示
+ // ElMessage.info('已自动补充前导0');
}
// 更新表单值
rateEdit.value.num = value;
+
return value;
}