apply-clients 3.4.82 → 3.4.83-1
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 +4 -5
- package/package.json +1 -1
- package/src/components/product/Process/ExplorationSelect.vue +485 -485
- package/src/filiale/shexian/android/AppExplorationUser.vue +622 -622
- package/src/filiale/shexian/android/AppInstallationDetails.vue +498 -498
- package/src/filiale/shexian/android/AppServiceView.vue +745 -745
- package/src/filiale/shexian/android/AppTakePic.vue +145 -0
- package/src/filiale/shexian/android.js +9 -9
- package/src/filiale/shexian/pc/InstallationDetails.vue +614 -614
- package/src/filiale/shexian/pc/ServiceView.vue +1020 -1020
- package/src/filiale/shexian/pc.js +9 -9
- package/src/main.js +1 -1
package/build/dev-server.js
CHANGED
|
@@ -8,11 +8,10 @@ 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
|
-
|
|
16
15
|
'/rs/logic/getSaleInitData': {
|
|
17
16
|
target: ldap
|
|
18
17
|
},
|
|
@@ -111,10 +110,10 @@ app.use(hotMiddleware)
|
|
|
111
110
|
// serve pure static assets
|
|
112
111
|
app.use('/static', express.static('./static'))
|
|
113
112
|
|
|
114
|
-
module.exports = app.listen(
|
|
113
|
+
module.exports = app.listen(8301, function (err) {
|
|
115
114
|
if (err) {
|
|
116
115
|
console.log(err)
|
|
117
116
|
return
|
|
118
117
|
}
|
|
119
|
-
console.log('Listening at http://localhost:
|
|
118
|
+
console.log('Listening at http://localhost:8301')
|
|
120
119
|
})
|