| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <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 report1 from "../fujian/reportIndexFj2021.vue"
- import report2 from "../fujian/reportIndexFj2021Gn.vue"
- export default {
- components: {
- report1,
- report2
- },
- props: [],
- data() {
- return {
- options: [{
- value: 'report1',
- label: '小型水库安全运行专项检查情况统计表'
- }, {
- value: 'report2',
- label: '小型水库安全运行专项检查情况统计表(按功能类型分)'
- }
- ],
- value: '',
- currentViewId:'小型水库安全运行专项检查情况统计表',
- showTable:true,
- currentNodeType:'',
- }
- },
- computed:{
- persId(){
- return localStorage.getItem("userid")? localStorage.getItem("userid"): '1098101939614724096'
- }
- },
- mounted() {
- },
- watch: {
- },
- methods: {
- },
- }
- </script>
- <style>
- </style>
|