apply-clients 3.5.5-61 → 3.5.5-63
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 +5 -5
- package/package.json +1 -1
- package/src/components/android/Process/AppExplorationUser.vue +508 -508
- package/src/filiale/yangchunboneng/pc/buildOrderList.vue +337 -0
- package/src/filiale/yangchunboneng/pc/printBuildOrder.vue +172 -0
- package/src/filiale/yangchunboneng/pc.js +3 -1
package/build/dev-server.js
CHANGED
|
@@ -5,11 +5,11 @@ 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 ldap = 'http://125.71.238.50:30789'
|
|
9
|
+
// var applyinstall = 'http://125.71.238.50:30789'
|
|
10
|
+
//测试地址
|
|
8
11
|
var ldap = 'http://192.168.50.93:31986'
|
|
9
12
|
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
15
|
'/rs/logic/getSaleInitData': {
|
|
@@ -124,10 +124,10 @@ app.use(hotMiddleware)
|
|
|
124
124
|
// serve pure static assets
|
|
125
125
|
app.use('/static', express.static('./static'))
|
|
126
126
|
|
|
127
|
-
module.exports = app.listen(
|
|
127
|
+
module.exports = app.listen(30789, function (err) {
|
|
128
128
|
if (err) {
|
|
129
129
|
console.log(err)
|
|
130
130
|
return
|
|
131
131
|
}
|
|
132
|
-
console.log('Listening at http://localhost:
|
|
132
|
+
console.log('Listening at http://localhost:30789')
|
|
133
133
|
})
|