44 lines
1.1 KiB
Vue
44 lines
1.1 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<iframe src="http://192.168.1.217:8001/model/modelChildren" width="100%" height="850px" frameborder="0" />
|
|
<!--<transition name="el-zoom-in-center">
|
|
<data-model-list v-if="options.showList" @showCard="showCard" />
|
|
</transition>
|
|
<transition name="el-zoom-in-top">
|
|
<data-model-add v-if="options.showAdd" :data="options.data" @showCard="showCard" />
|
|
</transition>
|
|
<transition name="el-zoom-in-top">
|
|
<data-model-edit v-if="options.showEdit" :data="options.data" @showCard="showCard" />
|
|
</transition>
|
|
<transition name="el-zoom-in-bottom">
|
|
<data-model-detail v-if="options.showDetail" :data="options.data" @showCard="showCard" />
|
|
</transition>-->
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'DataModel',
|
|
data() {
|
|
return {
|
|
options: {
|
|
data: {},
|
|
showList: true,
|
|
showAdd: false,
|
|
showEdit: false,
|
|
showDetail: false
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
showCard(data) {
|
|
Object.assign(this.options, data)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|