33d65b4a8bd3ae4e3542b60f8cbc561ad2f18fe6.svn-base 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659
  1. <template>
  2. <div v-loading="tableLoading" class="nysgc">
  3. <el-container>
  4. <el-header id="dcdxHeader" style="height:120px;padding:10px 0px;">
  5. <el-row :gutter="10" style="margin-top: 5px;">
  6. <el-col :span="6">
  7. <el-tag size="small" style="width: 220px;text-align: center;">
  8. <i class="el-icon-info"></i>
  9. <span style="margin-left: 5px">{{this.adName + " " + '暗访饮水工程个数总计:'}}</span>
  10. <span style="font-weight: 700;margin-left: 5px">{{this.totalt}}</span>
  11. </el-tag>
  12. </el-col>
  13. <el-col :span="18" style="text-align:right;"></el-col>
  14. </el-row>
  15. <el-row>
  16. <el-col :span="24">
  17. <el-form :inline="true" size="mini" class="demo-form-inline" style="padding-left: 10px;">
  18. <el-form-item label="行政区名称">
  19. <el-input v-model="searchObj.adNm" clearable placeholder="行政区名称"></el-input>
  20. </el-form-item>
  21. <el-form-item label="检查单位">
  22. <el-select v-model="searchObj.chkComId" clearable placeholder="检查单位">
  23. <el-option v-for="item in lyjg1" :key="item.id" :label="item.nm" :value="item.id"></el-option>
  24. </el-select>
  25. </el-form-item>
  26. </el-form>
  27. </el-col>
  28. <el-col :span="24">
  29. <el-form :inline="true" size="mini" class="demo-form-inline" style="padding-left: 10px;">
  30. <el-form-item label="所在组">
  31. <el-autocomplete v-model="groupName" clearable value-key='nm' :fetch-suggestions="querySearchAsync" placeholder="请输入内容"
  32. @select="handleSelect"></el-autocomplete>
  33. </el-form-item>
  34. <el-form-item label="督查时间">
  35. <div style="display: flex;">
  36. <el-date-picker v-model="searchObj.startDate" type="date" value-format="yyyy-MM-dd" placeholder="选择日期"></el-date-picker>
  37. <p style="padding-left: 10px;padding-right: 10px;">至</p>
  38. <el-date-picker v-model="searchObj.endDate" type="date" value-format="yyyy-MM-dd" placeholder="选择日期"></el-date-picker>
  39. </div>
  40. </el-form-item>
  41. <el-form-item>
  42. <el-button type="primary" @click="onSubmit">查询</el-button>
  43. </el-form-item>
  44. </el-form>
  45. </el-col>
  46. </el-row>
  47. </el-header>
  48. <el-main
  49. style="overflow-x: hidden;padding:5px 0px;margin-bottom: 0px;"
  50. :style="{'height':dxdcMainHeight+'px'}"
  51. >
  52. <el-row style="margin-bottom: 0px;margin-bottom: 0px;">
  53. <el-table border :data="tableData" height="400" tooltip-effect="dark" style="width: 100%">
  54. <el-table-column label="概况">
  55. <el-table-column align="center" show-overflow-tooltip prop="province" label="省" v-if="isXj" min-width="100"></el-table-column>
  56. <el-table-column align="center" show-overflow-tooltip prop="city" :label="ownAdName" min-width="100"></el-table-column>
  57. <el-table-column align="center" show-overflow-tooltip prop="county" label="县(区)" min-width="100"></el-table-column>
  58. <el-table-column align="center" show-overflow-tooltip prop="town" label="乡(镇)" min-width="100"></el-table-column>
  59. <el-table-column align="center" show-overflow-tooltip prop="chkCom" label="检查单位" min-width="120"></el-table-column>
  60. <el-table-column align="center" show-overflow-tooltip prop="groupNm" label="所在组" min-width="100"></el-table-column>
  61. <el-table-column
  62. prop="visitDate"
  63. sortable
  64. label="暗访日期"
  65. min-width="100"
  66. show-overflow-tooltip
  67. align="center"
  68. ></el-table-column>
  69. <el-table-column
  70. fixed
  71. prop="pjnm"
  72. label="工程名称"
  73. align="center"
  74. show-overflow-tooltip
  75. min-width="150"
  76. ></el-table-column>
  77. <el-table-column
  78. prop="villageNm"
  79. label="所在地"
  80. align="center"
  81. show-overflow-tooltip
  82. min-width="150"
  83. ></el-table-column>
  84. <el-table-column prop="buildYear" align="center" label="建成年份" min-width="80"></el-table-column>
  85. <el-table-column
  86. prop="planSupplyScale"
  87. label="设计供水规模(m³/d)"
  88. min-width="150"
  89. align="center"
  90. ></el-table-column>
  91. <el-table-column
  92. prop="supplyScale"
  93. label="实际供水规模(m³/d)"
  94. min-width="150"
  95. align="center"
  96. ></el-table-column>
  97. <el-table-column prop="personNum" label="覆盖人口(人)" min-width="120" align="center"></el-table-column>
  98. <el-table-column align="center" label="管网漏损率(%)" min-width="150">
  99. <template slot-scope="scope">
  100. <span>{{scope.row.pipeDamagePer ? scope.row.pipeDamagePer * 100 + '%' : ''}}</span>
  101. </template>
  102. </el-table-column>
  103. <el-table-column
  104. align="center"
  105. prop="projectType"
  106. label="工程类别"
  107. min-width="120"
  108. show-overflow-tooltip
  109. >
  110. <template slot-scope="scope">
  111. <span v-if="scope.row.projectType == 1">千吨万人</span>
  112. <span v-else-if="scope.row.projectType == 2">千吨万人以下工程</span>
  113. <span v-else-if="scope.row.projectType == 3">分散式工程</span>
  114. <span v-else>城市管网延伸</span>
  115. </template>
  116. </el-table-column>
  117. <el-table-column align="center" label="是否24小时不间断供水" min-width="200">
  118. <template slot-scope="scope">
  119. <span>{{shifouRadio(scope.row.is24hSupply)}}</span>
  120. </template>
  121. </el-table-column>
  122. </el-table-column>
  123. <el-table-column label="水质保障">
  124. <el-table-column label="净化设施设备" align="center">
  125. <el-table-column label="是否配备" align="center">
  126. <template slot-scope="scope">
  127. <span>{{shifouRadio(scope.row.isHavecleanEqui)}}</span>
  128. </template>
  129. </el-table-column>
  130. <el-table-column label="是否正常运行" align="center" min-width="130">
  131. <template slot-scope="scope">
  132. <span>{{shifouRadio(scope.row.isCleanequiG)}}</span>
  133. </template>
  134. </el-table-column>
  135. </el-table-column>
  136. <el-table-column label="消毒设备" align="center">
  137. <el-table-column prop="isHavedisinfect" label="是否配备" align="center">
  138. <template slot-scope="scope">
  139. <span>{{shifouRadio(scope.row.isHavedisinfect)}}</span>
  140. </template>
  141. </el-table-column>
  142. <el-table-column prop="disinfectType" label="消毒方式" align="center">
  143. <template slot-scope="scope">
  144. <span v-if="scope.row.disinfectType == 1">液氯</span>
  145. <span v-else-if="scope.row.disinfectType == 2">二氧化氯</span>
  146. <span v-else-if="scope.row.disinfectType == 3">次氯酸钠</span>
  147. <span v-else-if="scope.row.disinfectType == 4">臭氧</span>
  148. <span v-else>紫外线</span>
  149. </template>
  150. </el-table-column>
  151. <el-table-column
  152. prop="isDisinfectGood"
  153. label="是否正常运行"
  154. align="center"
  155. min-width="110"
  156. >
  157. <template slot-scope="scope">
  158. <span>{{shifouRadio(scope.row.isDisinfectGood)}}</span>
  159. </template>
  160. </el-table-column>
  161. </el-table-column>
  162. <el-table-column label="水质检测报告" align="center">
  163. <el-table-column prop="isHavereport" label="有无报告" align="center" min-width="110">
  164. <template slot-scope="scope">
  165. <span>{{youwuRadio(scope.row.isHavereport)}}</span>
  166. </template>
  167. </el-table-column>
  168. <el-table-column prop="isQuailtyGood" label="是否达标" align="center" min-width="110">
  169. <template slot-scope="scope">
  170. <span>{{shifouRadio(scope.row.isQuailtyGood)}}</span>
  171. </template>
  172. </el-table-column>
  173. </el-table-column>
  174. <el-table-column label="千吨万人水厂水质化验室" align="center">
  175. <el-table-column prop="isHaveLab" label="是否配备" align="center">
  176. <template slot-scope="scope">
  177. <span>{{shifouRadio(scope.row.isHaveLab)}}</span>
  178. </template>
  179. </el-table-column>
  180. <el-table-column prop="isDailyCheck" label="是否开展日检" align="center" min-width="110">
  181. <template slot-scope="scope">
  182. <span>{{shifouRadio(scope.row.isDailyCheck)}}</span>
  183. </template>
  184. </el-table-column>
  185. <el-table-column
  186. prop="isDailycheckGood"
  187. label="水质是否达标"
  188. align="center"
  189. min-width="110"
  190. >
  191. <template slot-scope="scope">
  192. <span>{{shifouRadio(scope.row.isDailycheckGood)}}</span>
  193. </template>
  194. </el-table-column>
  195. </el-table-column>
  196. </el-table-column>
  197. <el-table-column label="运行管理" align="center">
  198. <el-table-column label="有无取水许可证" align="center" min-width="130">
  199. <template slot-scope="scope">
  200. <span>{{youwuRadio(scope.row.isInsLicence)}}</span>
  201. </template>
  202. </el-table-column>
  203. <el-table-column label="有无卫生许可证" align="center" min-width="130">
  204. <template slot-scope="scope">
  205. <span>{{youwuRadio(scope.row.isSanLicence)}}</span>
  206. </template>
  207. </el-table-column>
  208. <el-table-column label="自动化控制系统" align="center">
  209. <el-table-column label="是否配备" align="center">
  210. <template slot-scope="scope">
  211. <span>{{shifouRadio(scope.row.isAutosystem)}}</span>
  212. </template>
  213. </el-table-column>
  214. <el-table-column label="是否正常运行" align="center" min-width="130">
  215. <template slot-scope="scope">
  216. <span>{{shifouRadio(scope.row.isAutosysGood)}}</span>
  217. </template>
  218. </el-table-column>
  219. </el-table-column>
  220. <el-table-column label="视频安防系统" align="center">
  221. <el-table-column label="是否配备" align="center" min-width="110">
  222. <template slot-scope="scope">
  223. <span>{{shifouRadio(scope.row.isVideoSystem)}}</span>
  224. </template>
  225. </el-table-column>
  226. <el-table-column label="是否正常运行" align="center" min-width="130">
  227. <template slot-scope="scope">
  228. <span>{{shifouRadio(scope.row.isVideosysGood)}}</span>
  229. </template>
  230. </el-table-column>
  231. </el-table-column>
  232. <el-table-column label="水费水价" align="center">
  233. <el-table-column prop="waterFee" label="执行水价(元/ m³)" align="center" min-width="140"></el-table-column>
  234. <el-table-column prop="waterCost" label="全成本(元/ m³)" align="center" min-width="140"></el-table-column>
  235. <el-table-column prop="operCost" label="运行成本(元/ m³)" align="center" min-width="140"></el-table-column>
  236. <el-table-column label="水费回收率(%)" align="center" min-width="140">
  237. <template slot-scope="scope">
  238. <span>{{scope.row.feeRecyclePer ? scope.row.feeRecyclePer * 100 + '%' : ''}}</span>
  239. </template>
  240. </el-table-column>
  241. </el-table-column>
  242. <el-table-column prop="manager" label="管理主体" align="center" show-overflow-tooltip>
  243. <template slot-scope="scope">
  244. <span v-if="scope.row.manager == 1">村委会</span>
  245. <span v-else-if="scope.row.manager == 2">乡镇政府或水管站</span>
  246. <span v-else-if="scope.row.manager == 3">供水公司</span>
  247. <span v-else>租赁承包</span>
  248. </template>
  249. </el-table-column>
  250. <el-table-column
  251. prop="isHaveHotline"
  252. label="是否配备供水服务热线电话"
  253. align="center"
  254. min-width="200"
  255. >
  256. <template slot-scope="scope">
  257. <span>{{shifouRadio(scope.row.isHaveHotline)}}</span>
  258. </template>
  259. </el-table-column>
  260. </el-table-column>
  261. <el-table-column label="填报状态" prop="status" align="center" min-width="100">
  262. <template slot-scope="scope">
  263. <span v-if="scope.row.status == 0">未填报</span>
  264. <span v-else>已填报</span>
  265. </template>
  266. </el-table-column>
  267. <!-- <el-table-column label="暗访日期" prop="visitDate" align="center" min-width="100"></el-table-column> -->
  268. <el-table-column label="记录人员" prop="recPers2" align="center"></el-table-column>
  269. <el-table-column label="记录人员电话" prop="recPersTel" align="center" min-width="150"></el-table-column>
  270. <el-table-column
  271. align="center"
  272. show-overflow-tooltip
  273. label="操作"
  274. min-width="100"
  275. fixed="right"
  276. >
  277. <template slot-scope="scope">
  278. <el-button type="primary" plain @click="showQus(scope.row)">问题</el-button>
  279. </template>
  280. </el-table-column>
  281. </el-table>
  282. </el-row>
  283. </el-main>
  284. <el-footer id="dxdcFooter" style="height: 35px;">
  285. <el-pagination
  286. background
  287. @current-change="handleCurrentChange"
  288. @size-change="handleSizeChange"
  289. :pager-count="5"
  290. :current-page.sync="pageNum"
  291. :page-size="pageSize"
  292. :page-sizes="[10, 20, 30, 40, 50, 100]"
  293. layout="sizes, total,prev, pager, next,jumper"
  294. :total="totalt"
  295. ></el-pagination>
  296. </el-footer>
  297. </el-container>
  298. <ysgcQueDialogShow
  299. v-if="shgcQueDialogShowItem"
  300. :currentObjectRgstrId="currentObjectRgstrId"
  301. :currentObjectId="currentObjectId"
  302. :currentObjectName="currentShgcName"
  303. :objType="2"
  304. :villType="3"
  305. @cancelHandler="cancelHandler"
  306. @addShuiKuSuccess="addShuiKuSuccess"
  307. ></ysgcQueDialogShow>
  308. </div>
  309. </template>
  310. <script>
  311. import request from "../../utils/gw_ajax_request.js";
  312. // import echartsPie from "../../widgets/echartsPie.vue";
  313. export default {
  314. components: {
  315. // echartsPie
  316. ysgcQueDialogShow: resolve => {
  317. require(["./ysgcQueDialogShow.vue"], resolve);
  318. }
  319. },
  320. props: ["engIdh", "adCode", "adName",'currentNodeType','fengongxianCode','lyjg', "fenggongxianName", 'fengongxianChildren'],
  321. data() {
  322. return {
  323. shgcQueDialogShowItem: false,
  324. gcType: [
  325. {
  326. label: "A-千吨万人",
  327. value: "1"
  328. },
  329. {
  330. label: "B-千吨万人以下工程",
  331. value: "2"
  332. },
  333. {
  334. label: "C-分散式工程",
  335. value: "3"
  336. },
  337. {
  338. label: "D-城市管网延伸",
  339. value: "4"
  340. }
  341. ],
  342. xdfs: [
  343. {
  344. label: "A-液氯",
  345. value: "1"
  346. },
  347. {
  348. label: "B-二氧化氯",
  349. value: "2"
  350. },
  351. {
  352. label: "C-次氯酸钠",
  353. value: "3"
  354. },
  355. {
  356. label: "D-臭氧",
  357. value: "4"
  358. },
  359. {
  360. label: "E-紫外线",
  361. value: "5"
  362. }
  363. ],
  364. glzt: [
  365. {
  366. label: "A-村委会",
  367. value: "1"
  368. },
  369. {
  370. label: "B-乡镇政府或水管站",
  371. value: "2"
  372. },
  373. {
  374. label: "C-供水公司",
  375. value: "3"
  376. },
  377. {
  378. label: "D-租赁承包",
  379. value: "4"
  380. }
  381. ],
  382. groups:[],
  383. groupId:'',
  384. lyjg1:[],
  385. groupName:'',
  386. sttm:'',
  387. ettm:'',
  388. chartData1: {},
  389. chartData2: {},
  390. isYZCount: "",
  391. isQSXKCount: "",
  392. isPKNotCount: "",
  393. searchObj: {
  394. pageNum: 1,
  395. pageSize: 10,
  396. adNm: "",
  397. adCode: "",
  398. persId: "",
  399. chkComId:'',
  400. chkCom:'',
  401. groupNm:'',
  402. groupId:'',
  403. startDate:'',
  404. endDate:'',
  405. },
  406. searchObjPK: {
  407. pjnm: "",
  408. engId: "",
  409. isDisinfectGood: "1"
  410. },
  411. searchObjQSXK: {
  412. pjnm: "",
  413. engId: "",
  414. isInsLicence: "1"
  415. },
  416. searchName: "",
  417. dxdcMainHeight: window.innerHeight - 327,
  418. pageNum: 1,
  419. pageSize: 10,
  420. totalt: 20,
  421. tableData: [],
  422. tableLoading: true,
  423. };
  424. },
  425. mounted() {
  426. this.searchObj.persId = this.userId;
  427. this.getAllGroup();
  428. // this.getVillageList();
  429. this.getVillageListXianByNode();
  430. // this.getChartDataPK();
  431. },
  432. watch: {
  433. lyjg(n,o){
  434. this.lyjg1 = this.lyjg;
  435. },
  436. groupName(n,o){
  437. if(n==''){
  438. this.groupId = '';
  439. }
  440. },
  441. fengongxianCode(newVal,oldVal){
  442. console.log(oldVal)
  443. console.log(newVal)
  444. if(newVal =='' || newVal ==null){
  445. this.tableData = []
  446. this.totalt = 0
  447. return
  448. }
  449. // if(newVal){
  450. // // if(this.currentNodeType == 'node'){
  451. // // this.tableLoading = true
  452. // // this.getVillageListXianByNode()
  453. // // }else{
  454. // // this.tableLoading = true
  455. // // this.getVillageListXian()
  456. // // }
  457. // this.tableLoading = true
  458. // this.getVillageListXianByNode()
  459. // }
  460. },
  461. fenggongxianName(){
  462. this.tableLoading = true;
  463. this.getVillageListXianByNode();
  464. }
  465. // adCode: function(n, o) {
  466. // if (n == "0") {
  467. // this.searchObj.adCode = "";
  468. // this.searchObj.engId = "";
  469. // this.tableLoading = true;
  470. // this.getVillageList();
  471. // } else if (n.length == 2) {
  472. // this.searchObj.adCode = n;
  473. // this.searchObj.engId = "";
  474. // this.tableLoading = true;
  475. // this.getVillageList();
  476. // } else {
  477. // this.searchObj.adCode = "";
  478. // this.searchObj.engId = this.engIdh;
  479. // this.tableLoading = true;
  480. // this.getVillageListXian();
  481. // }
  482. // }
  483. },
  484. computed: {
  485. userId: function() {
  486. return localStorage.getItem("userid")
  487. ? localStorage.getItem("userid")
  488. : "1098101939614724096";
  489. },
  490. isAdmin() {
  491. return localStorage.getItem("isAdmin") == 1 ? true : false;
  492. }
  493. },
  494. methods: {
  495. //获取所有的组
  496. getAllGroup(){
  497. var _self = this;
  498. request.get('/dc/user/getGroupByPersid',{params:{'persid':this.userId,'ptype':'2'}}).then((res)=>{
  499. if(res.success){
  500. _self.groups = res.data;
  501. }
  502. })
  503. },
  504. querySearchAsync(queryString, cb) {
  505. var restaurants = this.groups;
  506. var results = queryString ? restaurants.filter(this.createStateFilter(queryString)) : restaurants;
  507. clearTimeout(this.timeout);
  508. this.timeout = setTimeout(() => {
  509. cb(results);
  510. }, 1500 * Math.random());
  511. },
  512. createStateFilter(queryString) {
  513. return (state) => {
  514. return (state.nm.toLowerCase().indexOf(queryString.toLowerCase()) != -1);
  515. };
  516. },
  517. handleSelect(item) {
  518. console.log(item);
  519. this.groupId = item.id;
  520. },
  521. onSubmit(){
  522. this.getVillageListXianByNode();
  523. },
  524. getVillageList() {
  525. request
  526. .post(
  527. "/dc/insp/vlgdrinkProjManage/getPageByCodeAndPerId",
  528. this.searchObj
  529. )
  530. .then(res => {
  531. if (res.success) {
  532. this.tableLoading = false;
  533. this.tableData = res.data.list;
  534. this.totalt = res.data.total;
  535. }
  536. });
  537. },
  538. getVillageListXian() {
  539. this.searchObj.engId = this.engIdh
  540. request
  541. .post("/dc/insp/vlgdrinkProjManage/queryListByPage", this.searchObj)
  542. .then(res => {
  543. if (res.success) {
  544. this.tableLoading = false;
  545. this.tableData = res.data.list;
  546. this.totalt = res.data.total;
  547. }
  548. });
  549. },
  550. getVillageListXianByNode() {
  551. if(this.fengongxianChildren) {
  552. this.searchObj.nodeId = this.fengongxianCode
  553. this.searchObj.groupId = this.groupId
  554. delete this.searchObj.adNm;
  555. request
  556. .post("/dc/insp/vlgdrinkProjManage/getPageByNodeId", this.searchObj)
  557. .then(res => {
  558. if (res.success) {
  559. this.tableLoading = false;
  560. this.tableData = res.data.list;
  561. this.totalt = res.data.total;
  562. }
  563. });
  564. }else{
  565. this.searchObj.adNm = this.fenggongxianName
  566. this.searchObj.nodeId = this.fengongxianCode
  567. this.searchObj.groupId = this.groupId
  568. request
  569. .post("/dc/insp/vlgdrinkProjManage/getPageByNodeId", this.searchObj)
  570. .then(res => {
  571. if (res.success) {
  572. this.tableLoading = false;
  573. this.tableData = res.data.list;
  574. this.totalt = res.data.total;
  575. }
  576. });
  577. }
  578. },
  579. handleCurrentChange() {
  580. this.searchObj.pageNum = this.pageNum;
  581. this.getVillageListXianByNode()
  582. },
  583. handleSizeChange(val){
  584. this.searchObj.pageSize = val;
  585. this.getVillageListXianByNode()
  586. },
  587. shifouRadio(val) {
  588. if (val == "1") {
  589. return "是";
  590. } else if (val == "2" || val == "0") {
  591. return "否";
  592. }
  593. },
  594. youwuRadio(val) {
  595. if (val == "1") {
  596. return "有";
  597. } else if (val == "2" || val == "0") {
  598. return "无";
  599. }
  600. },
  601. showQus(rowId) {
  602. var _self = this;
  603. _self.currentObjectId = rowId.cwsCode;
  604. _self.currentShgcName = rowId.pjnm;
  605. _self.currentObjectRgstrId = rowId.rgstrId;
  606. _self.shgcQueDialogShowItem = true;
  607. },
  608. cancelHandler() {
  609. this.shgcQueDialogShowItem = false;
  610. }
  611. }
  612. };
  613. </script>
  614. <style>
  615. #dcdxHeader {
  616. padding: 10px 20px;
  617. }
  618. #dxdcFooter {
  619. text-align: center;
  620. }
  621. #dxdcAside {
  622. border: 1px solid #d5d5ff;
  623. }
  624. .el-form-item__content {
  625. z-index: 1;
  626. }
  627. .nysgc .el-table th > .cell {
  628. /*font-size: 16px;*/
  629. font-family: MicrosoftYaHei-Bold;
  630. font-weight: bold;
  631. color: rgba(51, 51, 51, 1);
  632. }
  633. .nysgc .el-table--border th,
  634. .el-table__fixed-right-patch {
  635. background: rgba(240, 240, 240, 1);
  636. box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1),
  637. 0px 1px 0px 0px rgba(0, 0, 0, 0.1), -1px 0px 0px 0px rgba(0, 0, 0, 0.1);
  638. }
  639. .nysgc .el-table td.is-hidden > *,
  640. .nysgc .el-table th.is-hidden > *,
  641. .el-table--hidden {
  642. visibility: visible;
  643. }
  644. </style>