manage-client 4.0.20 → 4.0.22
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/.gradle/8.5/checksums/checksums.lock +0 -0
- package/.gradle/8.5/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/8.5/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.5/fileChanges/last-build.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.5/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/file-system.probe +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/package.json +1 -1
- package/src/components/sale/businessquery/WebHandplanQuery.vue +1 -0
- package/src/filiale/yangchun/UserQuery.vue +26 -0
- package/src/filiale/yangchun/config/exportConfig.js +2 -1
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -240,6 +240,26 @@
|
|
|
240
240
|
condition="f_gas_date <= '{} 23:59:59'">
|
|
241
241
|
</datepicker>
|
|
242
242
|
</div>
|
|
243
|
+
<div class="col-sm-2 form-group">
|
|
244
|
+
<label for="startGasDate1" class="font_normal_body">档案通气时间</label>
|
|
245
|
+
<datepicker id="startGasDate1" placeholder="开始日期" style="width:60%"
|
|
246
|
+
v-model="model.startGasDate1"
|
|
247
|
+
:value.sync="model.startGasDate1"
|
|
248
|
+
:format="'yyyy-MM-dd'"
|
|
249
|
+
:show-reset-button="true"
|
|
250
|
+
condition="f_uservent_date >= '{} 00:00:00'">
|
|
251
|
+
</datepicker>
|
|
252
|
+
</div>
|
|
253
|
+
<div class="col-sm-2 form-group">
|
|
254
|
+
<label for="endGasDate1" class="font_normal_body"> 至 </label>
|
|
255
|
+
<datepicker id="endGasDate1" placeholder="结束日期" style="width:60%"
|
|
256
|
+
v-model="model.endGasDate1"
|
|
257
|
+
:value.sync="model.endGasDate1"
|
|
258
|
+
:format="'yyyy-MM-dd'"
|
|
259
|
+
:show-reset-button="true"
|
|
260
|
+
condition="f_uservent_date <= '{} 23:59:59'">
|
|
261
|
+
</datepicker>
|
|
262
|
+
</div>
|
|
243
263
|
<!--表册片区-->
|
|
244
264
|
<div class="col-sm-2 form-group">
|
|
245
265
|
<label class="font_normal_body">表册片区</label>
|
|
@@ -386,6 +406,9 @@
|
|
|
386
406
|
<th>
|
|
387
407
|
<nobr>通气时间</nobr>
|
|
388
408
|
</th>
|
|
409
|
+
<th>
|
|
410
|
+
<nobr>档案通气时间</nobr>
|
|
411
|
+
</th>
|
|
389
412
|
<th>
|
|
390
413
|
<nobr>发卡状态</nobr>
|
|
391
414
|
</th>
|
|
@@ -485,6 +508,9 @@
|
|
|
485
508
|
<td :class="row.f_user_state !== '正常'? 'back-red' : 'back-blue'" style="text-align: center;">
|
|
486
509
|
<nobr>{{row.f_gas_date}}</nobr>
|
|
487
510
|
</td>
|
|
511
|
+
<td :class="row.f_user_state !== '正常'? 'back-red' : 'back-blue'" style="text-align: center;">
|
|
512
|
+
<nobr>{{row.f_uservent_date}}</nobr>
|
|
513
|
+
</td>
|
|
488
514
|
<td :class="row.f_user_state !== '正常'? 'back-red' : 'back-blue'" style="text-align: center;">
|
|
489
515
|
<nobr>{{row.f_whether_hairpin}}</nobr>
|
|
490
516
|
</td>
|