633de91f8c070073b183bf3cdb230a75eaf4b0e8.svn-base 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655
  1. <template>
  2. <div class="grid-content bg-purple" style="height:100%;">
  3. <el-card class="box-card" style="height:100%;">
  4. <!-- 右侧组件 -->
  5. <el-tabs v-model="activeContent" type="card" style="height:100%;width: 100%;">
  6. <el-tab-pane label="督查人员" name="first" :style="{'height':tabContentHeight+'px'}">
  7. <duChaRenYuanList
  8. v-if="showRightComponent"
  9. ref="renYuanList"
  10. :objType="duChaType"
  11. :dczId="currentSelectTreeNodeId"
  12. :dczName="currentSelectTreeNodeName"
  13. @showEditDialog="showEditDialog">
  14. </duChaRenYuanList>
  15. </el-tab-pane>
  16. <el-tab-pane label="督查区域" name="third" :style="{'height':tabContentHeight+'px'}"
  17. v-if="showRightComponent && !hideArea">
  18. <duChaQuYuList
  19. ref="qyList"
  20. :objType="duChaType"
  21. :dczId="currentSelectTreeNodeId"
  22. :dczName="currentSelectTreeNodeName"
  23. @showEditDialog="showEditDialog_qy"
  24. @emitCurrentObjSelectName="emitCurrentObjSelectName">
  25. </duChaQuYuList>
  26. </el-tab-pane>
  27. <el-tab-pane label="督查对象" name="second" :style="{'height':tabContentHeight+'px'}">
  28. <duChaDuiXiangList
  29. v-if="showRightComponent"
  30. ref="duiXiangList"
  31. :objType="duChaType"
  32. :plnaId="plnaTreeCode"
  33. :dczId="currentSelectTreeNodeId"
  34. :dczName="currentSelectTreeNodeName"
  35. :activeContent="activeContent"
  36. @showEditDialog_dx="showEditDialog_dx"
  37. @emitCurrentObjSelectName="emitCurrentObjSelectName">
  38. </duChaDuiXiangList>
  39. </el-tab-pane>
  40. </el-tabs>
  41. </el-card>
  42. <!-- 添加督查人员、督查对象、督查区域 -->
  43. <editDczInfo ref="editDczInfoRef" :dczId="currentSelectTreeNodeId" :jiGouId="orgId"
  44. @addSuccess="RenYuanaAddSuccessHandler"/>
  45. <component :is="curEditDcdxInfo" ref="editDcdxInfoRef" :objType="duChaType" :plnaId="currentSelectTreeNodeId"
  46. :dczId="currentSelectTreeNodeId" @addSuccess="DuiXiangAddSuccessHandler"/>
  47. <!-- <editDcdxInfo ref="editDcdxInfoRef" :objType="duChaType" :plnaId ="currentSelectTreeNodeId" :dczId="currentSelectTreeNodeId" @addSuccess="DuiXiangAddSuccessHandler"></editDcdxInfo>
  48. <editDcdxInfoyunxing ref="editDcdxInfoRef" :objType="duChaType" :plnaId ="currentSelectTreeNodeId" :dczId="currentSelectTreeNodeId" @addSuccess="DuiXiangAddSuccessHandler"></editDcdxInfoyunxing> -->
  49. <editDcqyInfo ref="editDcqyInfoRef" :objType="duChaType" :plnaId="currentSelectTreeNodeId"
  50. :dczId="currentSelectTreeNodeId" @addSuccess="quYuAddSuccessHandler"/>
  51. </div>
  52. </template>
  53. <script>
  54. export default {
  55. props: ['duChaType', 'currentSelectTreeNodeId', 'currentSelectTreeNodeName'],
  56. data() {
  57. return {
  58. tabContentHeight: window.innerHeight - 260,
  59. showRightComponent: false,
  60. activeContent: 'first',
  61. plnaTreeCode: '', //也许不需要?
  62. curEditDcdxInfo: 'editDcdxInfo', //根据duChaType判断当前添加对象的弹窗类型
  63. }
  64. },
  65. computed: {
  66. orgId() {
  67. return localStorage.getItem("guid") ? localStorage.getItem("guid") : "";
  68. },
  69. hideArea() {
  70. return this.duChaType == '23'
  71. }
  72. },
  73. components: {
  74. duChaDuiXiangList: resolve => {
  75. require(['./duChaDuiXiangList.vue'], resolve)
  76. },//监督对象操作
  77. duChaQuYuList: resolve => {
  78. require(['../../duChaGuanLi/duChaQuYuList.vue'], resolve)
  79. },//监督区域操作
  80. duChaRenYuanList: resolve => {
  81. require(['../../duChaGuanLi/duChaRenYuanList.vue'], resolve)
  82. },//监督人员操作
  83. editDczInfo: resolve => {
  84. require(['../editDczInfo.vue'], resolve)
  85. },//添加监督人员
  86. editDcdxInfo: resolve => {
  87. require(['../editDcdxInfo.vue'], resolve)
  88. },//添加监督对象(包含小水库,江西大中型水库督查,水库防洪调度,2019年农饮,水毁,地下水监测站督查)
  89. editDcdxInfosz: resolve => {
  90. require(['../editDcdxInfo_sz.vue'], resolve)
  91. },//添加水闸监督对象
  92. editDcdxInfojianshe: resolve => {
  93. require(['../editDcdxInfo_jianshe.vue'], resolve)
  94. },//添加工程建设监督对象
  95. editDcdxInfoyunxing: resolve => {
  96. require(['../editDcdxInfo_yunxing.vue'], resolve)
  97. },//添加工程运行监督对象
  98. editDcdxInfoyudiba: resolve => {
  99. require(['../editDcdxInfoydb.vue'], resolve)
  100. },//添加淤泥坝监督对象
  101. editDcdxInfotdfj: resolve => {
  102. require(['../editDcdxInfo_tdfj.vue'], resolve)
  103. },//添加特定飞检监督对象
  104. editDcdxInfoqita: resolve => {
  105. require(['../editDcdxInfo_qtjc.vue'], resolve)
  106. },
  107. editDcdxInfoszyxjxzq: resolve => {
  108. require(['../editDcdxInfoSzyxjxzq.vue'], resolve)
  109. }, //分水管控
  110. editDcdxInfoqsk: resolve => {
  111. require(['../editDcdxInfoQsk.vue'], resolve)
  112. },
  113. editDcdxInfosyd: resolve => {
  114. require(['../editDcdxInfoSyd.vue'], resolve)
  115. },
  116. editDcdxInfojsgl: resolve => {
  117. require(['../editDcdxInfoJsglypj.vue'], resolve)
  118. }, //节水管理与评价
  119. editDcdxInfojsdw: resolve => {
  120. require(['../editDcdxInfoJsdwcc.vue'], resolve)
  121. }, //用水单位
  122. editDcdxInfosb: resolve => {
  123. require(['../editDcdxInfo_shuibao.vue'], resolve)
  124. }, //水保
  125. editDcdxInfosl: resolve => {
  126. require(['../editDcdxInfo_siluan.vue'], resolve)
  127. }, //四乱,水政
  128. editDcdxInfozyhbdc: resolve => {
  129. require(['../editDcdxInfo_zyhbdc.vue'], resolve)
  130. }, //中央环保督查
  131. editDcdxInfoSkFj: resolve => {
  132. require(['../editDcdxInfo_sk_fj.vue'], resolve)
  133. }, //福建大中型水库
  134. editDcdxInfoQuanScore: resolve => {
  135. require(['../editDcdxInfo_quanScore.vue'], resolve)
  136. }, //福建量化评分
  137. editDcdxInfoXskbzh: resolve => {
  138. require(['../editDcdxInfo_xskbzh.vue'], resolve)
  139. }, //江西小水库标准化
  140. editDcdxInfoRyZj: resolve => {
  141. require(['../editDcdxInfo_ryZj.vue'], resolve)
  142. }, //浙江人饮
  143. editDcdxInfoZjqjg: resolve => {
  144. require(['../editDcdxInfo_zjqjg.vue'], resolve)
  145. }, //浙江强监管
  146. editDcqyInfo: resolve => {
  147. require(['../editDcqyInfo.vue'], resolve)
  148. },
  149. editDcdxInfoRynew: resolve => {
  150. require(['../editDcdxInfo_rynew.vue'], resolve)
  151. },
  152. editDcdxInfoYiGongLi: resolve => {
  153. require(['../editDcdxInfo_yigongli.vue'], resolve)
  154. }, //灌区最后一公里
  155. editDcdxInfoDiFang: resolve => {
  156. require(['../editDcdxInfo_difang.vue'], resolve)
  157. }, //堤防
  158. editDcdxInfoChaoBiaoHongYuAn: resolve => {
  159. require(['../editDcdxInfo_chaobiaohongyuan.vue'], resolve)
  160. }, //超标
  161. editDcdxInfoQys: resolve => {
  162. require(['../editDcdxInfoQys.vue'], resolve)
  163. }, //取用水
  164. editDcdxInfoJieshui: resolve => {
  165. require(['../editDcdxInfo_jieshui.vue'], resolve)
  166. }, //取用水
  167. editDcdxInfoSkcxjg: resolve => {
  168. require(['../editDcdxInfo_skcxjg.vue'], resolve)
  169. }, // 34 水库除险加固
  170. editDcdxInfoZxhl: resolve => {
  171. require(['../editDcdxInfo_zxhl.vue'], resolve)
  172. }, // 35 水库除险加固
  173. editDcdxInfoNyhtk: resolve => {
  174. require(['../editDcdxInfo_nyhtk.vue'], resolve)
  175. }, // 37 水库除险加固
  176. editDcdxInfoSzygl: resolve => {
  177. require(['../editDcdxInfo_szygl.vue'], resolve)
  178. }, //取用水
  179. editDcdxInfoJsztfh: resolve => {
  180. require(['../editDcdxInfo_jsztfh.vue'], resolve)
  181. }, //节水载体复核
  182. editDcdxInfoQsxkglfhhdw: resolve => {
  183. require(['../editDcdxInfo_qsxkglfhhdw.vue'], resolve)
  184. }, //取水许可管理复核
  185. editDcdxInfoSzyjsgl: resolve => {
  186. require(['../editDcdxInfo_szyjsgl.vue'], resolve)
  187. }, //取水许可管理复核
  188. editDcdxInfoXjSzyjsgl: resolve => {
  189. require(['../editDcdxInfo_xjszyjsgl.vue'], resolve)
  190. }, //取水许可管理复核
  191. editDcdxInfoQsxkglfhsdz: resolve => {
  192. require(['../editDcdxInfo_qsxkglfhsdz.vue'], resolve)
  193. }, //取水许可管理复核
  194. editDcdxInfoAqscssjygk: resolve => {
  195. require(['../editDcdxInfo_aqscssjygk.vue'], resolve)
  196. }, //取水许可管理复核
  197. editDcdxInfoNcysaq: resolve => {
  198. require(['../editDcdxInfo_ncysaq.vue'], resolve)
  199. }, //取水许可管理复核
  200. editDcdxInfoQsxk: resolve => {
  201. require(['../editDcdxInfo_qsxk.vue'], resolve)
  202. }, //青海取水许可
  203. editDcdxInfoWrsAndWswmSpe: (resolve) => {
  204. require(['../editDcdxInfoWrsAndWswmSpe.vue'], resolve)
  205. },//江苏水资源和节水管理专项
  206. editDcdxInfoZhaoTouBiao: (resolve) => {
  207. require(['../editDcdxInfo_zhaotoubiao.vue'], resolve)
  208. },//江苏水资源和节水管理专项
  209. editDcdxInfoShuiyacai: (resolve) => {
  210. require(['../editDcdxInfo_shuiyacai.vue'], resolve)
  211. },//水压采
  212. editDcdxInfoTuidiJianshui: (resolve) => {
  213. require(['../editDcdxInfo_tuidijianshui.vue'], resolve)
  214. }//068(rlrw)退地减水督查(新疆)
  215. ,
  216. editDcdxInfoXiaofangYiqing: (resolve) => {
  217. require(['../editDcdxInfo_xiaofangyiqing.vue'], resolve)
  218. },//074(safety)074消防安全及疫情防控对象督查(江西)
  219. editDcdxInfoShuiXingZhenBuMen: (resolve) => {
  220. require(['../editDcdxInfo_shuixingzhengbumen.vue'], resolve)
  221. },//075水行政部门安全生产巡查
  222. editDcdxInfoHehuzhangzhi: (resolve) => {
  223. require(['../editDcdxInfo_hehuzhangzhi.vue'], resolve)
  224. },//河湖长制
  225. editDcdxInfoHehuguanli: (resolve) => {
  226. require(['../editDcdxInfo_hehuguanli.vue'], resolve)
  227. },//河湖管理
  228. editDcdxInfoSlxmaqscxj: (resolve) => {
  229. require(['../editDcdxInfo_slxmaqscxj.vue'], resolve)
  230. },//河湖管理
  231. editDcdxInfoNcysaqAf: (resolve) => {
  232. require(['../editDcdxInfo_ncysaqaf.vue'], resolve)
  233. },//河湖管理
  234. editDcdxInfoBxzzqlaq: (resolve) => {
  235. require(['../editDcdxInfo_bxzzqlaq.vue'], resolve)
  236. },//病险闸站
  237. editDcdxInfoXsd: (resolve) => {
  238. require(['../editDcdxInfo_xsd.vue'], resolve)
  239. },//小水电清理暗访督查
  240. editDcdxInfoSxzzf: (resolve) => {
  241. require(['../editDcdxInfo_shuixingzhengzhifa.vue'], resolve)
  242. },//青海水行政执法
  243. editDcdxInfoWxhxpsyaq: (resolve) => {
  244. require(['../editDcdxInfo_weixianhuaxuepinanquan.vue'], resolve)
  245. },//江苏危险化学品使用安全
  246. editDcdxInfoXskcxjg: (resolve) => {
  247. require(['../editDcdxInfo_xskcxjg.vue'], resolve)
  248. },//小水库除险加固
  249. editDcdxInfoDxs: (resolve) => {
  250. require(['../editDcdxInfo_hbdxs.vue'], resolve)
  251. },//河北地下水
  252. editDcdxInfoStbczdgc: (resolve) => {
  253. require(['../editDcdxInfo_stbczdgc.vue'], resolve)
  254. },//河北地下水
  255. editDcdxInfoCbhsfy: (resolve) => {
  256. require(['../editDcdxInfo_cbhsfy.vue'], resolve)
  257. },//青海超标洪水防御
  258. editDcdxInfoShzhfy: (resolve) => {
  259. require(['../editDcdxInfo_shzhfy.vue'], resolve)
  260. },//青海山洪灾害防御
  261. editDcdxInfoShxf: (resolve) => {
  262. require(['../editDcdxInfo_shxf.vue'], resolve)
  263. },//青海水毁修复
  264. editDcdxInfoSkfhdd: (resolve) => {
  265. require(['../editDcdxInfo_skfhdd.vue'], resolve)
  266. },//青海水毁修复
  267. editDcdxInfoFjncysaq: (resolve) => {
  268. require(['../editDcdxInfo_fjncysaq.vue'], resolve)
  269. },//福建农村饮水安全
  270. editDcdxInfoXyjsxshdbjs: (resolve) => {
  271. require(['../editDcdxInfo_xyjsxshjs.vue'], resolve)
  272. },//县域节水型社会达标建设监督
  273. editDcdxInfoSlzjjdjc:(resolve) => {
  274. require(['../editDcdxInfo_slzjjdjc.vue'], resolve)
  275. },//新疆水利资金监督检查
  276. editDcdxInfoSlgcjsaqsc:(resolve) => {
  277. require(['../editDcdxInfo_slgcjsaqsc.vue'], resolve)
  278. },//青海水利工程建设安全生产
  279. editDcdxInfoSlgcjszljc:(resolve) => {
  280. require(['../editDcdxInfo_slgcjszljc.vue'], resolve)
  281. },//青海水利工程建设质量检测
  282. editDcdxInfoBzhgd:(resolve) => {
  283. require(['../editDcdxInfo_bzhgd.vue'], resolve)
  284. },//标准化工地
  285. editDcdxInfoZlglpj:(resolve) => {
  286. require(['../editDcdxInfo_zlglpj.vue'], resolve)
  287. },//质量管理评价
  288. editDcdxInfoNcysaqXjbt: resolve => {
  289. require(['../editDcdxInfo_ncysaqxjbt.vue'], resolve)
  290. }, //
  291. editDcdxInfoFjSxzzf: resolve => {
  292. require(['../editDcdxInfo_fjsxzzf.vue'], resolve)
  293. },
  294. editDcdxInfoCommon:resolve => {
  295. require(['../editDcdxInfo_common.vue'], resolve)
  296. },
  297. editDcdxPwuAWiu:resolve => {
  298. require(['../editDcdxInfo_pwuawiu.vue'], resolve)
  299. },
  300. editDcdxDrinkWaterSource:resolve => {
  301. require(['../editDcdxInfo_drinkwatersource.vue'], resolve)
  302. },
  303. editDcdxXskSd:resolve => {
  304. require(['../editDcdxInfo.vue'], resolve)
  305. },
  306. editDcdxXsdyhgl:resolve => {
  307. require(['../editDcdxInfo_xsdyhgl.vue'], resolve)
  308. },
  309. editDcdxRdwpgd:resolve => {
  310. require(['../editDcdxInfo_rdwpgd.vue'], resolve)
  311. },
  312. editDcdxInfoFjqa:resolve => {
  313. require(['../editDcdxInfo_fjqa.vue'], resolve)
  314. },
  315. editDcdxInfoJhyshqsk:resolve => {
  316. require(['../editDcdxInfo_jhyshqsk.vue'], resolve)
  317. },
  318. editDcdxInfoFraqscbzhps:resolve => {
  319. require(['../editDcdxInfo_fraqscbzhps.vue'], resolve)
  320. },
  321. editDcdxInfoGldwaqscbzhps:resolve => {
  322. require(['../editDcdxInfo_gldwaqscbzhps.vue'], resolve)
  323. },
  324. editDcdxInfoSgqyaqscbzhps:resolve => {
  325. require(['../editDcdxInfo_sgqyaqscbzhps.vue'], resolve)
  326. },
  327. editDcdxInfoSjdwaqscbzhps:resolve => {
  328. require(['../editDcdxInfo_sjdwaqscbzhps.vue'], resolve)
  329. },
  330. editDcdxInfoJldwaqscbzhps:resolve => {
  331. require(['../editDcdxInfo_jldwaqscbzhps.vue'], resolve)
  332. },
  333. editDcdxInfoJspwiu2024:resolve => {
  334. require(['../editDcdxInfo_jspwiu2024.vue'], resolve)
  335. },
  336. editDcdxInfoSdqa:resolve => {
  337. require(['../editDcdxInfo_sdqa.vue'], resolve)
  338. },
  339. editDcdxInfoFjTongyongWtDc:resolve => {
  340. require(['../editDcdxInfo_fjTongyongWtDc.vue'], resolve)
  341. },
  342. },
  343. mounted() {
  344. this.showRightComponent = true;
  345. },
  346. methods: {
  347. showEditDialog(item) {
  348. this.$refs['editDczInfoRef'].showDialog();
  349. },
  350. showEditDialog_dx(item) {
  351. console.log(this.duChaType)
  352. this.$refs['editDcdxInfoRef'].showDialog(this.duChaType);
  353. },
  354. showEditDialog_qy(item) {
  355. this.$refs['editDcqyInfoRef'].showDialog();
  356. },
  357. emitCurrentObjSelectName(item) {
  358. console.log(item)
  359. this.$refs['editDcdxInfoRef'].changeCurrentObjSelectName(item);
  360. },
  361. RenYuanaAddSuccessHandler: function () {
  362. this.$refs['renYuanList'].getDcryResult();
  363. },
  364. DuiXiangAddSuccessHandler: function () {
  365. this.$refs['duiXiangList'].getDcdxList1();
  366. },
  367. quYuAddSuccessHandler: function () {
  368. this.$refs['qyList'].getDcqyResult();
  369. },
  370. },
  371. watch: {
  372. duChaType(val) {
  373. console.log(val)
  374. // 1 小水库 2 人饮 3 水毁 4 水利工程建设 5 地下水 6 水闸 7 水利工程运行 36 大中型水库
  375. switch (val) {
  376. case '1':
  377. case '2':
  378. case '3':
  379. case '5':
  380. case '36':
  381. case '26':
  382. case '34': //水库除险加固
  383. case '80': //中大型水库回头看
  384. this.curEditDcdxInfo = 'editDcdxInfo'
  385. break;
  386. case '4': //水利工程建设督查
  387. this.curEditDcdxInfo = 'editDcdxInfojianshe'
  388. break;
  389. case '6': //水闸工程督查
  390. this.curEditDcdxInfo = 'editDcdxInfosz'
  391. break;
  392. case '7': //水利工程运行督查
  393. this.curEditDcdxInfo = 'editDcdxInfoyunxing'
  394. break;
  395. case '9': //特定飞检
  396. this.curEditDcdxInfo = 'editDcdxInfotdfj'
  397. break;
  398. case '10': //其他检查
  399. this.curEditDcdxInfo = 'editDcdxInfoqita'
  400. break;
  401. case '11': //淤地坝督查
  402. this.curEditDcdxInfo = 'editDcdxInfoyudiba'
  403. break;
  404. case '12': //取水口督查
  405. this.curEditDcdxInfo = 'editDcdxInfoqsk'
  406. break;
  407. case '13': //水源地督查
  408. this.curEditDcdxInfo = 'editDcdxInfosyd'
  409. break;
  410. case '14': //分水及管控督查
  411. this.curEditDcdxInfo = 'editDcdxInfoszyxjxzq'
  412. break;
  413. case '15': //节水管理与评价
  414. this.curEditDcdxInfo = 'editDcdxInfojsgl'
  415. break;
  416. case '16': //用水单位抽查
  417. this.curEditDcdxInfo = 'editDcdxInfojsdw'
  418. break;
  419. case '17': //水保项目
  420. this.curEditDcdxInfo = 'editDcdxInfosb'
  421. break;
  422. case '18':
  423. case '19': //18 河湖四乱督查 19非法采砂督查
  424. this.curEditDcdxInfo = 'editDcdxInfosl'
  425. break;
  426. case '20': //中央环保督查
  427. this.curEditDcdxInfo = 'editDcdxInfozyhbdc'
  428. break;
  429. case '22': //大中型水库督查
  430. this.curEditDcdxInfo = 'editDcdxInfoSkFj'
  431. break;
  432. case '23': //量化评分
  433. this.curEditDcdxInfo = 'editDcdxInfoQuanScore'
  434. break;
  435. case '24': //小水库标准化
  436. this.curEditDcdxInfo = 'editDcdxInfoXskbzh'
  437. break;
  438. case '25': //2020年农饮
  439. case '37': //农饮回头看
  440. this.curEditDcdxInfo = 'editDcdxInfoRynew'
  441. break;
  442. case '27': //山洪灾害防御
  443. this.curEditDcdxInfo = 'editDcdxInfoRyZj'
  444. break;
  445. case '28': //灌区最后一公里
  446. case '62': // 新疆乙级检测单位
  447. this.curEditDcdxInfo = 'editDcdxInfoYiGongLi'
  448. break;
  449. case '67': // 新疆乙级检测单位
  450. this.curEditDcdxInfo = 'editDcdxInfoZhaoTouBiao'
  451. break;
  452. case '29': //堤防险工险段
  453. this.curEditDcdxInfo = 'editDcdxInfoDiFang'
  454. break;
  455. case '30': //超标洪水防御
  456. this.curEditDcdxInfo = 'editDcdxInfoChaoBiaoHongYuAn'
  457. break;
  458. case '31': //取用水
  459. this.curEditDcdxInfo = 'editDcdxInfoQys'
  460. break;
  461. case '32': //水资源
  462. this.curEditDcdxInfo = 'editDcdxInfoSzygl'
  463. break;
  464. case '33': //节约用水
  465. this.curEditDcdxInfo = 'editDcdxInfoJieshui'
  466. break;
  467. // case '34': //水库除险加固
  468. // this.curEditDcdxInfo = 'editDcdxInfoSkcxjg'
  469. // break;
  470. case '35': //中小河流
  471. this.curEditDcdxInfo = 'editDcdxInfoZxhl'
  472. break;
  473. // case '37': //农饮回头看
  474. // this.curEditDcdxInfo = 'editDcdxInfoNyhtk'
  475. // break;
  476. case '41': //浙江人饮
  477. this.curEditDcdxInfo = 'editDcdxInfoRyZj'
  478. break;
  479. case '42': //浙江强监管
  480. this.curEditDcdxInfo = 'editDcdxInfoZjqjg'
  481. break;
  482. case '54': //福建节水载体复核
  483. this.curEditDcdxInfo = 'editDcdxInfoJsztfh'
  484. break;
  485. case '55': //福建取水许可管理复核河道外
  486. this.curEditDcdxInfo = 'editDcdxInfoQsxkglfhhdw'
  487. break;
  488. case '53': //福建水资源及节水管理
  489. this.curEditDcdxInfo = 'editDcdxInfoSzyjsgl'
  490. break;
  491. case '56': //福建水资源及节水管理县级
  492. this.curEditDcdxInfo = 'editDcdxInfoXjSzyjsgl'
  493. break;
  494. case '57': //福建取水许可管理复核水电站
  495. this.curEditDcdxInfo = 'editDcdxInfoQsxkglfhsdz'
  496. break;
  497. case '68': // 退地减水
  498. this.curEditDcdxInfo = 'editDcdxInfoTuidiJianshui'
  499. break;
  500. case '69': //福建取水许可管理复核水电站
  501. this.curEditDcdxInfo = 'editDcdxInfoAqscssjygk'
  502. break;
  503. case '70': // 地下水压采
  504. this.curEditDcdxInfo = 'editDcdxInfoShuiyacai'
  505. break;
  506. case '71': //福建取水许可管理复核水电站
  507. this.curEditDcdxInfo = 'editDcdxInfoNcysaq'
  508. break;
  509. case '72': //青海取水许可
  510. this.curEditDcdxInfo = 'editDcdxInfoQsxk'
  511. break;
  512. case '73': //小水电清理暗访督查
  513. this.curEditDcdxInfo = 'editDcdxInfoXsd'
  514. break;
  515. case '74': //消防安全及疫情防控对象督查
  516. this.curEditDcdxInfo = 'editDcdxInfoXiaofangYiqing'
  517. break;
  518. case '75': //水行政部门安全生产巡查
  519. this.curEditDcdxInfo = 'editDcdxInfoShuiXingZhenBuMen'
  520. break;
  521. case '76': //河湖长制
  522. this.curEditDcdxInfo = 'editDcdxInfoHehuzhangzhi'
  523. break;
  524. case '77': //河湖管理
  525. this.curEditDcdxInfo = 'editDcdxInfoHehuguanli'
  526. break;
  527. case '78': //水利项目安全生产巡检
  528. this.curEditDcdxInfo = 'editDcdxInfoSlxmaqscxj'
  529. break;
  530. case '79': //广东农村饮水安全暗访
  531. this.curEditDcdxInfo = 'editDcdxInfoNcysaqAf'
  532. break;
  533. case '81': //病险闸站桥梁安全
  534. this.curEditDcdxInfo = 'editDcdxInfoBxzzqlaq'
  535. break;
  536. case '82': //青海水行政执法
  537. this.curEditDcdxInfo = 'editDcdxInfoSxzzf'
  538. break;
  539. case '83': //江苏危险化学品使用安全督查
  540. this.curEditDcdxInfo = 'editDcdxInfoWxhxpsyaq'
  541. break;
  542. case '84': //小水库除险加固
  543. this.curEditDcdxInfo = 'editDcdxInfoXskcxjg'
  544. break;
  545. case '89': //河北地下水
  546. this.curEditDcdxInfo = 'editDcdxInfoDxs'
  547. break;
  548. case '91': //青海水土保持重点工程
  549. this.curEditDcdxInfo = 'editDcdxInfoStbczdgc'
  550. break;
  551. case '93': //青海超标洪水防御
  552. this.curEditDcdxInfo = 'editDcdxInfoCbhsfy'
  553. break;
  554. case '94': //青海山洪灾害防御
  555. this.curEditDcdxInfo = 'editDcdxInfoShzhfy'
  556. break;
  557. case '95': //水毁修复
  558. this.curEditDcdxInfo = 'editDcdxInfoShxf'
  559. break;
  560. case '96': //水库防洪调度
  561. this.curEditDcdxInfo = 'editDcdxInfoSkfhdd'
  562. break;
  563. case '97': //福建2021农饮
  564. this.curEditDcdxInfo = 'editDcdxInfoFjncysaq'
  565. break;
  566. case '98': //新疆兵团水利资金监督检查
  567. this.curEditDcdxInfo = 'editDcdxInfoSlzjjdjc'
  568. break;
  569. case '99': //青海水利工程建设安全生产
  570. this.curEditDcdxInfo = 'editDcdxInfoSlgcjsaqsc'
  571. break;
  572. case '100': //青海水利工程建设质量检测
  573. this.curEditDcdxInfo = 'editDcdxInfoSlgcjszljc'
  574. break;
  575. case '101': //县域节水型社会达标建设监督(青海)
  576. this.curEditDcdxInfo = 'editDcdxInfoXyjsxshdbjs'
  577. break;
  578. case '104': //标准化工具(福建)
  579. this.curEditDcdxInfo = 'editDcdxInfoBzhgd'
  580. break;
  581. case '105': //质量管理评价(福建)
  582. this.curEditDcdxInfo = 'editDcdxInfoZlglpj'
  583. break;
  584. case '106'://小水库复查(云南)
  585. this.curEditDcdxInfo = 'editDcdxInfo'
  586. break;
  587. case '108'://新疆兵团农村饮水
  588. this.curEditDcdxInfo = 'editDcdxInfoNcysaqXjbt'
  589. break;
  590. case '110'://福建县水行政执法
  591. this.curEditDcdxInfo = 'editDcdxInfoFjSxzzf'
  592. break;
  593. case '111': //通用督查(海南)
  594. this.curEditDcdxInfo = 'editDcdxInfoCommon'
  595. break;
  596. case '112': //计划用水户及取水单位(江苏)
  597. this.curEditDcdxInfo = 'editDcdxPwuAWiu'
  598. break;
  599. case '113': //饮用水水源地管理督查(江苏)
  600. this.curEditDcdxInfo = 'editDcdxDrinkWaterSource'
  601. break;
  602. case '115': //小水库(山东)
  603. this.curEditDcdxInfo = 'editDcdxXskSd'
  604. break;
  605. case '116': //小水电隐患管理(福建)
  606. this.curEditDcdxInfo = 'editDcdxXsdyhgl'
  607. break;
  608. case '117': //小水电隐患管理(福建)
  609. this.curEditDcdxInfo = 'editDcdxRdwpgd'
  610. break;
  611. case '119': //工程质量监督(福建)
  612. this.curEditDcdxInfo = 'editDcdxInfoFjqa'
  613. break;
  614. case '120': //计划用水户取水口(江苏)
  615. this.curEditDcdxInfo = 'editDcdxInfoJhyshqsk'
  616. break;
  617. case '121': //法人安全生产标准化评审(福建)
  618. this.curEditDcdxInfo = 'editDcdxInfoFraqscbzhps'
  619. break;
  620. case '122': //管理单位安全生产标准化评审(福建)
  621. this.curEditDcdxInfo = 'editDcdxInfoGldwaqscbzhps'
  622. break;
  623. case '123': //施工企业安全生产标准化评审(福建)
  624. this.curEditDcdxInfo = 'editDcdxInfoSgqyaqscbzhps'
  625. break;
  626. case '124': //设计单位安全生产标准化评审(福建)
  627. this.curEditDcdxInfo = 'editDcdxInfoSjdwaqscbzhps'
  628. break;
  629. case '125': //监理单位安全生产标准化评审(福建)
  630. this.curEditDcdxInfo = 'editDcdxInfoJldwaqscbzhps'
  631. break;
  632. case '126': //取用水户及取用水情况检查(江苏)
  633. this.curEditDcdxInfo = 'editDcdxInfoJspwiu2024'
  634. break;
  635. case '127': //取用水户及取用水情况检查(江苏)
  636. this.curEditDcdxInfo = 'editDcdxInfoSdqa'
  637. break;
  638. case '128': //福建通用问题督查
  639. this.curEditDcdxInfo = 'editDcdxInfoFjTongyongWtDc'
  640. break;
  641. // case '101': //江苏水资源和节水管理专项
  642. // this.curEditDcdxInfo = 'editDcdxInfoWrsAndWswmSpe'
  643. // break;
  644. default:
  645. this.curEditDcdxInfo = 'editDcdxInfoyudiba'
  646. break;
  647. }
  648. }
  649. }
  650. }
  651. </script>
  652. <style lang="scss" scoped>
  653. </style>