manage-client 3.3.176 → 3.3.178
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/filiale/kelai/GasStatistics.vue +536 -525
- package/src/filiale/meihekou/ChargeQuery.vue +10 -1
- package/src/filiale/meihekou/HandplanQuery.vue +8 -0
- package/src/filiale/taizhoukesi/ChangeMeterQuery.vue +683 -0
- package/src/filiale/taizhoukesi/config/exportConfig.js +2 -0
- package/src/filiale/taizhoukesi/sale.js +4 -0
- package/src/filiale/tongchuan/ResSelectGroupNew.vue +7 -0
- package/.gradle/7.4/checksums/checksums.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.4/fileChanges/last-build.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.4/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/file-system.probe +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
|
@@ -316,9 +316,17 @@
|
|
|
316
316
|
<v-select :value.sync="model.f_terminal_name" multiple
|
|
317
317
|
v-model="model.f_terminal_name"
|
|
318
318
|
:options='$parent.$parent.posEquipment' placeholder='请选择'
|
|
319
|
-
condition="
|
|
319
|
+
condition="f_terminal_name in {}"
|
|
320
320
|
close-on-select></v-select>
|
|
321
321
|
</div>
|
|
322
|
+
<div class="col-sm-2 form-group">
|
|
323
|
+
<label for="endDate" class="font_normal_body">操作人员</label>
|
|
324
|
+
<input type="text" style="width:60%"
|
|
325
|
+
class="input_search"
|
|
326
|
+
v-model="model.f_operator"
|
|
327
|
+
condition="f_operator like '%{}%'"
|
|
328
|
+
placeholder='请输入操作人员'>
|
|
329
|
+
</div>
|
|
322
330
|
</div>
|
|
323
331
|
</div>
|
|
324
332
|
</criteria>
|
|
@@ -1048,6 +1056,7 @@
|
|
|
1048
1056
|
if(this.IdCardInfo!=''){
|
|
1049
1057
|
args.condition +=` and f_idnumber='${this.IdCardInfo}'`
|
|
1050
1058
|
}
|
|
1059
|
+
this.condition = args.condition
|
|
1051
1060
|
this.model.search(args.condition, args.model)
|
|
1052
1061
|
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums;
|
|
1053
1062
|
this.card=''
|
|
@@ -300,6 +300,14 @@
|
|
|
300
300
|
condition="f_result_state = '{}'"
|
|
301
301
|
close-on-select></v-select>
|
|
302
302
|
</div>
|
|
303
|
+
<div class="col-sm-2 form-group">
|
|
304
|
+
<label for="endDate" class="font_normal_body">操作人员</label>
|
|
305
|
+
<input type="text" style="width:60%"
|
|
306
|
+
class="input_search"
|
|
307
|
+
v-model="model.f_operator"
|
|
308
|
+
condition="f_operator like '%{}%'"
|
|
309
|
+
placeholder='请输入操作人员'>
|
|
310
|
+
</div>
|
|
303
311
|
</div>
|
|
304
312
|
</div>
|
|
305
313
|
</criteria>
|