Browse Source

Merge branch 'dev/v4.9.4_tsz' of qmx/jy into release/v4.9.4

汤世哲 1 year ago
parent
commit
2cf5fc2ce4
1 changed files with 7 additions and 2 deletions
  1. 7 2
      src/web/templates/pc/supsearch.html

+ 7 - 2
src/web/templates/pc/supsearch.html

@@ -3477,7 +3477,7 @@ function checkTagDisabled () {
         if (newval.length === 0) {
           this.filterProperty.searchCheckList = oldval
         }
-      },
+      }
     },
     created: function () {
       // this.getAreaData()
@@ -4209,7 +4209,12 @@ function checkTagDisabled () {
           data.forEach((v, i) => {
             this.propertyListData[item].forEach(s => {
               if(s.name === v) {
-                _this.apiFilterProperty[key].push(s.value)
+                if(item === '合同周期') {
+                  this.filterProperty[key] = [s.name]
+                  _this.apiFilterProperty[key]= [s.value]
+                } else {
+                  _this.apiFilterProperty[key].push(s.value)
+                }
               }
             })
           });