|
@@ -135,7 +135,7 @@ export default defineComponent({
|
|
const useLastAmount = this.orderAmount - usePrice
|
|
const useLastAmount = this.orderAmount - usePrice
|
|
// 判断使用优惠券之后还有没有其它优惠券可用
|
|
// 判断使用优惠券之后还有没有其它优惠券可用
|
|
this.list.forEach((item: any) => {
|
|
this.list.forEach((item: any) => {
|
|
- if (Number(item.useLimit) >= useLastAmount && !item.checked) {
|
|
|
|
|
|
+ if (Number(item.useLimit) > useLastAmount && !item.checked) {
|
|
item.disabled = true
|
|
item.disabled = true
|
|
} else {
|
|
} else {
|
|
item.disabled = false
|
|
item.disabled = false
|