| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <template>
- <div>
- <el-container>
- <el-container>
- <el-main id="dxdcListMain" style="padding:5px 20px;" >
- <el-tabs v-model="currentViewId" type="card" >
- <el-tab-pane :label="option.label" :name="option.label" v-for="option in options" :key="option.value">
- <component v-if="showTable" :is="option.value">
- </component>
- </el-tab-pane>
- </el-tabs>
- </el-main>
- </el-container>
- </el-container>
- <!-- 添加/编辑人员弹窗 -->
- </div>
- </template>
- <script>
- import request from "../../utils/gw_ajax_request.js"
- import fjwtenf_01 from "./fjwtenf_01.vue"
- import fjwtenf_02 from "./fjwtenf_02.vue"
- import fjwtenf_03 from './fjwtenf_03.vue'
- export default {
- components: {
- 'fjwtenf_01':fjwtenf_01,
- 'fjwtenf_02':fjwtenf_02,
- 'fjwtenf_03':fjwtenf_03
- },
- props: [],
- data() {
- return {
- options: [{
- value: 'fjwtenf_01',
- label: '水行政执法监督检查发现问题汇总表'
- }, {
- value: 'fjwtenf_02',
- label: '水行政执法监督检查问题确认单'
- }, {
- value: 'fjwtenf_03',
- label: '监督工作要点检查情况表'
- }],
- value: '',
- currentViewId:'水行政执法监督检查发现问题汇总表',
- showTable:true,
- currentNodeType:'',
- }
- },
- computed:{
- persId(){
- return localStorage.getItem("userid")? localStorage.getItem("userid"): '1098101939614724096'
- }
- },
- mounted() {
- },
- watch: {
- },
- methods: {
- },
- }
- </script>
- <style>
- </style>
|