manage-client 4.0.88 → 4.0.89-rc-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 +6 -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 +1 -1
- 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
|
@@ -135,6 +135,9 @@
|
|
|
135
135
|
<th>
|
|
136
136
|
<nobr>支付单号</nobr>
|
|
137
137
|
</th>
|
|
138
|
+
<th>
|
|
139
|
+
<nobr>收费状态</nobr>
|
|
140
|
+
</th>
|
|
138
141
|
<th>
|
|
139
142
|
<nobr>详情</nobr>
|
|
140
143
|
</th>
|
|
@@ -196,6 +199,9 @@
|
|
|
196
199
|
<td style="text-align: center;">
|
|
197
200
|
<nobr>{{row.f_pay_id}}</nobr>
|
|
198
201
|
</td>
|
|
202
|
+
<td style="text-align: center;">
|
|
203
|
+
<nobr>{{row.f_state}}</nobr>
|
|
204
|
+
</td>
|
|
199
205
|
<td style="text-align: center;">
|
|
200
206
|
<nobr>{{row.detail}}</nobr>
|
|
201
207
|
</td>
|
|
@@ -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,7 +6,7 @@ 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/
|
|
9
|
+
import ShanXianSaleManage from './filiale/rongcheng/sale'
|
|
10
10
|
import ShanXianwebSaleManage from './filiale/qianneng/webmeterManage'
|
|
11
11
|
import webmeterManage from './webmeterManage'
|
|
12
12
|
import reportManage from './reportManage'
|
|
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
|