mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2026-09-22 04:42:04 +08:00
33 lines
736 B
Vue
33 lines
736 B
Vue
<template>
|
||
<div class="goods-operation">
|
||
<!-- 填写商品详细信息(含商品类型、商品分类) -->
|
||
<second-step ref="second" v-if="activestep === 1"></second-step>
|
||
<!-- 发布完成 -->
|
||
<third-step ref="third" v-if="activestep === 2"></third-step>
|
||
</div>
|
||
</template>
|
||
<script>
|
||
import secondStep from "./goodsOperationSec";
|
||
import thirdStep from "./goodsOperationThird";
|
||
export default {
|
||
name: "addGoods",
|
||
components: {
|
||
secondStep,
|
||
thirdStep,
|
||
},
|
||
|
||
data() {
|
||
return {
|
||
/** 当前激活步骤:1 填写详情,2 发布成功 */
|
||
activestep: 1,
|
||
};
|
||
},
|
||
mounted() {
|
||
window.scrollTo(0, 0);
|
||
},
|
||
};
|
||
</script>
|
||
<style lang="scss" scoped>
|
||
@import "./addGoods.scss";
|
||
</style>
|