manage-client 4.0.30 → 4.0.31
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/filiale/fugou/OtherChargeDetailQuery.vue +74 -0
- package/src/filiale/fugou/OtherChargeQuery.vue +731 -0
- package/src/filiale/fugou/config/exportConfig.js +1 -0
- package/src/filiale/fugou/sale.js +4 -0
- package/src/filiale/ningjin/GasStatistics.vue +4 -4
- package/src/filiale/ningjin/config/exportConfig.js +1099 -386
- package/src/filiale/ningjin/report/ReportList.vue +2 -2
- package/src/filiale/yangchun/ArchivesManage.vue +89 -0
- package/src/filiale/yangchun/DeviceQuery.vue +1 -1
- package/src/filiale/yangchun/RecordInfoQuery.vue +1 -1
- package/src/filiale/yangchun/sale.js +2 -0
- package/src/filiale/jinbin/exportConfig.js +0 -1110
- package/src/filiale/jinbin/sale/businessquery/ChargeQuery.vue +0 -1372
- package/src/filiale/jinbin/sale.js +0 -7
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
<div class="col-sm-2">
|
|
19
19
|
<label class="font_normal_body">客户编号</label>
|
|
20
20
|
<input @keyup.enter="search" style="width:60%" type="text" class="input_search" v-model="model.f_userinfo_code" placeholder='客户编号'
|
|
21
|
-
condition="ss.f_userinfo_code
|
|
21
|
+
condition="ss.f_userinfo_code = '{}'" v-next-el='f_userinfo_code' v-el:meternumber
|
|
22
22
|
>
|
|
23
23
|
</div>
|
|
24
24
|
<div class="col-sm-2">
|
|
25
25
|
<label class="font_normal_body">客户名称</label>
|
|
26
26
|
<input @keyup.enter="search" style="width:60%" type="text" class="input_search" v-model="model.f_username" placeholder='客户名称'
|
|
27
|
-
condition="ss.f_user_name
|
|
27
|
+
condition="ss.f_user_name = '{}'" v-next-el='userid' v-el:username>
|
|
28
28
|
</div>
|
|
29
29
|
<div class="col-sm-2">
|
|
30
30
|
<label class="font_normal_body">客户地址</label>
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
<div class="col-sm-2">
|
|
50
50
|
<label class="font_normal_body">电 话</label>
|
|
51
51
|
<input @keyup.enter="search" style="width:60%" type="text" class="input_search" v-model="model.f_user_phone" placeholder='电话'
|
|
52
|
-
condition="ss.f_user_phone
|
|
52
|
+
condition="ss.f_user_phone = '{}'" v-next-el='f_user_phone' v-el:f_user_phone
|
|
53
53
|
>
|
|
54
54
|
</div>
|
|
55
55
|
<div class="col-sm-2">
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
<div class="col-sm-2">
|
|
61
61
|
<label class="font_normal_body">表 号</label>
|
|
62
62
|
<input @keyup.enter="search" style="width:60%" type="text" class="input_search" v-model="model.f_meternumber" placeholder='表号'
|
|
63
|
-
condition="ss.f_meternumber
|
|
63
|
+
condition="ss.f_meternumber = '{}'" v-next-el='meternumber' v-el:meternumber
|
|
64
64
|
>
|
|
65
65
|
</div>
|
|
66
66
|
<div class="col-sm-2">
|