From 41058a7ab9de32a39a355a3171dc514dff5101ed Mon Sep 17 00:00:00 2001 From: lbw_9527443 <780139497@qq.com> Date: Mon, 25 Aug 2025 20:26:43 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E9=94=80=E5=94=AE=E9=A1=B5=E9=9D=A2):=20?= =?UTF-8?q?=E7=AE=80=E5=8C=96=E5=AE=A2=E6=88=B7=E7=B1=BB=E5=9E=8B=E5=88=A4?= =?UTF-8?q?=E6=96=AD=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 移除对"未支付"状态的单独判断,仅保留"点击未支付"作为未支付状态的标识 --- my-vue-app/src/views/person/sale.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/my-vue-app/src/views/person/sale.vue b/my-vue-app/src/views/person/sale.vue index aa69f62..fdf5a38 100644 --- a/my-vue-app/src/views/person/sale.vue +++ b/my-vue-app/src/views/person/sale.vue @@ -371,7 +371,7 @@ async function getTimeline() { let customerType = '课1-4'; // 默认类型 // 根据pay_status设置具体的type - if (customer.pay_status === '未支付' || customer.pay_status === '点击未支付') { + if (customer.pay_status === '点击未支付') { customerType = '点击未支付'; } else if (customer.pay_status === '付定金') { customerType = '付定金';