|
@@ -655,7 +655,7 @@ export default {
|
|
|
let that = this
|
|
|
let parArr = []
|
|
|
for(let i in row) {
|
|
|
- if (i.indexOf('ID_')) {
|
|
|
+ if (i.indexOf('ID_') !== -1) {
|
|
|
parArr.push(row[i])
|
|
|
}
|
|
|
}
|
|
@@ -987,15 +987,15 @@ export default {
|
|
|
color: #50C14E;
|
|
|
}
|
|
|
}
|
|
|
- .el-table {
|
|
|
- .indicitem{
|
|
|
- color: #409EFF;
|
|
|
- font-size: 12px;
|
|
|
- margin-right: 20px;
|
|
|
- cursor:pointer;
|
|
|
- &:hover{
|
|
|
- text-decoration: underline;
|
|
|
- }
|
|
|
+ }
|
|
|
+ .el-table {
|
|
|
+ .indicitem{
|
|
|
+ color: #409EFF;
|
|
|
+ font-size: 12px;
|
|
|
+ margin-right: 20px;
|
|
|
+ cursor:pointer;
|
|
|
+ &:hover{
|
|
|
+ text-decoration: underline;
|
|
|
}
|
|
|
}
|
|
|
}
|