From 5f45eac9464ea9378220926c7932839e60571c7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8?= Date: Fri, 12 Jun 2026 17:02:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BD=99=E9=A2=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/agent/user/index.vue | 4 +- src/views/dashboard/components/view/index.vue | 621 +++++++++++------- 2 files changed, 393 insertions(+), 232 deletions(-) diff --git a/src/views/agent/user/index.vue b/src/views/agent/user/index.vue index 4d065bd..ab88068 100644 --- a/src/views/agent/user/index.vue +++ b/src/views/agent/user/index.vue @@ -555,7 +555,7 @@ const handleSubmit = async () => { // 调用接口 try { - await editCustomerApi({ ...params, point_diffs_json: JSON.stringify(marginRatioJSON) }) + await editCustomerApi({ ...params, point_diffs_json: JSON.stringify(marginRatioJSON), base_ts:null }) dialogVisible.value = false await getCustomerList(userId.value) } catch (err) { @@ -567,7 +567,7 @@ const handleSubmit = async () => { try { await editCustomerApi({ ...params, - fee_handling_percent: commissionRatioForm.value.commissionRatio, + fee_handling_percent: commissionRatioForm.value.commissionRatio, base_ts:null }) dialogVisible.value = false await getCustomerList(userId.value) diff --git a/src/views/dashboard/components/view/index.vue b/src/views/dashboard/components/view/index.vue index b500589..ceb42b1 100644 --- a/src/views/dashboard/components/view/index.vue +++ b/src/views/dashboard/components/view/index.vue @@ -1,119 +1,154 @@