sale-client 4.3.23 → 4.3.25

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/CHANGELOG.md CHANGED
@@ -1,14 +1,22 @@
1
1
  # Change Log
2
2
  所有关于本产品的变化都在该文档里。
3
- ##4.3.22 2023-03-31 @张科科
3
+
4
+ ## **🚀 V4.3.24 2023-04-02 `@张科科`**
5
+ ### `🌟` 功能调整
6
+ - 换新表界面 中提示词修改
7
+
8
+ ## **🚀4.3.22 2023-03-31 @张科科
9
+ ### `🌟` 功能调整
4
10
  - 提交 洪雅 综合收费界面 点火状态 改为 通气状态 左侧表具信息 增加通气状态的显示
5
11
 
6
- ##1.8.0 2019-09-19 @郭伟
12
+ ## **🚀1.8.0 2019-09-19 @郭伟
13
+ ### `🌟` 功能调整
7
14
  - 切分支,SQLchange分支准备改f_filaleids
8
15
 
9
- ##1.1.0 2018-11-11 @何宁社
16
+ ## **🚀1.1.0 2018-11-11 @何宁社
17
+ ### `🌟` 功能调整
10
18
  - 去掉样式
11
19
 
12
- ##0.0.8 2018-8-31 @张桥
13
- ###Fixed
20
+ ## **🚀0.0.8 2018-8-31 @张桥
21
+ ### `🌟` 功能调整
14
22
  - 发布0.0.16,修改气价及基本授权树样式和大小写问题
@@ -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:31567/', 'http://192.168.50.67:31567/']
4
+ const [ serverRul, localUrl ] = ['http://36.134.191.191:31467/', 'http://36.134.191.191:31467/']
5
5
  var merge = require('webpack-merge')
6
6
  var baseConfig = require('./webpack.dev.conf')
7
7
  var devConfig = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "4.3.23",
3
+ "version": "4.3.25",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -693,9 +693,9 @@ export default {
693
693
  let a = this.config.castInt ? parseInt(this.model.f_using_base_old) : this.model.f_using_base_old
694
694
  let b = this.config.castInt ? parseInt(this.row.f_meter_base) : this.row.f_meter_base
695
695
  if (a > b) {
696
- msg = (this.row.f_meter_type === '机表' ? '该用户表底数大于上次抄表底数,请确定是否继续生成欠费记录' : '该用户表底数大于上次抄表底数,请确定是否进行结算')
696
+ msg = (this.row.f_meter_type === '机表' ? '录入的旧表底数大于系统旧表底数,请确定是否继续生成欠费记录' : '录入的旧表底数大于系统旧表底数,请确定是否进行结算')
697
697
  } else if (this.row.f_capacity && this.row.f_capacity > 0 && (parseInt(this.model.f_using_base_old) < parseInt(this.row.f_meter_base))) {
698
- msg = '该用户表底数大于上次抄表底数,且已超越最大量程,请确定是否继续生成欠费记录'
698
+ msg = '录入的旧表底数大于系统旧表底数,且已超越最大量程,请确定是否继续生成欠费记录'
699
699
  }
700
700
  }
701
701
  if ((this.row.f_meter_type.includes('机表') || this.row.f_meter_type.includes('物联网表')) && msg) {
@@ -890,9 +890,9 @@ export default {
890
890
  let a = this.config.castInt ? parseInt(this.model.f_using_base_old) : this.model.f_using_base_old
891
891
  let b = this.config.castInt ? parseInt(this.row.f_meter_base) : this.row.f_meter_base
892
892
  if (a > b) {
893
- msg = (this.row.f_meter_type === '机表' ? '该用户表底数大于上次抄表底数,请确定是否继续生成欠费记录' : '该用户表底数大于上次抄表底数,请确定是否进行结算')
893
+ msg = (this.row.f_meter_type === '机表' ? '录入的旧表底数大于系统旧表底数,请确定是否继续生成欠费记录' : '录入的旧表底数大于系统旧表底数,请确定是否进行结算')
894
894
  } else if (this.row.f_capacity && this.row.f_capacity > 0 && (parseInt(this.model.f_using_base_old) < parseInt(this.row.f_meter_base))) {
895
- msg = '该用户表底数大于上次抄表底数,且已超越最大量程,请确定是否继续生成欠费记录'
895
+ msg = '录入的旧表底数大于系统旧表底数,且已超越最大量程,请确定是否继续生成欠费记录'
896
896
  }
897
897
  }
898
898
  if ((this.row.f_meter_type.includes('机表') || this.row.f_meter_type.includes('物联网表')) && msg) {