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.
- package/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/5.2.1/gc.properties +0 -0
- package/.gradle/8.10/checksums/checksums.lock +0 -0
- package/.gradle/8.10/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.10/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.10/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.10/fileChanges/last-build.bin +0 -0
- package/.gradle/8.10/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.10/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.10/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/file-system.probe +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/build/dev-server.js +7 -1
- package/package.json +1 -1
- package/src/filiale/kelai/iot_detail/WatchCollection.vue +9 -1
- package/src/filiale/rongchuang/FilesManage/FileUserFiles.vue +1 -1
- package/src/main.js +2 -2
- package/src/filiale/jingyang/tsconfig.json +0 -10
- package/tsconfig.json +0 -10
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
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
|
package/build/dev-server.js
CHANGED
|
@@ -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:
|
|
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
|
@@ -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
|
-
|
|
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/
|
|
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
|
-
|
|
27
|
+
FilialeSale()
|
|
28
28
|
require('system-clients/src/styles/less/bootstrap.less')
|
|
29
29
|
|
|
30
30
|
new Vue({
|