8b7ddd2d by renchao@pashanhoo.com

Merge branch 'master' into dev

2 parents 9f18d6c8 8a948318
...@@ -255,13 +255,13 @@ ...@@ -255,13 +255,13 @@
255 } 255 }
256 } 256 }
257 257
258 .el-textarea.is-disabled .el-textarea__inner {
259 background-color: transparent !important;
260 color: #4a4a4a;
261 }
262
258 // 登簿日志弹出框 263 // 登簿日志弹出框
259 .commonDialog { 264 .commonDialog {
260 .el-textarea.is-disabled .el-textarea__inner {
261 background-color: none !important;
262 color: #4a4a4a;
263 }
264
265 .el-dialog__headerbtn .el-dialog__close { 265 .el-dialog__headerbtn .el-dialog__close {
266 font-size: 20px; 266 font-size: 20px;
267 color: #4162D8 267 color: #4162D8
...@@ -304,8 +304,6 @@ ...@@ -304,8 +304,6 @@
304 304
305 .el-textarea.is-disabled .el-textarea__inner { 305 .el-textarea.is-disabled .el-textarea__inner {
306 @include borderColor("border"); 306 @include borderColor("border");
307 background-color: none !important;
308 color: #4a4a4a;
309 } 307 }
310 308
311 .editXML { 309 .editXML {
......
1 import { Message } from "element-ui"; 1 import { Message } from "element-ui";
2 export function removeTreeListItem (treeList, dictId, idName = 'bsmDict') { 2 export function removeTreeListItem (treeList, dictId, idName = 'dictid') {
3
4 if (!treeList || !treeList.length) { 3 if (!treeList || !treeList.length) {
5 return 4 return
6 } 5 }
......
...@@ -287,6 +287,7 @@ ...@@ -287,6 +287,7 @@
287 }); 287 });
288 }, 288 },
289 handleMinus (index, row) { 289 handleMinus (index, row) {
290 console.log(this.tableData, row.dictid, 'dictid');
290 removeTreeListItem(this.tableData, row.dictid, 'dictid'); 291 removeTreeListItem(this.tableData, row.dictid, 'dictid');
291 this.tableData = judgeSort(this.tableData) 292 this.tableData = judgeSort(this.tableData)
292 this.key++; 293 this.key++;
......