| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <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 reportRsvrProvinceRun from "../fujian/reportRsvrProvinceRun.vue"
- import reportBigRsvrCityProblem from "../fujian/reportBigRsvrCityProblem.vue"
- import reportRsvrCityProblem from "../fujian/reportRsvrCityProblem.vue"
- import reportCityScore from "../fujian/reportCityScore.vue"
- import reportBigRsvrCountyProblem from "../fujian/reportBigRsvrCountyProblem.vue"
- import reportRsvrCountyProblem from "../fujian/reportRsvrCountyProblem.vue"
- import reportCountyScore from "../fujian/reportCountyScore.vue"
- import rsvrProblemSummary from "../fujian/rsvrProblemSummary.vue"
- export default {
- components: {
- reportRsvrProvinceRun:reportRsvrProvinceRun,
- reportBigRsvrCityProblem:reportBigRsvrCityProblem,
- reportRsvrCityProblem:reportRsvrCityProblem,
- reportCityScore:reportCityScore,
- reportBigRsvrCountyProblem:reportBigRsvrCountyProblem,
- reportRsvrCountyProblem:reportRsvrCountyProblem,
- reportCountyScore:reportCountyScore,
- rsvrProblemSummary:rsvrProblemSummary
- },
- props: [],
- data() {
- return {
- options: [{
- value: 'reportRsvrProvinceRun',
- label: '2020年福建省水库安全运行管理督查进度表'
- }, {
- value: 'reportBigRsvrCityProblem',
- label: '市大中型水库督查发现问题汇总表'
- }, {
- value: 'reportRsvrCityProblem',
- label: '市小型水库督查发现问题汇总表'
- }, {
- value: 'reportCityScore',
- label: '市水库安全运行管理督查自查成果复核及量化评分表'
- }, {
- value: 'reportBigRsvrCountyProblem',
- label: '县大中型水库问题清单表'
- },{
- value: 'reportRsvrCountyProblem',
- label: '县小型水库问题清单表'
- },
- {
- value: 'reportCountyScore',
- label: '县水库安全运行管理督查成果复核及量化评分表'
- },
- {
- value: 'rsvrProblemSummary',
- label: '水库督查发现问题汇总表'
- }
- ],
- value: '',
- currentViewId:'2020年福建省水库安全运行管理督查进度表',
- showTable:true,
- currentNodeType:'',
- }
- },
- computed:{
- persId(){
- return localStorage.getItem("userid")? localStorage.getItem("userid"): '1098101939614724096'
- }
- },
- mounted() {
- },
- watch: {
- },
- methods: {
-
- },
- }
- </script>
- <style>
- </style>
|