@@ -260,19 +260,21 @@ export default defineComponent({
>
取消订单
</Button>
- <Button
- plain
- round
- size="small"
- type="primary"
- class={styles.smallBtn}
- onClick={(e: any) => {
- e.stopPropagation()
- onConfirmOrder(item)
- }}
- >
- 继续支付
- </Button>
+ {item.orderType !== 'ORCHESTRA' && (
+ <Button
+ plain
+ round
+ size="small"
+ type="primary"
+ class={styles.smallBtn}
+ onClick={(e: any) => {
+ e.stopPropagation()
+ onConfirmOrder(item)
+ }}
+ >
+ 继续支付
+ </Button>
+ )}
</div>
)
}}