sale-client 4.2.85 → 4.2.87

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.
@@ -1,2 +1,2 @@
1
- #Thu Oct 30 09:31:24 CST 2025
1
+ #Mon Oct 13 09:26:02 CST 2025
2
2
  gradle.version=5.2.1
Binary file
@@ -1,7 +1,7 @@
1
1
  var path = require('path')
2
2
  var checkVersion = require('./versionCheck.js')
3
3
  checkVersion()
4
- const [ serverRul, localUrl ] = ['http://192.168.50.67:31467/', 'http://192.168.50.67:31467/']
4
+ const [ serverRul, localUrl ] = ['http://192.168.50.67:31567/', 'http://192.168.50.67:31567/']
5
5
  var merge = require('webpack-merge')
6
6
  var baseConfig = require('./webpack.dev.conf')
7
7
  var devConfig = {
@@ -52,9 +52,9 @@ var devConfig = {
52
52
  },
53
53
  '/api/af-revenue': {
54
54
  pathRewrite: {
55
- '/api/af-revenue': ''
55
+ '/api/af-revenue': '/af-revenue'
56
56
  },
57
- target: "http://localhost:9026"
57
+ target: "http://localhost:8080"
58
58
  },
59
59
  '/api': {
60
60
  target: serverRul
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "4.2.85",
3
+ "version": "4.2.87",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -60,7 +60,7 @@
60
60
  <label class="font_normal_body">客户姓名</label>
61
61
  <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
62
62
  placeholder='客户姓名'
63
- condition="f_user_name = '{}'">
63
+ condition="f_user_name like '%{}%'">
64
64
  </div>
65
65
  <div class="col-sm-2 form-group">
66
66
  <label class="font_normal_body">小&ensp;&ensp;&ensp;&ensp;区</label>
@@ -87,7 +87,7 @@
87
87
  <div class="col-sm-2 form-group">
88
88
  <label class="font_normal_body">用户姓名</label>
89
89
  <input style="width:60%" type="text" class="form-control" v-model="model.f_user_name" placeholder='用户姓名'
90
- condition="f_user_name = '{}'">
90
+ condition="f_user_name like '%{}%'">
91
91
  </div>
92
92
  <div class="col-sm-2 form-group">
93
93
  <label class="font_normal_body">用户地址</label>
@@ -287,6 +287,9 @@
287
287
  <th>
288
288
  <nobr>上期抄表量</nobr>
289
289
  </th>
290
+ <th >
291
+ <nobr>气价名称</nobr>
292
+ </th>
290
293
  <th title="本次抄表用气量-上次抄表用气量/1">
291
294
  <nobr>增减百分比</nobr>
292
295
  </th>
@@ -367,6 +370,7 @@
367
370
  <td>{{row.f_result_state}}</td>
368
371
  <td><nobr>{{row.f_last_input_date}}</nobr></td>
369
372
  <td style="text-align: center;">{{row.f_last_oughtamount}}</td>
373
+ <td style="text-align: center;">{{row.f_price_name}}</td>
370
374
  <td style="text-align: center;">{{row.f_oughtamount_bv}}</td>
371
375
  <td><nobr>{{row.f_hand_date}}</nobr></td>
372
376
  <td><nobr>{{row.f_input_date}}</nobr></td>
@@ -471,6 +475,7 @@
471
475
  'f_result_state': '抄表结果状态',
472
476
  'f_last_input_date': '上次抄表录入日期',
473
477
  'f_last_oughtamount': '上次抄表量',
478
+ 'f_price_name': '气价名称',
474
479
  'f_oughtamount_bv': '增减百分比',
475
480
  'f_hand_date': '下发日期',
476
481
  'f_input_date': '抄表录入日期',
@@ -518,7 +523,7 @@
518
523
  if (item.f_state === '有效' && filialeid == item.f_filialeid) {
519
524
  let value = {
520
525
  label: item.f_price_name,
521
- value: item
526
+ value: item.f_price_name
522
527
  }
523
528
  result.push(value)
524
529
  }
package/src/main.js CHANGED
@@ -2,7 +2,7 @@ import Vue from 'vue'
2
2
  import all from 'vue-client/src/all'
3
3
  import App from './App'
4
4
  import system from 'system-clients/src/system'
5
- import FilialeSale from './filiale/yangchun/sale'
5
+ import FilialeSale from './filiale/meihekou/sale'
6
6
  import sale from './sale'
7
7
  import address from 'address-client/src/address'
8
8
  import ldap from 'ldap-clients/src/ldap'
File without changes