ec372eacded2ad7af1f20b489b05fb83ed3d1266.svn-base 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 fjwtenf_01 from "./fjwtenf_01.vue"
  21. import fjwtenf_02 from "./fjwtenf_02.vue"
  22. import fjwtenf_03 from './fjwtenf_03.vue'
  23. export default {
  24. components: {
  25. 'fjwtenf_01':fjwtenf_01,
  26. 'fjwtenf_02':fjwtenf_02,
  27. 'fjwtenf_03':fjwtenf_03
  28. },
  29. props: [],
  30. data() {
  31. return {
  32. options: [{
  33. value: 'fjwtenf_01',
  34. label: '水行政执法监督检查发现问题汇总表'
  35. }, {
  36. value: 'fjwtenf_02',
  37. label: '水行政执法监督检查问题确认单'
  38. }, {
  39. value: 'fjwtenf_03',
  40. label: '监督工作要点检查情况表'
  41. }],
  42. value: '',
  43. currentViewId:'水行政执法监督检查发现问题汇总表',
  44. showTable:true,
  45. currentNodeType:'',
  46. }
  47. },
  48. computed:{
  49. persId(){
  50. return localStorage.getItem("userid")? localStorage.getItem("userid"): '1098101939614724096'
  51. }
  52. },
  53. mounted() {
  54. },
  55. watch: {
  56. },
  57. methods: {
  58. },
  59. }
  60. </script>
  61. <style>
  62. </style>