f7d93fae02ad0bd7f87e94e12e92a997cd7ef6f5.svn-base 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <div>
  3. <el-container>
  4. <el-container>
  5. <el-main id="dxdcListMain" style="padding:5px 20px;" >
  6. <el-tabs v-model="currentViewId" type="card" >
  7. <el-tab-pane :label="option.label" :name="option.label" v-for="option in options" :key="option.value">
  8. <component v-if="showTable" :is="option.value">
  9. </component>
  10. </el-tab-pane>
  11. </el-tabs>
  12. </el-main>
  13. </el-container>
  14. </el-container>
  15. <!-- 添加/编辑人员弹窗 -->
  16. </div>
  17. </template>
  18. <script>
  19. import request from "../../../utils/gw_ajax_request.js"
  20. import reportRsvrProvinceRun from "../fujian/reportRsvrProvinceRun.vue"
  21. import reportBigRsvrCityProblem from "../fujian/reportBigRsvrCityProblem.vue"
  22. import reportRsvrCityProblem from "../fujian/reportRsvrCityProblem.vue"
  23. import reportCityScore from "../fujian/reportCityScore.vue"
  24. import reportBigRsvrCountyProblem from "../fujian/reportBigRsvrCountyProblem.vue"
  25. import reportRsvrCountyProblem from "../fujian/reportRsvrCountyProblem.vue"
  26. import reportCountyScore from "../fujian/reportCountyScore.vue"
  27. import rsvrProblemSummary from "../fujian/rsvrProblemSummary.vue"
  28. export default {
  29. components: {
  30. reportRsvrProvinceRun:reportRsvrProvinceRun,
  31. reportBigRsvrCityProblem:reportBigRsvrCityProblem,
  32. reportRsvrCityProblem:reportRsvrCityProblem,
  33. reportCityScore:reportCityScore,
  34. reportBigRsvrCountyProblem:reportBigRsvrCountyProblem,
  35. reportRsvrCountyProblem:reportRsvrCountyProblem,
  36. reportCountyScore:reportCountyScore,
  37. rsvrProblemSummary:rsvrProblemSummary
  38. },
  39. props: [],
  40. data() {
  41. return {
  42. options: [{
  43. value: 'reportRsvrProvinceRun',
  44. label: '2020年福建省水库安全运行管理督查进度表'
  45. }, {
  46. value: 'reportBigRsvrCityProblem',
  47. label: '市大中型水库督查发现问题汇总表'
  48. }, {
  49. value: 'reportRsvrCityProblem',
  50. label: '市小型水库督查发现问题汇总表'
  51. }, {
  52. value: 'reportCityScore',
  53. label: '市水库安全运行管理督查自查成果复核及量化评分表'
  54. }, {
  55. value: 'reportBigRsvrCountyProblem',
  56. label: '县大中型水库问题清单表'
  57. },{
  58. value: 'reportRsvrCountyProblem',
  59. label: '县小型水库问题清单表'
  60. },
  61. {
  62. value: 'reportCountyScore',
  63. label: '县水库安全运行管理督查成果复核及量化评分表'
  64. },
  65. {
  66. value: 'rsvrProblemSummary',
  67. label: '水库督查发现问题汇总表'
  68. }
  69. ],
  70. value: '',
  71. currentViewId:'2020年福建省水库安全运行管理督查进度表',
  72. showTable:true,
  73. currentNodeType:'',
  74. }
  75. },
  76. computed:{
  77. persId(){
  78. return localStorage.getItem("userid")? localStorage.getItem("userid"): '1098101939614724096'
  79. }
  80. },
  81. mounted() {
  82. },
  83. watch: {
  84. },
  85. methods: {
  86. },
  87. }
  88. </script>
  89. <style>
  90. </style>