nw-cqdevicemgt-ui/src/views/claimAndRefund/secondStore/scrap-apply-for/index.vue

35 lines
761 B
Vue
Raw Normal View History

2025-01-14 13:26:49 +08:00
<template>
<!-- 二级库 管理 -->
<div class="app-container">
<transition name="el-fade-in-linear">
<HomePages @onClickSecond="onClickSecond" v-if="isShowHome" />
<HandlePages @goBack="goBack" v-else />
</transition>
</div>
</template>
<script>
import HomePages from './components/home-pages'
import HandlePages from './components/handle-pages'
export default {
components: {
HomePages,
HandlePages,
},
data() {
return {
isShowHome: true,
isHandleType: 1,
}
},
methods: {
onClickSecond() {
this.isShowHome = false
},
goBack() {
this.isShowHome = true
},
},
}
</script>