Authored by ccbikai

Merge branch 'feature/channel' into develop

@@ -16,7 +16,7 @@ module.exports = { @@ -16,7 +16,7 @@ module.exports = {
16 siteUrl: '//m.yohobuy.com', 16 siteUrl: '//m.yohobuy.com',
17 domains: { 17 domains: {
18 api: 'http://devapi.yoho.cn:58078/', 18 api: 'http://devapi.yoho.cn:58078/',
19 - service: 'http://172.16.6.247:8085/gateway/' 19 + service: 'http://192.168.102.202:8080/gateway/'
20 }, 20 },
21 subDomains: { 21 subDomains: {
22 host: '.m.yohobuy.com', 22 host: '.m.yohobuy.com',
@@ -4,7 +4,7 @@ const qs = require('yoho-qs'); @@ -4,7 +4,7 @@ const qs = require('yoho-qs');
4 const contentCode = require('content-code'); 4 const contentCode = require('content-code');
5 5
6 const tab = require('channel/tab.vue'); 6 const tab = require('channel/tab.vue');
7 -const resources = require('channel/resources.vue'); 7 +const resources = require('component/resources/index.vue');
8 8
9 require('common/vue-filter'); 9 require('common/vue-filter');
10 10
1 -@use postcss-clearfix ; 1 +@use postcss-clearfix;
2 2
3 .clearfix { 3 .clearfix {
4 clear: fix; 4 clear: fix;
@@ -15,7 +15,7 @@ html, @@ -15,7 +15,7 @@ html,
15 body { 15 body {
16 width: 100%; 16 width: 100%;
17 font-size: 24px; 17 font-size: 24px;
18 - font-family: helvetica, Arial, "黑体"; 18 + font-family: Helvetica, Roboto, "Heiti SC", "黑体", Arial;
19 line-height: 1.4; 19 line-height: 1.4;
20 } 20 }
21 21
@@ -29,14 +29,6 @@ a { @@ -29,14 +29,6 @@ a {
29 outline: none; 29 outline: none;
30 } 30 }
31 31
32 -.hide {  
33 - display: none;  
34 -}  
35 -  
36 -.overflow-hidden {  
37 - overflow: hidden;  
38 -}  
39 -  
40 .main-wrap { 32 .main-wrap {
41 position: relative; 33 position: relative;
42 margin-right: auto; 34 margin-right: auto;
@@ -44,6 +36,15 @@ a { @@ -44,6 +36,15 @@ a {
44 max-width: 750px; 36 max-width: 750px;
45 width: 100%; 37 width: 100%;
46 } 38 }
  39 +
  40 +.text-center {
  41 + text-align: center;
  42 +}
  43 +
  44 +.overflow-hidden {
  45 + overflow: hidden;
  46 +}
  47 +
47 .right { 48 .right {
48 float: right; 49 float: right;
49 } 50 }
@@ -51,6 +52,7 @@ a { @@ -51,6 +52,7 @@ a {
51 .left { 52 .left {
52 float: right; 53 float: right;
53 } 54 }
54 -.text-center {  
55 - text-align: center; 55 +
  56 +.hide {
  57 + display: none;
56 } 58 }
@@ -29,12 +29,12 @@ @@ -29,12 +29,12 @@
29 const bus = require('common/vue-bus'); 29 const bus = require('common/vue-bus');
30 const contentCode = require('content-code'); 30 const contentCode = require('content-code');
31 31
32 - const focus = require('component/resources/focus.vue');  
33 - const focusLeftRight = require('component/resources/focus-left-right.vue');  
34 - const titleImage = require('component/resources/title-image.vue');  
35 - const titleFloor = require('component/resources/title-floor.vue');  
36 - const recommendContentFive = require('component/resources/recommend-content-five.vue');  
37 - const goods = require('component/resources/goods.vue'); 32 + const focus = require('./focus.vue');
  33 + const focusLeftRight = require('./focus-left-right.vue');
  34 + const titleImage = require('./title-image.vue');
  35 + const titleFloor = require('./title-floor.vue');
  36 + const recommendContentFive = require('./recommend-content-five.vue');
  37 + const goods = require('./goods.vue');
38 38
39 const dataCache = {}; 39 const dataCache = {};
40 40