|
|
@@ -216,7 +216,10 @@ export default defineComponent({
|
|
|
title: () => (
|
|
|
<div class={styles.buyContent}>
|
|
|
<p class={styles.goodsTitle}>{goods.goodsName}</p>
|
|
|
- {state.orders.orderType === 'SCHOOL_REGISTER' ? (
|
|
|
+ {goods.brandName && (
|
|
|
+ <Tag class={styles.brandName}>{goods.brandName}</Tag>
|
|
|
+ )}
|
|
|
+ {/* {state.orders.orderType === 'SCHOOL_REGISTER' ? (
|
|
|
<Tag class={styles.brandName}>5年</Tag>
|
|
|
) : (
|
|
|
<>
|
|
|
@@ -224,7 +227,7 @@ export default defineComponent({
|
|
|
<Tag class={styles.brandName}>{goods.brandName}</Tag>
|
|
|
)}
|
|
|
</>
|
|
|
- )}
|
|
|
+ )} */}
|
|
|
</div>
|
|
|
),
|
|
|
value: () => <span>x{state.orders.orderType === 'SCHOOL_REGISTER' ? 1 :goods.goodsNum}</span>
|