apply-clients 3.4.88-21 → 3.4.88-22
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/build/dev-server.js +7 -4
- package/package.json +1 -1
- package/src/components/android/Ignition/VentilationIgnition.vue +312 -312
- package/src/components/android/Ignition/VentilationIgnitionHandle.vue +353 -353
- package/src/components/product/Function/Service/FunctionServiceControl.vue +497 -497
- package/src/components/product/Ignition/IgnitionListManage.vue +420 -420
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +203 -203
- package/src/filiale/hongda/android/AppAddMaterialScience.vue +404 -404
- package/src/filiale/hongda/android/AppExplorationUser.vue +507 -507
- package/src/filiale/hongda/pc/ApplyChargeList.vue +475 -475
- package/src/filiale/hongda/pc/addMaterialScience.vue +600 -598
- package/src/filiale/hongda/pc/chargeManagement.vue +683 -683
- package/src/filiale/hongda/pc.js +14 -14
- package/src/filiale/shexian/android/AppInstallationDetails.vue +2 -2
- package/src/filiale/shexian/android/AppServiceView.vue +746 -746
- package/src/filiale/shexian/pc/ExplorationSelect.vue +490 -477
- package/src/filiale/shexian/pc/InstallationDetails.vue +639 -639
- package/src/filiale/shexian/pc/ServiceView.vue +1025 -1025
- package/src/main.js +23 -23
package/build/dev-server.js
CHANGED
|
@@ -8,10 +8,13 @@ var compiler = webpack(config)
|
|
|
8
8
|
// var proxy = httpProxy.createProxyServer()
|
|
9
9
|
// var ldap = 'http://121.36.79.201:8400'
|
|
10
10
|
// var applyinstall = 'http://121.36.79.201:8400'
|
|
11
|
-
var ldap = 'http://
|
|
12
|
-
var applyinstall = 'http://
|
|
11
|
+
var ldap = 'http://113.219.193.157:8100/'
|
|
12
|
+
var applyinstall = 'http://113.219.193.157:8100/'
|
|
13
13
|
|
|
14
14
|
var proxyTable = {
|
|
15
|
+
'/apply/rs/entity': {
|
|
16
|
+
target: ldap
|
|
17
|
+
},
|
|
15
18
|
'/rs/logic/getSaleInitData': {
|
|
16
19
|
target: ldap
|
|
17
20
|
},
|
|
@@ -110,10 +113,10 @@ app.use(hotMiddleware)
|
|
|
110
113
|
// serve pure static assets
|
|
111
114
|
app.use('/static', express.static('./static'))
|
|
112
115
|
|
|
113
|
-
module.exports = app.listen(
|
|
116
|
+
module.exports = app.listen(8300, function (err) {
|
|
114
117
|
if (err) {
|
|
115
118
|
console.log(err)
|
|
116
119
|
return
|
|
117
120
|
}
|
|
118
|
-
console.log('Listening at http://localhost:
|
|
121
|
+
console.log('Listening at http://localhost:8300')
|
|
119
122
|
})
|