apply-clients 3.5.5-59 → 3.5.5-60
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 -11
- package/package.json +1 -1
- package/src/components/android/Process/AppChargeList.vue +391 -383
- package/src/components/product/Supervisory/SupervisoryControl.vue +141 -141
- package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +524 -524
- package/src/filiale/yangchunboneng/android/AppExplorationUser.vue +585 -581
- package/src/filiale/yangchunboneng/android/AppInstallationMaterial.vue +1116 -1116
- package/src/filiale/yangchunboneng/android/AppProcessSupervisory.vue +4 -0
- 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.js +25 -25
- package/src/main.js +23 -23
package/build/dev-server.js
CHANGED
|
@@ -5,17 +5,13 @@ 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
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
var ldap = 'http://192.168.50.93:31986
|
|
12
|
-
var applyinstall = 'http://192.168.50.93:31986
|
|
8
|
+
var ldap = 'http://192.168.50.93:31986'
|
|
9
|
+
var applyinstall = 'http://192.168.50.93:31986'
|
|
10
|
+
//测试地址
|
|
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
|
-
},
|
|
19
15
|
'/rs/logic/getSaleInitData': {
|
|
20
16
|
target: ldap,
|
|
21
17
|
changeOrigin: true
|
|
@@ -128,10 +124,10 @@ app.use(hotMiddleware)
|
|
|
128
124
|
// serve pure static assets
|
|
129
125
|
app.use('/static', express.static('./static'))
|
|
130
126
|
|
|
131
|
-
module.exports = app.listen(
|
|
127
|
+
module.exports = app.listen(31986, function (err) {
|
|
132
128
|
if (err) {
|
|
133
129
|
console.log(err)
|
|
134
130
|
return
|
|
135
131
|
}
|
|
136
|
-
console.log('Listening at http://localhost:
|
|
132
|
+
console.log('Listening at http://localhost:31986')
|
|
137
133
|
})
|