|
@@ -544,12 +544,12 @@ export default {
|
|
|
}
|
|
|
if (e.features[u].fieldNames) {
|
|
|
linSAr.fieldNames.forEach((fieldName, i) => {
|
|
|
- let perjson = parseJson.filter(p=> p.fieldname.toUpperCase() == fieldName);
|
|
|
+ let perjson = parseJson.filter(p => p.fieldname.toUpperCase() == fieldName);
|
|
|
if (perjson.length > 0) {
|
|
|
var show = condition(perjson[0]);
|
|
|
var order = perjson[0].order || linSAr.fieldNames.length;
|
|
|
- if(fieldName != perjson[0].fieldaliasname)
|
|
|
- fieldName=perjson[0].fieldaliasname
|
|
|
+ if (fieldName != perjson[0].fieldaliasname)
|
|
|
+ fieldName = perjson[0].fieldaliasname
|
|
|
}
|
|
|
if (linSAr.fieldValues[i] != "" && show) {
|
|
|
let v = linSAr.fieldValues[i];
|
|
@@ -942,4 +942,19 @@ export default {
|
|
|
.el-table::before {
|
|
|
background: rgba(10, 25, 38, 0) !important;
|
|
|
}
|
|
|
+
|
|
|
+/deep/ .el-collapse-item__header {
|
|
|
+ background-color: transparent !important;
|
|
|
+ color: rgb(217, 237, 254) !important;
|
|
|
+}
|
|
|
+
|
|
|
+/deep/ .el-collapse {
|
|
|
+ border: none
|
|
|
+ /* border-top: 1px solid #EBEEF5; */
|
|
|
+ /* border-bottom: 1px solid #EBEEF5; */
|
|
|
+}
|
|
|
+
|
|
|
+/deep/ .el-collapse-item__content {
|
|
|
+ padding-bottom: 0px
|
|
|
+}
|
|
|
</style>
|