zpf 9 ヶ月 前
コミット
773f2d4450
1 ファイル変更18 行追加3 行削除
  1. 18 3
      src/components/Query/clickQuery/clickQuery.vue

+ 18 - 3
src/components/Query/clickQuery/clickQuery.vue

@@ -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>