门口门禁-进出记录管理子级页面开发(人行口门记录、车行口门记录)
parent
25d319976e
commit
38d137dc06
|
@ -2,7 +2,7 @@
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<div class="rightCont">
|
<div class="rightCont">
|
||||||
<div>
|
<div>
|
||||||
<span @click="people" style="margin: 10px;">车行口门记录</span>
|
<span style="margin: 10px;">车行口门记录</span>
|
||||||
<el-table
|
<el-table
|
||||||
v-loading="listLoading"
|
v-loading="listLoading"
|
||||||
ref="multipleTable"
|
ref="multipleTable"
|
||||||
|
@ -113,9 +113,6 @@ export default {
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
people(){
|
|
||||||
this.$parent.activeName = 'peopleRecordList'
|
|
||||||
},
|
|
||||||
|
|
||||||
getDict() {
|
getDict() {
|
||||||
requestFN(
|
requestFN(
|
|
@ -0,0 +1,23 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<carRecordList v-show="activeName=='carRecordList'" ref="carRecordList" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import carRecordList from './components/carRecordList.vue'
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
carRecordList: carRecordList
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
activeName: 'carRecordList',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
</style>
|
||||||
|
|
|
@ -1,26 +1,12 @@
|
||||||
<template>
|
|
||||||
<div>
|
|
||||||
<carRecordList v-show="activeName=='carRecordList'" ref="carRecordList" />
|
|
||||||
<peopleRecordList v-if="activeName=='peopleRecordList'" ref="peopleRecordList" />
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import carRecordList from './components/carRecordList.vue'
|
|
||||||
import peopleRecordList from './components/peopleRecordList.vue'
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
|
||||||
carRecordList: carRecordList,
|
|
||||||
peopleRecordList:peopleRecordList
|
|
||||||
},
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
activeName: 'carRecordList',
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<template>
|
||||||
</style>
|
<router-view/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<div class="rightCont">
|
<div class="rightCont">
|
||||||
<div>
|
<div>
|
||||||
<span @click="car" style="margin: 10px;" >人行口门记录</span>
|
<span style="margin: 10px;" >人行口门记录</span>
|
||||||
<el-table
|
<el-table
|
||||||
v-loading="listLoading"
|
v-loading="listLoading"
|
||||||
ref="multipleTable"
|
ref="multipleTable"
|
||||||
|
@ -86,9 +86,6 @@ export default {
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
car(){
|
|
||||||
this.$parent.activeName = 'carRecordList'
|
|
||||||
},
|
|
||||||
|
|
||||||
getDict() {
|
getDict() {
|
||||||
requestFN(
|
requestFN(
|
|
@ -0,0 +1,23 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<peopleRecordList v-show="activeName=='peopleRecordList'" ref="peopleRecordList" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import peopleRecordList from './components/peopleRecordList.vue'
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
peopleRecordList:peopleRecordList
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
activeName: 'peopleRecordList',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue