From 1f072070130b78f182236b2aac4a234d9de9324a Mon Sep 17 00:00:00 2001 From: fengachen <373943794@qq.com> Date: Mon, 24 Jan 2022 10:02:32 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91=E5=BA=94?= =?UTF-8?q?=E6=94=B6=E9=87=91=E9=A2=9D=E4=B8=BA0=E7=9A=84=E6=97=B6?= =?UTF-8?q?=E5=80=99=20=E9=80=89=E6=8B=A9=E4=B8=93=E7=94=A8=E5=8F=91?= =?UTF-8?q?=E7=A5=A8=20=E5=88=97=E8=A1=A8=E6=8F=92=E6=A7=BD=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E6=98=BE=E7=A4=BA=E4=B8=8D=E6=AD=A3=E7=A1=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/tools/StatusSlot.vue | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/components/tools/StatusSlot.vue b/src/components/tools/StatusSlot.vue index 59db5c9..ecc2013 100644 --- a/src/components/tools/StatusSlot.vue +++ b/src/components/tools/StatusSlot.vue @@ -79,13 +79,12 @@ export default { // 应收金额为0 未到账 未邮寄 未开票的状态 return zero } else { - // 应收金额为0 打包 与需要开票的状态 + // 应收金额为0 打包 与需要开票的状态 打包与需要开票 只有√和×的状态 if (this.statusNo === 0) { return error - } else if (this.statusNo === 1) { + } else if (this.statusNo === 1 || this.statusNo === 2) { + // 打包只有 0和 1 需要发票 有 0(不需要发票) 1(普通发票) 2(增值税发票) return finished - } else if (this.statusNo === 2) { - return half } }