Showing
3 changed files
with
11 additions
and
8 deletions
@@ -15,8 +15,8 @@ $action-sheet-picker-cancel-active-color := $color-light-grey-s | @@ -15,8 +15,8 @@ $action-sheet-picker-cancel-active-color := $color-light-grey-s | ||
15 | 15 | ||
16 | // button | 16 | // button |
17 | $btn-color := $color-white | 17 | $btn-color := $color-white |
18 | -$btn-bgc := #222222 | ||
19 | -$btn-bdc := #222222 | 18 | +$btn-bgc := #222 |
19 | +$btn-bdc := #222 | ||
20 | $btn-active-bgc := $color-blue | 20 | $btn-active-bgc := $color-blue |
21 | $btn-active-bdc := $color-blue | 21 | $btn-active-bdc := $color-blue |
22 | $btn-disabled-color := $color-white | 22 | $btn-disabled-color := $color-white |
@@ -11,9 +11,9 @@ const isTest = process.env.NODE_ENV === 'test3'; | @@ -11,9 +11,9 @@ const isTest = process.env.NODE_ENV === 'test3'; | ||
11 | 11 | ||
12 | const domains = { | 12 | const domains = { |
13 | 13 | ||
14 | - api: 'http://api.yoho.cn/', | ||
15 | - service: 'http://service.yoho.cn/', | ||
16 | - ufo: 'http://2.yohobuy.cn/', | 14 | + // api: 'http://api.yoho.cn/', |
15 | + // service: 'http://service.yoho.cn/', | ||
16 | + // ufo: 'http://2.yohobuy.cn/', | ||
17 | 17 | ||
18 | // liveApi: 'http://testapi.live.yohops.com:9999/', | 18 | // liveApi: 'http://testapi.live.yohops.com:9999/', |
19 | // singleApi: 'http://api-test3.yohops.com:9999/', | 19 | // singleApi: 'http://api-test3.yohops.com:9999/', |
@@ -24,9 +24,9 @@ const domains = { | @@ -24,9 +24,9 @@ const domains = { | ||
24 | 24 | ||
25 | // platformApi: 'http://172.16.6.210:8088/', | 25 | // platformApi: 'http://172.16.6.210:8088/', |
26 | 26 | ||
27 | - // api: 'http://api-test3.dev.yohocorp.com/', | ||
28 | - // service: 'http://api-test3.dev.yohocorp.com/', | ||
29 | - // ufo: 'http://java-yohoufo-fore.test3.ingress.dev.yohocorp.com/ufo-gateway/', | 27 | + api: 'http://api-test3.dev.yohocorp.com/', |
28 | + service: 'http://api-test3.dev.yohocorp.com/', | ||
29 | + ufo: 'http://java-yohoufo-fore.test3.ingress.dev.yohocorp.com/ufo-gateway/', | ||
30 | }; | 30 | }; |
31 | 31 | ||
32 | module.exports = { | 32 | module.exports = { |
@@ -38,6 +38,9 @@ exports.createApp = async(app) => { | @@ -38,6 +38,9 @@ exports.createApp = async(app) => { | ||
38 | app.use('/grass/node/status.html', (req, res) => { | 38 | app.use('/grass/node/status.html', (req, res) => { |
39 | res.status(200).end(); | 39 | res.status(200).end(); |
40 | }); | 40 | }); |
41 | + app.head('*', (req, res) => { | ||
42 | + res.status(200).end(); | ||
43 | + }); | ||
41 | 44 | ||
42 | app.use(require('./doraemon/middleware/backlist')); | 45 | app.use(require('./doraemon/middleware/backlist')); |
43 | 46 |
-
Please register or login to post a comment