3fd45c008a2d687dcde9c967a23c25d48ab2bfd9.svn-base 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709
  1. <template>
  2. <div style="height:100%;width:100%;">
  3. <el-container style="height:100%;width:100%;">
  4. <el-aside
  5. width="320px"
  6. style="border-right:2px solid #d5d5ff;float:left"
  7. :style="{'max-height':testHeight+'px','height':testHeight+'px'}"
  8. >
  9. <div
  10. class="tree"
  11. style="height: 100%"
  12. width="100%"
  13. overflow="auto"
  14. display="inline-flex;"
  15. >
  16. <el-tree
  17. :highlight-current="true"
  18. style="height:100%;"
  19. :data="treeData"
  20. node-key="id"
  21. show-checkbox
  22. :expand-on-click-node="false"
  23. @check-change="handleCheckChange"
  24. ref="jigou_tree"
  25. >
  26. <div class="custom-tree-node" slot-scope="{ node, data }">
  27. <span style="float:left;">{{ data.name}}</span>
  28. </div>
  29. </el-tree>
  30. </div>
  31. </el-aside>
  32. <el-main id="dxdcListMainsk" style="padding:5px 20px;">
  33. <el-row>
  34. <el-col :span="24">
  35. <el-form
  36. :inline="true"
  37. size="mini"
  38. class="demo-form-inline"
  39. style="padding-left: 10px;"
  40. >
  41. <el-form-item label="督查状态">
  42. <el-select v-model="dcType" clearable placeholder="督查状态">
  43. <el-option label="未督查" value="0"></el-option>
  44. <el-option label="督查中" value="1"></el-option>
  45. <el-option label="已督查" value="2"></el-option>
  46. </el-select>
  47. </el-form-item>
  48. <!-- <el-form-item label="行政区名称">
  49. <el-input v-model="adName" clearable placeholder="行政区名称"></el-input>
  50. <addvSearch
  51. v-model="adName"
  52. :maxHeight="300"
  53. :maxWidth="250"
  54. :rootAddCode='"000000000000"'
  55. :level='"3"'
  56. :nameOrCode="'name'"
  57. ></addvSearch>
  58. </el-form-item> -->
  59. <el-form-item label="水闸名称">
  60. <el-input v-model="nm" placeholder="水闸名称" clearable></el-input>
  61. </el-form-item>
  62. <el-form-item label="工程规模">
  63. <el-select v-model="engScale" clearable placeholder="工程规模">
  64. <el-option
  65. v-for="item in engScales"
  66. :key="item.id"
  67. :label="item.name"
  68. :value="item.id"
  69. ></el-option>
  70. </el-select>
  71. </el-form-item>
  72. <!-- <el-form-item label="检查单位">
  73. <el-select v-model="orgName" clearable placeholder="检查单位">
  74. <el-option v-for="item in lyjg" :key="item.id" :label="item.pnm" :value="item.id"></el-option>
  75. </el-select>
  76. </el-form-item>-->
  77. <!-- <el-form-item label="所在组">
  78. <el-autocomplete
  79. v-model="groupName"
  80. clearable
  81. value-key="nm"
  82. :fetch-suggestions="querySearchAsync"
  83. placeholder="请输入内容"
  84. @select="handleSelect"
  85. ></el-autocomplete>
  86. </el-form-item> -->
  87. <el-form-item label="督查时间">
  88. <div style="display: flex;">
  89. <el-date-picker
  90. v-model="dateRange"
  91. type="daterange"
  92. value-format="yyyy-MM-dd"
  93. style="width:100%"
  94. range-separator="至"
  95. start-placeholder="开始日期"
  96. end-placeholder="结束日期"
  97. ></el-date-picker>
  98. </div>
  99. </el-form-item>
  100. <el-form-item>
  101. <el-button type="primary" @click="onSubmit">查询</el-button>
  102. </el-form-item>
  103. <!-- <el-button
  104. type="success"
  105. style="float:right;margin-left:5px"
  106. @click="showPlDialog"
  107. icon="el-icon-upload2"
  108. :disabled="disabled"
  109. >批量填报</el-button>-->
  110. <!-- 水闸批量导入弹窗 -->
  111. <dctb-sz-pl
  112. v-if="showShuiZhaTianBaoPl"
  113. :id="this.currentNodeId"
  114. @closePlDialog="closePlDialog"
  115. ></dctb-sz-pl>
  116. </el-form>
  117. </el-col>
  118. </el-row>
  119. <el-table
  120. :data="skDataList"
  121. style="width: 100%"
  122. :height="dxdcMainHeight"
  123. v-loading="expLoading"
  124. >
  125. <el-table-column
  126. prop="province"
  127. label="省" v-if="isXj"
  128. show-overflow-tooltip
  129. min-width="100"
  130. align="center"
  131. ></el-table-column>
  132. <el-table-column
  133. prop="city"
  134. :label="ownAdName"
  135. show-overflow-tooltip
  136. min-width="100"
  137. align="center"
  138. ></el-table-column>
  139. <el-table-column
  140. prop="county"
  141. label="县"
  142. v-if="isXj"
  143. show-overflow-tooltip
  144. min-width="100"
  145. align="center"
  146. ></el-table-column>
  147. <el-table-column
  148. show-overflow-tooltip
  149. prop="nm"
  150. label="水闸名称"
  151. min-width="130"
  152. align="center"
  153. fixed="left"
  154. ></el-table-column>
  155. <!-- <el-table-column
  156. prop="riverName"
  157. label="检查单位"
  158. show-overflow-tooltip
  159. min-width="120"
  160. align="center"
  161. ></el-table-column> -->
  162. <!-- <el-table-column
  163. prop="groupName"
  164. label="所在组"
  165. show-overflow-tooltip
  166. min-width="150"
  167. align="center"
  168. ></el-table-column> -->
  169. <el-table-column
  170. prop="intm1"
  171. label="督查时间"
  172. show-overflow-tooltip
  173. min-width="120"
  174. align="center"
  175. ></el-table-column>
  176. <el-table-column prop="wtdstState" label="督查状态" align="center" min-width="130">
  177. <template slot-scope="scope">
  178. <span
  179. style="padding: 3px 10px;background:#F56C6C;border-radius:15px;color:rgba(255,255,255,1)"
  180. v-if="scope.row.wtdstState == 0"
  181. >未督查</span>
  182. <span
  183. style="padding: 3px 10px;background:#67C23A;border-radius:15px;color:rgba(255,255,255,1)"
  184. v-if="scope.row.wtdstState == 1"
  185. >督查中</span>
  186. <span
  187. style="padding: 3px 10px;background:#27C19F;border-radius:15px;color:rgba(255,255,255,1)"
  188. v-if="scope.row.wtdstState == 2"
  189. >已督查</span>
  190. </template>
  191. </el-table-column>
  192. <el-table-column
  193. prop="engScal"
  194. label="工程规模"
  195. :formatter="formatEngScal"
  196. min-width="100"
  197. ></el-table-column>
  198. <el-table-column
  199. prop="gateType"
  200. label="水闸类型"
  201. :formatter="formatGateType"
  202. min-width="100"
  203. ></el-table-column>
  204. <el-table-column
  205. prop="location"
  206. show-overflow-tooltip
  207. min-width="200"
  208. label="水闸所在位置"
  209. ></el-table-column>
  210. <el-table-column
  211. show-overflow-tooltip
  212. prop="gateAdmName"
  213. min-width="180"
  214. label="管理单位"
  215. ></el-table-column>
  216. <el-table-column prop="mrsCiStat" label="管理责任体系" align="center" min-width="130">
  217. <template slot-scope="scope">
  218. <p
  219. style="cursor:pointer;color:#F56C6C;"
  220. v-if="scope.row.mrsCiStat == 0 || !scope.row.mrsCiStat"
  221. >待填报</p>
  222. <p
  223. style="cursor:pointer;color:#fbb56d"
  224. v-if="scope.row.mrsCiStat == 1"
  225. >未完成</p>
  226. <p
  227. style="cursor:pointer;color:#67C23A"
  228. v-if="scope.row.mrsCiStat == 2"
  229. >已完成</p>
  230. </template>
  231. </el-table-column>
  232. <el-table-column prop="safeStat" label="安全管理" align="center" min-width="130">
  233. <template slot-scope="scope">
  234. <p
  235. style="cursor:pointer;color:#F56C6C;"
  236. v-if="scope.row.safeStat == 0"
  237. >待填报</p>
  238. <p
  239. style="cursor:pointer;color:#fbb56d"
  240. v-if="scope.row.safeStat == 1"
  241. >未完成</p>
  242. <p
  243. style="cursor:pointer;color:#67C23A"
  244. v-if="scope.row.safeStat == 2"
  245. >已完成</p>
  246. </template>
  247. </el-table-column>
  248. <el-table-column
  249. prop="dmamStat"
  250. label="日常管理和维修养护"
  251. align="center"
  252. min-width="130"
  253. >
  254. <template slot-scope="scope">
  255. <p
  256. style="cursor:pointer;color:#F56C6C;"
  257. v-if="scope.row.dmamStat == 0"
  258. >待填报</p>
  259. <p
  260. style="cursor:pointer;color:#fbb56d"
  261. v-if="scope.row.dmamStat == 1"
  262. >未完成</p>
  263. <p
  264. style="cursor:pointer;color:#67C23A"
  265. v-if="scope.row.dmamStat == 2"
  266. >已完成</p>
  267. </template>
  268. </el-table-column>
  269. <el-table-column prop="proenStat" label="工程实体" align="center" min-width="130">
  270. <template slot-scope="scope">
  271. <p
  272. style="cursor:pointer;color:#F56C6C;"
  273. v-if="scope.row.proenStat == 0"
  274. >待填报</p>
  275. <p
  276. style="cursor:pointer;color:#fbb56d"
  277. v-if="scope.row.proenStat == 1"
  278. >未完成</p>
  279. <p
  280. style="cursor:pointer;color:#67C23A"
  281. v-if="scope.row.proenStat == 2"
  282. >已完成</p>
  283. </template>
  284. </el-table-column>
  285. <el-table-column align="center" label="操作" min-width="220" fixed="right">
  286. <template slot-scope="scope">
  287. <el-button
  288. size="mini"
  289. type="success"
  290. plain
  291. @click="sZInfo(scope.row,'dcInfo')"
  292. >查看</el-button>
  293. </template>
  294. </el-table-column>
  295. </el-table>
  296. <el-pagination
  297. background
  298. :pager-count="5"
  299. :current-page="pageIndex"
  300. :page-size="pageSize"
  301. :page-sizes="[10, 20, 30, 40, 50, 100]"
  302. layout="sizes, total, prev, pager, next"
  303. :total="total"
  304. @current-change="pageIndexChange"
  305. @size-change="handleSizeChange"
  306. ></el-pagination>
  307. </el-main>
  308. <sztb
  309. v-if="showShuiZhaTianBao"
  310. :rowData="rowData"
  311. :currentObjectRgstrId="currentObjectRgstrId"
  312. :currentResCode="currentResCode"
  313. :currentGroupId="currentGroupId"
  314. :currentAdcode="currentAdcode"
  315. :currentObjectId="currentObjectId"
  316. :currentObjectName="currentResName"
  317. :currentObjectEngScale="currentEngScale"
  318. :showOrEdit="showOrEdit"
  319. :gdX="gdX"
  320. :gdY="gdY"
  321. @cancelHandler="cancelHandler"
  322. @addShuiKuSuccess="addShuiKuSuccess"
  323. ></sztb>
  324. </el-container>
  325. <!-- 水闸督查信息 -->
  326. <popupSz
  327. ref="shuizaJcxxRef"
  328. v-if="showSzDuChaInfo"
  329. :currentDuchaTpe="currentDuchaTpe"
  330. :currentObjectRgstrId="currentObjectRgstrId"
  331. :currentGroupId="currentGroupId"
  332. :currentResCode="currentResCode"
  333. :currentObjectId="currentObjectId"
  334. :currentObjectName="currentResName"
  335. @cancelHandler="szCancelHandler"
  336. ></popupSz>
  337. </div>
  338. </template>
  339. <script>
  340. import request from "../../../utils/gw_ajax_request.js";
  341. import { dateFormat } from "../../../utils/gw_date.js";
  342. import provTreeList from "../../../widgets/provTreeList.vue";
  343. import sztb from "../../duChaTianBao/sztb.vue";
  344. import dctbSzPl from "../../duChaTianBao/dctb_sz_piliang.vue";
  345. import addvSearch from "../../../widgets/addvSearch.vue";
  346. import popupSz from "../../zongHeXinXiOl/components/popupWindow/sz/main.vue";
  347. export default {
  348. components: {
  349. provTreeList: provTreeList,
  350. sztb: sztb,
  351. dctbSzPl: dctbSzPl,
  352. addvSearch,
  353. popupSz
  354. },
  355. props: [],
  356. data() {
  357. return {
  358. dateRange: [],
  359. nm: "",
  360. lyjg: [],
  361. engScales: [
  362. { id: "1", name: "大型" },
  363. { id: "2", name: "中型" },
  364. { id: "3", name: "小型" },
  365. { id: "4", name: "其他" }
  366. ],
  367. engScale: "",
  368. orgName: "",
  369. groupName: "",
  370. groupId: "",
  371. groups: [],
  372. sttm: "",
  373. ettm: "",
  374. adName: "",
  375. treeData: [],
  376. dxdcMainHeight: window.innerHeight - 290,
  377. testHeight: window.innerHeight - 111,
  378. skDataList: [],
  379. pageIndex: 1,
  380. pageSize: 20,
  381. total: 0,
  382. tableHeight: 0,
  383. currentResCode: "",
  384. currentResName: "",
  385. currentObjectId: "",
  386. currentObjectRgstrId: "",
  387. currentObjectInfoObject: null,
  388. showShuiZhaTianBao: false,
  389. currentAdCode: "",
  390. currentNodeId: "",
  391. rsvrName: "",
  392. dcType: "",
  393. rowData: "",
  394. disabled: false,
  395. showShuiZhaTianBaoPl: false,
  396. downIcon: "el-icon-download",
  397. expLoading: false,
  398. currentEngScale: "",
  399. currentGroupId: "",
  400. currentAdcode: "",
  401. showOrEdit: "",
  402. gdX: 0,
  403. gdY: 0,
  404. adCodes: [],
  405. baseurl: "",
  406. showSzDuChaInfo: false,
  407. currentDuchaTpe: false, //督查还是未督查
  408. currentRsCode: "", //当前水库id
  409. currentRsName: "", //当前水库名称
  410. currentRgstrId: "", //当前登记表id
  411. currentObjId: "", //当前objId
  412. xskRgstrId: ""
  413. };
  414. },
  415. computed: {
  416. persId() {
  417. return localStorage.getItem("userid")
  418. ? localStorage.getItem("userid")
  419. : "1098101939614724096";
  420. },
  421. isAdmin: function() {
  422. return localStorage.getItem("isAdmin")
  423. ? localStorage.getItem("isAdmin")
  424. : "";
  425. }
  426. },
  427. mounted() {
  428. this.getLeftTreeData();
  429. // this.getSkDataList();
  430. this.getAllGroup();
  431. let h = document.getElementById("dxdcListMainsk").offsetHeight;
  432. this.tableHeight = h - 100;
  433. },
  434. activated() {
  435. this.getLeftTreeData();
  436. this.currentNodeId = "";
  437. this.rsvrName = "";
  438. this.dcType = "";
  439. // this.getSkDataList();
  440. },
  441. watch: {
  442. // currentNodeId(n, o) {
  443. // this.getSkDataList();
  444. // },
  445. groupName(n, o) {
  446. if (n == "") {
  447. this.groupId = "";
  448. }
  449. },
  450. adCodes(val) {
  451. if(val.length){
  452. this.getSkDataList();
  453. }
  454. }
  455. },
  456. methods: {
  457. //获取所有的组
  458. getAllGroup() {
  459. var _self = this;
  460. request
  461. .get("/dc/user/getGroupByPersid", {
  462. params: { persid: this.persId, ptype: "6" }
  463. })
  464. .then(res => {
  465. if (res.success) {
  466. _self.groups = res.data;
  467. }
  468. });
  469. },
  470. querySearchAsync(queryString, cb) {
  471. var restaurants = this.groups;
  472. var results = queryString
  473. ? restaurants.filter(this.createStateFilter(queryString))
  474. : restaurants;
  475. clearTimeout(this.timeout);
  476. this.timeout = setTimeout(() => {
  477. cb(results);
  478. }, 1500 * Math.random());
  479. },
  480. createStateFilter(queryString) {
  481. return state => {
  482. return (
  483. state.nm.toLowerCase().indexOf(queryString.toLowerCase()) !=
  484. -1
  485. );
  486. };
  487. },
  488. handleSelect(item) {
  489. this.groupId = item.id;
  490. },
  491. getLeftTreeData() {
  492. var _self = this;
  493. _self.lyjg = [];
  494. request
  495. .get(
  496. `/bis/insp/BisInspConfigOrgAd/getAdByPersId/${
  497. this.persId
  498. }/${6}`
  499. )
  500. .then(res => {
  501. let data = res.data;
  502. data.forEach(ele => {
  503. if (ele.pid == null || ele.pid == "") {
  504. ele.pid = "006";
  505. }
  506. if (ele.id.length == 6) {
  507. _self.lyjg.push(ele);
  508. }
  509. });
  510. data = _self.getTrees(data);
  511. _self.treeData = data;
  512. });
  513. },
  514. //格式化树形数据
  515. getTrees(list) {
  516. //@wxcwater重写方法 适应多个树
  517. let highLevelLength = 99; //预设最大节点id长度,目前最大应该为12,所以设置为99保证正常
  518. let _self = this;
  519. list.forEach((item, index) => {
  520. item["pidLength"] =
  521. item.pid && item.pid != "" ? item.pid.length : 0;
  522. if (highLevelLength > item.pidLength) {
  523. highLevelLength = item.pidLength;
  524. }
  525. });
  526. let heightLevelNode = [];
  527. list.forEach((item, index) => {
  528. if (highLevelLength >= item.pidLength) {
  529. heightLevelNode.push(item);
  530. }
  531. });
  532. list.forEach((item, index) => {
  533. heightLevelNode.forEach(pItem => {
  534. _self.addTreeNode(pItem, item);
  535. });
  536. });
  537. return heightLevelNode;
  538. },
  539. addTreeNode: function(treeNode, leafNode) {
  540. let _self = this;
  541. if (!treeNode.hasOwnProperty("children")) {
  542. treeNode["children"] = [];
  543. }
  544. if (leafNode.pid == treeNode.id) {
  545. treeNode.children.push(leafNode);
  546. return;
  547. }
  548. treeNode.children.forEach(item => {
  549. _self.addTreeNode(item, leafNode);
  550. });
  551. },
  552. handleCheckChange() {
  553. this.adCodes = [];
  554. let nodes = this.$refs.jigou_tree.getCheckedNodes();
  555. nodes.forEach(item => {
  556. this.adCodes.push(item.id);
  557. });
  558. },
  559. treeNodeClickHandler: function(data, node, tree) {
  560. this.currentNodeId = data.id;
  561. },
  562. provTreeSelectChangeHandler: function(params) {
  563. this.currentAdCode = params.likeCode;
  564. this.getSkDataList();
  565. },
  566. formatGateType: function(row, column) {
  567. return row.gateType == "1"
  568. ? "分(泄)洪闸"
  569. : row.gateType == "2"
  570. ? "节制闸"
  571. : row.gateType == "3"
  572. ? "排(退)水闸"
  573. : row.gateType == "4"
  574. ? "引(进)水闸"
  575. : row.gateType == "5"
  576. ? "挡潮闸"
  577. : row.gateType == "6"
  578. ? "船闸"
  579. : "其他";
  580. },
  581. formatEngScal: function(row, column) {
  582. return row.engScal == "1"
  583. ? "大型"
  584. : row.engScal == "2"
  585. ? "中型"
  586. : row.engScal == "3"
  587. ? "小型"
  588. : "其他";
  589. },
  590. getSkDataList: function() {
  591. this.getSKList_xsk();
  592. },
  593. onSubmit() {
  594. if(this.adCodes.length){
  595. this.getSkDataList();
  596. }
  597. },
  598. cancelHandler() {
  599. this.showShuiZhaTianBao = false;
  600. },
  601. addShuiKuSuccess() {
  602. this.getSkDataList();
  603. // this.showShuiZhaTianBao = false;
  604. },
  605. pageIndexChange(val) {
  606. this.pageIndex = val;
  607. this.getSkDataList();
  608. },
  609. handleSizeChange(val) {
  610. this.pageSize = val;
  611. this.getSkDataList();
  612. },
  613. // 下载填报模板
  614. downloadTemplate() {
  615. // this.downIcon = 'el-icon-loading'
  616. this.expLoading = true;
  617. //Promise.all().then(()=>{
  618. let href =
  619. "/api/dc/impExcel/downloadTemplate/sk?userId=" +
  620. this.persId +
  621. "&id=" +
  622. this.currentNodeId;
  623. const a = document.createElement("a"); // 创建a标签
  624. a.setAttribute("download", "水闸填报模板.xls"); // download属性
  625. a.setAttribute("href", href); // href链接
  626. console.log(a.href);
  627. a.click(); // 自执行点击事件
  628. // }).then(()=>{
  629. this.disabled = false;
  630. this.expLoading = false;
  631. //})
  632. // this.downIcon = 'el-icon-download'
  633. },
  634. showPlDialog() {
  635. this.showShuiZhaTianBaoPl = true;
  636. },
  637. closePlDialog(val) {
  638. this.showShuiZhaTianBaoPl = false;
  639. },
  640. getSKList_xsk() {
  641. let data = {
  642. // type: "rsvr",
  643. presId: this.persId,
  644. // pType: "6",
  645. pageSize: this.pageSize,
  646. pageNum: this.pageIndex,
  647. rsName: this.nm,
  648. state: this.dcType,
  649. adName: this.adName,
  650. sttm: this.dateRange && this.dateRange.length > 1 ? this.dateRange[0]: null,
  651. entm: this.dateRange && this.dateRange.length > 1 ? this.dateRange[1]: null,
  652. riverId: this.orgName,
  653. engScal: this.engScale,
  654. groupId: this.groupId,
  655. adCodes: this.adCodes.toString()
  656. };
  657. request
  658. .post(this.baseurl + "/att/waga/rgstr/list/page", data)
  659. .then(res => {
  660. res.data.list.forEach(item => {
  661. if (item.intm) {
  662. item.intm1 = dateFormat(item.intm, "yyyy-MM-dd");
  663. }
  664. });
  665. this.skDataList = res.data.list;
  666. this.total = res.data.total;
  667. });
  668. },
  669. sZInfo(row, info) {
  670. this.currentDuchaTpe = true;
  671. this.showSzDuChaInfo = true;
  672. this.currentObjectRgstrId = row.rgstrId;
  673. this.currentResCode = row.code;
  674. this.currentGroupId = row.groupId;
  675. this.currentObjectId = row.objId;
  676. this.currentResName = row.nm
  677. },
  678. szCancelHandler() {
  679. this.showSzDuChaInfo = false;
  680. }
  681. }
  682. };
  683. </script>
  684. <style>
  685. #dcdxHeader {
  686. padding: 15px 20px;
  687. }
  688. #dxdcFooter {
  689. text-align: center;
  690. }
  691. #dxdcAside {
  692. border: 1px solid #d5d5ff;
  693. }
  694. .el-table .warning-row {
  695. background: oldlace;
  696. }
  697. .el-table .success-row {
  698. background: #f0f9eb;
  699. }
  700. </style>