39 lines
911 B
Vue
39 lines
911 B
Vue
|
|
<template>
|
||
|
|
<div class="app-container">
|
||
|
|
<el-tabs type="border-card" @tab-click="changTab">
|
||
|
|
<el-tab-pane label="安全操作规程平台资源库">
|
||
|
|
<list/>
|
||
|
|
</el-tab-pane>
|
||
|
|
</el-tabs>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<style>
|
||
|
|
.el-table .warning-row {
|
||
|
|
background: oldlace;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script>
|
||
|
|
import Pagination from '@/components/Pagination' // 通过 el-pagination二次打包
|
||
|
|
import waves from '@/directive/waves'
|
||
|
|
import List from './list.vue'
|
||
|
|
import ListEm from './listEm.vue'
|
||
|
|
export default {
|
||
|
|
components: { List, Pagination, ListEm },
|
||
|
|
directives: { waves },
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
vectory: 'listEm'
|
||
|
|
}
|
||
|
|
},
|
||
|
|
created() {
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
changTab(title) {
|
||
|
|
console.log(title.label)
|
||
|
|
if (title.label === '安全操作规程平台资源库') { this.vectory = 'list' }
|
||
|
|
if (title.label === '安全操作规程') { this.vectory = 'listEm' }
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|