sale-client 3.7.48 → 3.7.50

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
File without changes
@@ -0,0 +1,2 @@
1
+ #Wed Mar 18 10:18:57 CST 2026
2
+ gradle.version=5.2.1
Binary file
File without changes
@@ -1,7 +1,7 @@
1
1
  var path = require('path')
2
2
  var checkVersion = require('./versionCheck.js')
3
3
  checkVersion()
4
- const [ serverRul, localUrl, v4Url ] = ['http://192.168.50.67:30785/', 'http://localhost:8080/', 'http://192.168.50.67:30785']
4
+ const [ serverRul, localUrl, v4Url ] = ['http://192.168.50.67:31567/', 'http://localhost:8080/', '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 = {
@@ -107,6 +107,12 @@ var devConfig = {
107
107
  '/rs/logic': {
108
108
  target: localUrl
109
109
  },
110
+ '/rs/file':{
111
+ target: localUrl
112
+ },
113
+ '/rs/downloadfile': {
114
+ target: localUrl
115
+ },
110
116
  '/rs/entity': {
111
117
  target: localUrl
112
118
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.7.48",
3
+ "version": "3.7.50",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -49,6 +49,10 @@
49
49
  <th><nobr>电压状态</nobr></th>
50
50
  <th><nobr>温度</nobr></th>
51
51
  <th><nobr>压力</nobr></th>
52
+ <th><nobr>工况累积量</nobr></th>
53
+ <th><nobr>标况累积量</nobr></th>
54
+ <th><nobr>工况流量</nobr></th>
55
+ <th><nobr>标况流量</nobr></th>
52
56
  <th><nobr>阀门强制状态</nobr></th>
53
57
  <th><nobr>计量类型</nobr></th>
54
58
  <th><nobr>金额状态</nobr></th>
@@ -72,7 +76,11 @@
72
76
  <th style="text-align:center"><nobr>{{row.f_lowlithiumbattery ? ((row.f_lowlithiumbattery - 0) == 0 ? '正常' : '异常') : '未知'}}</nobr></th>
73
77
  <th style="text-align:center"><nobr>{{row.flowmeterTemperature ? row.flowmeterTemperature : '0'}}</nobr></th>
74
78
  <th style="text-align:center"><nobr>{{row.flowmeterPressure ? row.flowmeterPressure : '0'}}</nobr></th>
75
- <th style="text-align:center"><nobr>{{row.f_networkshutvalve}}</nobr></th>
79
+ <th style="text-align:center"><nobr>{{row.operatingmodetotal ? row.operatingmodetotal : '0'}}</nobr></th>
80
+ <th style="text-align:center"><nobr>{{row.standardconditiontotal ? row.standardconditiontotal : '0'}}</nobr></th>
81
+ <th style="text-align:center"><nobr>{{row.operatingmodeflow ? row.operatingmodeflow : '0'}}</nobr></th>
82
+ <th style="text-align:center"><nobr>{{row.standardconditionflow ? row.standardconditionflow : '0'}}</nobr></th>
83
+ <th style="text-align:center"><nobr>{{row.f_networkshutvalve}}</nobr></th>
76
84
  <th style="text-align:center"><nobr>{{row.f_wmprepaytype}}</nobr></th>
77
85
  <th style="text-align:center"><nobr>{{row.f_moneystate}}</nobr></th>
78
86
  <th style="text-align:center"><nobr>{{row.f_magneticInterference}}</nobr></th>
@@ -708,7 +708,7 @@ let loadParamGem = async function (self) {
708
708
 
709
709
  },
710
710
  downloadFiles(){
711
- let downurl='rs/downloadfile/file?filename=批量建档导出Excel模板';
711
+ let downurl='rs/downloadfile/file?filename=批量建档导出Excel模板_荣创';
712
712
  this.$downFile(downurl,'批量建档导出Excel模板.xlsx')
713
713
  },
714
714
  /**
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/shiquan/sale'
5
+ import FilialeSale from './filiale/rongchuang/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'
@@ -24,7 +24,7 @@ system(false)
24
24
  sale()
25
25
  address()
26
26
  ldap()
27
- FilialeSale()
27
+ FilialeSale()
28
28
  require('system-clients/src/styles/less/bootstrap.less')
29
29
 
30
30
  new Vue({
@@ -1,10 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "es2016",
4
- "module": "commonjs",
5
- "esModuleInterop": true,
6
- "forceConsistentCasingInFileNames": true,
7
- "strict": true,
8
- "skipLibCheck": true
9
- }
10
- }
package/tsconfig.json DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "es2016",
4
- "module": "commonjs",
5
- "esModuleInterop": true,
6
- "forceConsistentCasingInFileNames": true,
7
- "strict": true,
8
- "skipLibCheck": true
9
- }
10
- }