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 } }