|
@@ -91,7 +91,6 @@ export default defineComponent({
|
|
|
}
|
|
|
const { data } = await request.post(url)
|
|
|
state.details = data || {}
|
|
|
- console.log(state.details, 'details')
|
|
|
state.buyList.forEach((item: any, index: number) => {
|
|
|
item.salePrice = (index + 1) * data.salePrice
|
|
|
item.costPrice = (index + 1) * data.costPrice
|
|
@@ -369,7 +368,7 @@ export default defineComponent({
|
|
|
</List>
|
|
|
</div>
|
|
|
</div>
|
|
|
- {!state.loading && baseState.platformType === 'STUDENT' && (
|
|
|
+ {baseState.platformType === 'STUDENT' && (
|
|
|
<TheSticky position="bottom">
|
|
|
<div class={styles.btnGroup}>
|
|
|
<Button
|