apply-clients 3.5.5-70 → 3.5.5-71
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 +11 -7
- package/package.json +1 -1
- package/src/components/android/Process/AppChargeList.vue +391 -391
- package/src/components/android/Process/AppExplorationUser.vue +508 -508
- package/src/components/product/Supervisory/SupervisoryControl.vue +141 -141
- package/src/filiale/baiyin/android/ByAddMaterialScience.vue +860 -860
- package/src/filiale/jinhuang/pc/ServiceControl.vue +1932 -1932
- package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +527 -524
- package/src/filiale/yangchunboneng/android/AppExplorationUser.vue +585 -585
- package/src/filiale/yangchunboneng/android/AppInstallationMaterial.vue +1116 -1116
- package/src/filiale/yangchunboneng/android/AppProcessSupervisory.vue +331 -331
- package/src/filiale/yangchunboneng/android/AppSuperServiceControl.vue +1524 -1524
- package/src/filiale/yangchunboneng/android/AppUpload.vue +205 -205
- package/src/filiale/yangchunboneng/android.js +21 -21
- package/src/filiale/yangchunboneng/pc/ApplyUpload.vue +392 -392
- package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +612 -612
- package/src/filiale/yangchunboneng/pc/ExplorationUser.vue +191 -191
- package/src/filiale/yangchunboneng/pc/InstallInfoSelect.vue +365 -365
- package/src/filiale/yangchunboneng/pc/StopApplyList.vue +294 -294
- package/src/filiale/yangchunboneng/pc/SupervisoryControlNew.vue +142 -142
- package/src/filiale/yangchunboneng/pc/SupervisoryList.vue +617 -617
- package/src/filiale/yangchunboneng/pc/SupervisoryServiceControl.vue +902 -902
- package/src/filiale/yangchunboneng/pc/SupervisoryServiceControlNew.vue +901 -901
- package/src/filiale/yangchunboneng/pc/buildOrderList.vue +337 -337
- package/src/filiale/yangchunboneng/pc/constructionInfo.vue +84 -84
- package/src/filiale/yangchunboneng/pc/printBuildOrder.vue +175 -175
- package/src/filiale/yangchunboneng/pc.js +28 -28
- package/src/main.js +23 -23
package/build/dev-server.js
CHANGED
|
@@ -5,13 +5,17 @@ var proxyMiddleware = require('http-proxy-middleware')
|
|
|
5
5
|
// var httpProxy = require('http-proxy')
|
|
6
6
|
var app = express()
|
|
7
7
|
var compiler = webpack(config)
|
|
8
|
-
// var
|
|
9
|
-
// var
|
|
10
|
-
|
|
11
|
-
var ldap = 'http://
|
|
12
|
-
var applyinstall = 'http://
|
|
8
|
+
// var proxy = httpProxy.createProxyServer()
|
|
9
|
+
// var ldap = 'http://121.36.79.201:8400'
|
|
10
|
+
// var applyinstall = 'http://121.36.79.201:8400'
|
|
11
|
+
var ldap = 'http://192.168.50.93:31986/'
|
|
12
|
+
var applyinstall = 'http://192.168.50.93:31986/'
|
|
13
13
|
|
|
14
14
|
var proxyTable = {
|
|
15
|
+
'/api': {
|
|
16
|
+
target: ldap,
|
|
17
|
+
changeOrigin: true
|
|
18
|
+
},
|
|
15
19
|
'/rs/logic/getSaleInitData': {
|
|
16
20
|
target: ldap,
|
|
17
21
|
changeOrigin: true
|
|
@@ -124,10 +128,10 @@ app.use(hotMiddleware)
|
|
|
124
128
|
// serve pure static assets
|
|
125
129
|
app.use('/static', express.static('./static'))
|
|
126
130
|
|
|
127
|
-
module.exports = app.listen(
|
|
131
|
+
module.exports = app.listen(8300, function (err) {
|
|
128
132
|
if (err) {
|
|
129
133
|
console.log(err)
|
|
130
134
|
return
|
|
131
135
|
}
|
|
132
|
-
console.log('Listening at http://localhost:
|
|
136
|
+
console.log('Listening at http://localhost:8300')
|
|
133
137
|
})
|