manage-client 4.0.87 → 4.0.88

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.
File without changes
@@ -0,0 +1,2 @@
1
+ #Tue Apr 15 16:40:30 CST 2025
2
+ gradle.version=8.5
Binary file
File without changes
@@ -33,11 +33,17 @@ var proxyTable = {
33
33
  target: 'http://203.57.101.233:9001/'
34
34
 
35
35
  },
36
- '/api/af-revenue/sql/compreQuery': {
36
+ '/api/af-revenue/sql/WeChatPaydetail': {
37
37
  pathRewrite: {
38
- '^/api/af-revenue': '/'
38
+ '^/api/af-revenue': '/rs'
39
39
  },
40
- target: 'http://127.0.0.1:9026/'
40
+ target: 'http://127.0.0.1:8080/'
41
+ },
42
+ '/api/af-revenue/sql/WeChatPayment': {
43
+ pathRewrite: {
44
+ '^/api/af-revenue': '/rs'
45
+ },
46
+ target: 'http://127.0.0.1:8080/'
41
47
  },
42
48
  '/api': {
43
49
  target: 'http://192.168.50.67:31567/'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "4.0.87",
3
+ "version": "4.0.88",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -128,7 +128,18 @@
128
128
  <input type="text" style="width:60%" class="input_search" v-model="model.f_card_id"
129
129
  condition="f_card_id = '{}'" placeholder='卡号'>
130
130
  </div>
131
-
131
+ <div class="col-sm-2 form-group">
132
+ <label class="font_normal_body">收费来源</label>
133
+ <v-select id="f_state"
134
+ v-model="model.f_charge_source"
135
+ placeholder='请选择'
136
+ condition="f_charge_source in {}"
137
+ multiple="true"
138
+ :value.sync="model.f_charge_source"
139
+ :options='$parent.$parent.chargesource'
140
+ close-on-select clear-button>
141
+ </v-select>
142
+ </div>
132
143
  <div class="col-sm-2 form-group">
133
144
  <label class="font_normal_body">收费状态</label>
134
145
  <v-select id="f_state"
@@ -154,6 +165,18 @@
154
165
  close-on-select clear-button>
155
166
  </v-select>
156
167
  </div>
168
+ <div class="col-sm-2 form-group">
169
+ <label class="font_normal_body">银行名称</label>
170
+ <v-select id="f_payment"
171
+ v-model="model.f_bank_type"
172
+ placeholder='请选择'
173
+ multiple="true"
174
+ condition="f_bank_type in {}"
175
+ :value.sync="model.f_bank_type"
176
+ :options='$parent.$parent.banktype'
177
+ close-on-select clear-button>
178
+ </v-select>
179
+ </div>
157
180
  <div class="col-sm-2 form-group">
158
181
  <label class="font_normal_body">气表类型</label>
159
182
  <v-select :value.sync="model.f_meter_classify" multiple
@@ -199,6 +222,7 @@
199
222
  <th>
200
223
  <nobr>收费编号</nobr>
201
224
  </th>
225
+
202
226
  <th>
203
227
  <nobr>客户名称</nobr>
204
228
  </th>
@@ -226,6 +250,9 @@
226
250
  <th>
227
251
  <nobr>卡号</nobr>
228
252
  </th>
253
+ <th>
254
+ <nobr>收费来源</nobr>
255
+ </th>
229
256
  <th>
230
257
  <nobr>收据票号</nobr>
231
258
  </th>
@@ -263,6 +290,9 @@
263
290
  <th>
264
291
  <nobr>付款方式</nobr>
265
292
  </th>
293
+ <th>
294
+ <nobr>银行名称</nobr>
295
+ </th>
266
296
  <th>
267
297
  <nobr>状态</nobr>
268
298
  </th>
@@ -326,7 +356,9 @@
326
356
  <td style="text-align: center;">
327
357
  <nobr>{{row.f_card_id}}</nobr>
328
358
  </td>
329
-
359
+ <td style="text-align: center;">
360
+ <nobr>{{row.f_charge_source}}</nobr>
361
+ </td>
330
362
  <td style="text-align: center;">
331
363
  <nobr>{{row.f_bill_number}}</nobr>
332
364
  </td>
@@ -363,6 +395,9 @@
363
395
  <td style="text-align: center;">
364
396
  <nobr>{{row.f_payment}}</nobr>
365
397
  </td>
398
+ <td style="text-align: center;">
399
+ <nobr>{{row.f_bank_type}}</nobr>
400
+ </td>
366
401
  <td style="text-align: center;">
367
402
  <nobr>{{row.f_state}}</nobr>
368
403
  </td>
@@ -695,9 +730,15 @@
695
730
  chargeState() {
696
731
  return [{label: '全部', value: ''}, ...this.$appdata.getParam('收费状态')]
697
732
  },
733
+ chargesource() {
734
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('收费来源')]
735
+ },
698
736
  metertypes() {
699
737
  return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('气表类型')]
700
738
  },
739
+ banktype() {
740
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('银行名称')]
741
+ },
701
742
  payments() {
702
743
  return [{label: '全部', value: ''}, ...this.$appdata.getParam('付款方式')]
703
744
  }
@@ -89,7 +89,7 @@ export default{
89
89
  'f_address': '客户地址', 'f_user_phone': '客户电话', 'f_contact_phone': '安装联系电话', 'f_meter_classify': '气表类型',
90
90
  'f_meter_brand': '气表品牌', 'f_bill_number': '收据票号', 'f_brand_spec': '收费类型', 'f_typename': '品名规格',
91
91
  'f_typenumber': '型号', 'f_unitprice': '单价', 'f_number': '数量', 'f_money': '应收',
92
- 'f_collection': '收款', 'f_newbalance': '支出', 'f_newcurbalance': '收入', 'f_payment': '付款方式', 'f_state': '状态',
92
+ 'f_collection': '收款', 'f_newbalance': '支出', 'f_newcurbalance': '收入', 'f_payment': '付款方式', 'f_bank_type': '银行名称', 'f_state': '状态',
93
93
  'f_old_overdue': '违约金', 'f_operate_date': '收费日期', 'f_serial_id': '流水编号', 'f_service_person': '服务人员', 'f_comments': '备注',
94
94
  'f_operator': '操作员', 'f_depname': '部门', 'f_orgname': '公司'
95
95
  },
@@ -209,7 +209,6 @@
209
209
  <data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid @dblclick="$parent.$parent.toBusiness">
210
210
  <template partial='head'>
211
211
  <tr>
212
- <th><nobr>审核状态</nobr></th>
213
212
  <th>
214
213
  <!--<nobr>客户编号</nobr>-->
215
214
  <data-order field="f_userinfo_code" name="客户编号"
@@ -221,11 +220,17 @@
221
220
  <th>
222
221
  <nobr>档案编号</nobr>
223
222
  </th>
223
+ <th>
224
+ <nobr>用户电话</nobr>
225
+ </th>
224
226
  <th>
225
227
  <nobr>付款方式</nobr>
226
228
  </th>
227
229
  <th>
228
- <nobr>气表底数</nobr>
230
+ <nobr>上期底数</nobr>
231
+ </th>
232
+ <th>
233
+ <nobr>本期底数</nobr>
229
234
  </th>
230
235
  <th>
231
236
  <nobr>表上余额</nobr>
@@ -256,9 +261,9 @@
256
261
  <th>
257
262
  <nobr>新表号</nobr>
258
263
  </th>
259
- <th>
260
- <nobr>表封号</nobr>
261
- </th>
264
+ <!-- <th>-->
265
+ <!-- <nobr>表封号</nobr>-->
266
+ <!-- </th>-->
262
267
  <th>
263
268
  <nobr>旧气表品牌</nobr>
264
269
  </th>
@@ -271,9 +276,9 @@
271
276
  <th>
272
277
  <nobr>补气金额</nobr>
273
278
  </th>
274
- <th>
275
- <nobr>订单编号</nobr>
276
- </th>
279
+ <!-- <th>-->
280
+ <!-- <nobr>订单编号</nobr>-->
281
+ <!-- </th>-->
277
282
  <th>
278
283
  <nobr>备注</nobr>
279
284
  </th>
@@ -299,8 +304,21 @@
299
304
  </th>
300
305
  <th><nobr>旧表类型</nobr></th>
301
306
  <th><nobr>新表类型</nobr></th>
307
+ <th>
308
+ <nobr>上期底数</nobr>
309
+ </th>
310
+ <th>
311
+ <nobr>本期底数</nobr>
312
+ </th>
313
+ <th>
314
+ <nobr>换表前气价名称</nobr>
315
+ </th>
316
+ <th>
317
+ <nobr>换表后气价名称</nobr>
318
+ </th>
302
319
  <th><nobr>用户类型</nobr></th>
303
- <th><nobr>附件</nobr></th>
320
+ <th><nobr>查看</nobr></th>
321
+ <th><nobr>审核状态</nobr></th>
304
322
  <th><nobr>审核时间</nobr></th>
305
323
  <th><nobr>审核人</nobr></th>
306
324
  <th><nobr>审核原因</nobr></th>
@@ -308,7 +326,7 @@
308
326
  </template>
309
327
  <template partial='body'>
310
328
  <td style="text-align: center;"><nobr>
311
- <button v-if="!row.f_changetables_check_state && $login.r.includes('换表审核')" class="button_search button_spacing width-60" @click.stop="$parent.$parent.$parent.checkData(row)">审核</button>
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>
312
330
  <span v-if="row.f_changetables_check_state">{{row.f_changetables_check_state}}</span>
313
331
  </nobr></td>
314
332
  <td style="text-align: center;"><nobr>
@@ -320,12 +338,18 @@
320
338
  <td style="text-align: center;">
321
339
  <nobr>{{row.f_olduserinfo_code}}</nobr>
322
340
  </td>
341
+ <td style="text-align: center;">
342
+ <nobr>{{row.f_user_phone}}</nobr>
343
+ </td>
323
344
  <td style="text-align: center;">
324
345
  <nobr>{{row.f_payment}}</nobr>
325
346
  </td>
326
347
  <td style="text-align: center;">
327
348
  <nobr>{{row.f_meter_base}}</nobr>
328
349
  </td>
350
+ <td style="text-align: center;">
351
+ <nobr>{{row.f_using_base_old}}</nobr>
352
+ </td>
329
353
  <td style="text-align: center;">
330
354
  <nobr>{{row.f_balance_amount}}</nobr>
331
355
  </td>
@@ -354,9 +378,9 @@
354
378
  <td style="text-align: center;">
355
379
  <nobr>{{row.f_meternumber}}</nobr>
356
380
  </td>
357
- <td style="text-align: center;">
358
- <nobr>{{row.f_metertitles}}</nobr>
359
- </td>
381
+ <!-- <td style="text-align: center;">-->
382
+ <!-- <nobr>{{row.f_metertitles}}</nobr>-->
383
+ <!-- </td>-->
360
384
  <td style="text-align: center;">
361
385
  <nobr>{{row.f_meter_brand_old}}</nobr>
362
386
  </td>
@@ -369,9 +393,9 @@
369
393
  <td style="text-align: center;">
370
394
  <nobr>{{row.f_remanent_money}}</nobr>
371
395
  </td>
372
- <td style="text-align: center;">
373
- <nobr>{{row.f_serial_number}}</nobr>
374
- </td>
396
+ <!-- <td style="text-align: center;">-->
397
+ <!-- <nobr>{{row.f_serial_number}}</nobr>-->
398
+ <!-- </td>-->
375
399
  <td style="text-align: center;">
376
400
  <nobr>{{row.f_comments}}</nobr>
377
401
  </td>
@@ -399,12 +423,28 @@
399
423
  <td style="text-align: center;">
400
424
  <nobr>{{row.f_meter_type}}</nobr>
401
425
  </td>
426
+ <td style="text-align: center;">
427
+ <nobr>{{row.f_meter_type_old === '机表' ? row.f_meter_base_old : '' }}</nobr>
428
+ </td>
429
+ <td style="text-align: center;">
430
+ <nobr>{{(row.f_meter_type_old === '气量卡表' || row.f_meter_type_old === '机表') ? row.f_meter_base : ''}}</nobr>
431
+ </td>
432
+ <td style="text-align: center;">
433
+ <nobr>{{row.f_meter_type_old === '机表' ? row.f_used_content : ''}}</nobr>
434
+ </td>
435
+ <td style="text-align: center;">
436
+ <nobr>{{row.f_meter_type_old === '机表' ? row.f_new_content : ''}}</nobr>
437
+ </td>
402
438
  <td style="text-align: center;">
403
439
  <nobr>{{row.f_user_type}}</nobr>
404
440
  </td>
405
441
  <td style="text-align: center;"><nobr>
406
442
  <button class="button_search button_spacing width-60" @click.stop="$parent.$parent.$parent.view(row)">查看</button>
407
443
  </nobr></td>
444
+ <td style="text-align: center;"><nobr>
445
+ <button v-if="!row.f_changetables_check_state && $login.r.includes('换表审核')" class="button_search button_spacing width-60" @click.stop="$parent.$parent.$parent.checkData(row)">审核</button>
446
+ <span v-if="row.f_changetables_check_state">{{row.f_changetables_check_state}}</span>
447
+ </nobr></td>
408
448
  <td style="text-align: center;">
409
449
  <nobr>{{row.f_changetables_check_date}}</nobr>
410
450
  </td>
@@ -472,7 +512,7 @@
472
512
  </div>
473
513
  <modal :show.sync="showupload" v-if="showupload" width="80%" style="width:auto;" v-ref:modal middle backdrop="false">
474
514
  <article slot="modal-body">
475
- <upload :blodid="selected.f_userinfo_id" v-ref:upload :isremark="false" fusetype="换表&清零" ></upload>
515
+ <upload :blodid="selected.f_userinfo_id" v-ref:upload :isremark="false" fusetype="换表" ></upload>
476
516
  </article>
477
517
  <footer slot="modal-footer" class="modal-footer">
478
518
  </footer>
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/yangchun/sale'
10
- import ShanXianwebSaleManage from './filiale/yangchun/webmeterManage'
9
+ import ShanXianSaleManage from './filiale/qianneng/sale'
10
+ import ShanXianwebSaleManage from './filiale/qianneng/webmeterManage'
11
11
  import webmeterManage from './webmeterManage'
12
12
  import reportManage from './reportManage'
13
13
  import newmanage from './newmanage'
@@ -45,7 +45,6 @@ all()
45
45
  // sale()
46
46
  ldap()
47
47
  system(false)
48
-
49
48
  saleManage()
50
49
  webmeterManage()
51
50
  ManageHome()