seimin 2 år sedan
förälder
incheckning
51704b0f1f
2 ändrade filer med 12 tillägg och 4 borttagningar
  1. 9 3
      components/fjj-condition/fjj-condition.vue
  2. 3 1
      pages/inspectList/inspectList.vue

+ 9 - 3
components/fjj-condition/fjj-condition.vue

@@ -183,6 +183,9 @@
183 183
       keyWordGvie: {
184 184
         type: String,
185 185
       },
186
+			keyWordOld: {
187
+        type: String,
188
+      },
186 189
       bedNumSortGvie: {
187 190
         type: Boolean,
188 191
       },
@@ -209,7 +212,7 @@
209 212
       ldSelect,
210 213
     },
211 214
     created() {
212
-      this.keyWord = this.keyWordGvie;
215
+      this.keyWord = this.keyWordGvie || '';
213 216
       this.bedNumSort = this.bedNumSortGvie;
214 217
       this.resetResult();
215 218
       uni.getSystemInfo({
@@ -298,7 +301,7 @@
298 301
             item.type === "single" ?
299 302
             (obj[item.key] = [new Date().Format("yyyy/MM/dd")]) :
300 303
             item.type === "keyWord" ?
301
-            (obj[item.key] = this.keyWord || '') :
304
+            (obj[item.key] = this.keyWord ? [this.keyWord] : []) :
302 305
             (obj[item.key] = "");
303 306
         });
304 307
         return obj;
@@ -356,15 +359,18 @@
356 359
         });
357 360
       },
358 361
       resetClick() {
362
+				console.log(this.result, this.keyWordOld);
359 363
         this.minNumber = "";
360 364
         this.maxNumber = "";
361
-        this.keyWord = "";
365
+        this.keyWord = this.keyWordOld || '';
362 366
         this.bedNumSort = false;
363 367
         this.single = [new Date().Format("yyyy/MM/dd")];
364 368
         for (let key in this.result) {
365 369
           if ((typeof this.result[key] == "object") && key != "inspectState") {
366 370
             if (key == "yyTime") {
367 371
               this.result[key] = [new Date().Format("yyyy/MM/dd")];
372
+            } else if (key == "keyWord") {
373
+              this.result[key] = this.keyWordOld ? [this.keyWordOld] : [];
368 374
             } else {
369 375
               this.result[key] = [];
370 376
             }

+ 3 - 1
pages/inspectList/inspectList.vue

@@ -100,7 +100,7 @@
100 100
     <bigScreen></bigScreen>
101 101
     <!-- 筛选 -->
102 102
     <fjj-condition @touchmove.stop :list="list" :visibleDrawer="visibleDrawer" @result="resultConditon"
103
-      :keyWordGvie="searchlist.keyWord" :bedNumSortGvie="searchlist.bedNumSort" :inspectStateList="inspectStateList" />
103
+      :keyWordGvie="searchlist.keyWord" :keyWordOld="keyWordOld" :bedNumSortGvie="searchlist.bedNumSort" :inspectStateList="inspectStateList" />
104 104
     <!-- 弹窗 -->
105 105
     <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
106 106
       @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
@@ -122,6 +122,7 @@
122 122
   export default {
123 123
     data() {
124 124
       return {
125
+				keyWordOld: '',
125 126
 				currentInspect: null,
126 127
 				// 弹窗model1
127 128
 				models1: {
@@ -551,6 +552,7 @@
551 552
         this.currenDept.id = id;
552 553
         this.currenDept.dept = dept;
553 554
         this.currenDept.patientCode = patientCode;
555
+				this.keyWordOld = patientCode;
554 556
       } else if (patientCurrentDept) {
555 557
         this.currenDept.id = patientCurrentDept.id;
556 558
         this.currenDept.dept = patientCurrentDept.dept;