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