manage-client 4.0.88 → 4.0.89-linshi
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/6.1.1/fileContent/fileContent.lock +0 -0
- package/.gradle/file-system.probe +0 -0
- package/package.json +1 -1
- package/src/filiale/qianneng/GasLossQuery.vue +17 -0
- package/src/filiale/qianneng/exportConfig.js +1 -1
- package/src/filiale/rongcheng/DeviceQuery.vue +5 -13
- package/src/filiale/rongcheng/businessquery/ChangeMeterQuery.vue +0 -4
- package/src/filiale/rongcheng/exportConfig.js +1 -1
- package/src/main.js +2 -2
- 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 +0 -2
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -87,6 +87,14 @@
|
|
|
87
87
|
condition="f_payment in {}"
|
|
88
88
|
close-on-select></v-select>
|
|
89
89
|
</div>
|
|
90
|
+
<div class="col-sm-2 form-group">
|
|
91
|
+
<label class="font_normal_body" title="参数:收费状态">收费状态</label>
|
|
92
|
+
<v-select :value.sync="model.f_state"
|
|
93
|
+
v-model="model.f_state"
|
|
94
|
+
:options='$parent.$parent.paymentState' placeholder='请选择'
|
|
95
|
+
condition="f_state = '{}'"
|
|
96
|
+
close-on-select></v-select>
|
|
97
|
+
</div>
|
|
90
98
|
|
|
91
99
|
</div>
|
|
92
100
|
</div>
|
|
@@ -135,6 +143,9 @@
|
|
|
135
143
|
<th>
|
|
136
144
|
<nobr>支付单号</nobr>
|
|
137
145
|
</th>
|
|
146
|
+
<th>
|
|
147
|
+
<nobr>收费状态</nobr>
|
|
148
|
+
</th>
|
|
138
149
|
<th>
|
|
139
150
|
<nobr>详情</nobr>
|
|
140
151
|
</th>
|
|
@@ -196,6 +207,9 @@
|
|
|
196
207
|
<td style="text-align: center;">
|
|
197
208
|
<nobr>{{row.f_pay_id}}</nobr>
|
|
198
209
|
</td>
|
|
210
|
+
<td style="text-align: center;">
|
|
211
|
+
<nobr>{{row.f_state}}</nobr>
|
|
212
|
+
</td>
|
|
199
213
|
<td style="text-align: center;">
|
|
200
214
|
<nobr>{{row.detail}}</nobr>
|
|
201
215
|
</td>
|
|
@@ -570,6 +584,9 @@
|
|
|
570
584
|
payment() {
|
|
571
585
|
return [{label: '全部', value: ''},...this.$appdata.getParam('付款方式查询')]
|
|
572
586
|
},
|
|
587
|
+
paymentState() {
|
|
588
|
+
return [{label: '全部', value: ''},...this.$appdata.getParam('收费状态')]
|
|
589
|
+
},
|
|
573
590
|
gaslosstypes() {
|
|
574
591
|
return [{label: '全部', value: ''},...this.$appdata.getParam('气损分类')]
|
|
575
592
|
}
|
|
@@ -77,7 +77,7 @@ export default{
|
|
|
77
77
|
'f_number': '数量', 'f_unitprice': '单价', 'f_collection': '金额',
|
|
78
78
|
'f_payment': '付款方式', 'f_bill_style': '打印格式',
|
|
79
79
|
'f_serial_id': '流水号', 'f_pay_id': '支付单号', 'detail': '详细信息', 'f_charge_date': '缴费日期',
|
|
80
|
-
'f_orgname': '公司', 'f_depname': '部门', 'f_operator': '操作员'
|
|
80
|
+
'f_orgname': '公司', 'f_depname': '部门', 'f_operator': '操作员', 'f_state': '收费状态'
|
|
81
81
|
},
|
|
82
82
|
batchBankConfig2: {
|
|
83
83
|
'f_userinfo_code': '客户编号', 'f_userinfo_id': '用户编号', 'phone': '客户电话', 'f_user_name': '客户姓名', 'f_address': '客户地址',
|
|
@@ -72,13 +72,14 @@
|
|
|
72
72
|
condition="f_meternumber like '%{}%'" placeholder='所属表(表号)'>
|
|
73
73
|
</div>
|
|
74
74
|
|
|
75
|
-
<div class="col-sm-2 form-group"
|
|
76
|
-
<label class="font_normal_body">设备类型</label>
|
|
75
|
+
<div class="col-sm-2 form-group">
|
|
76
|
+
<label class="font_normal_body" >设备类型</label>
|
|
77
77
|
<v-select :value.sync="model.f_devices_type"
|
|
78
78
|
v-model="model.f_devices_type"
|
|
79
|
-
:options='$parent.$parent.
|
|
79
|
+
:options='$parent.$parent.devicestype' placeholder='请选择'
|
|
80
80
|
condition="f_devices_type = '{}'"
|
|
81
|
-
close-on-select
|
|
81
|
+
close-on-select :search="false">
|
|
82
|
+
</v-select>
|
|
82
83
|
</div>
|
|
83
84
|
<div class="col-sm-2 form-group" >
|
|
84
85
|
<label class="font_normal_body">购买方式</label>
|
|
@@ -226,15 +227,6 @@
|
|
|
226
227
|
</v-select>
|
|
227
228
|
</div>
|
|
228
229
|
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes"></res-select-group>
|
|
229
|
-
<div class="col-sm-2 form-group">
|
|
230
|
-
<label class="font_normal_body" >设备类型</label>
|
|
231
|
-
<v-select :value.sync="model.f_devices_type"
|
|
232
|
-
v-model="model.f_devices_type"
|
|
233
|
-
:options='$parent.$parent.devicestype' placeholder='请选择'
|
|
234
|
-
condition="f_devices_type = '{}'"
|
|
235
|
-
close-on-select :search="false">
|
|
236
|
-
</v-select>
|
|
237
|
-
</div>
|
|
238
230
|
</div>
|
|
239
231
|
</div>
|
|
240
232
|
</criteria>
|
|
@@ -325,10 +325,6 @@
|
|
|
325
325
|
</tr>
|
|
326
326
|
</template>
|
|
327
327
|
<template partial='body'>
|
|
328
|
-
<td style="text-align: center;"><nobr>
|
|
329
|
-
<button v-if="!row.f_changetables_check_state && $login.r.includes('换表审核') && row.f_state !== '终止'" class="button_search button_spacing width-60" @click.stop="$parent.$parent.$parent.checkData(row)">审核</button>
|
|
330
|
-
<span v-if="row.f_changetables_check_state">{{row.f_changetables_check_state}}</span>
|
|
331
|
-
</nobr></td>
|
|
332
328
|
<td style="text-align: center;"><nobr>
|
|
333
329
|
<span @click="$parent.$parent.$parent.showmsg(row)"><a>{{row.f_userinfo_code}}</a></span>
|
|
334
330
|
</nobr> </td>
|
package/src/main.js
CHANGED
|
@@ -6,8 +6,8 @@ import { all } from 'vue-client'
|
|
|
6
6
|
import { system } from 'system-clients'
|
|
7
7
|
import { ldap } from 'ldap-clients'
|
|
8
8
|
import saleManage from './saleManage'
|
|
9
|
-
import ShanXianSaleManage from './filiale/
|
|
10
|
-
import ShanXianwebSaleManage from './filiale/
|
|
9
|
+
import ShanXianSaleManage from './filiale/rongcheng/sale'
|
|
10
|
+
import ShanXianwebSaleManage from './filiale/rongcheng/webmeterManage'
|
|
11
11
|
import webmeterManage from './webmeterManage'
|
|
12
12
|
import reportManage from './reportManage'
|
|
13
13
|
import newmanage from './newmanage'
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
File without changes
|