Commit e60517d2 authored by coolfish's avatar coolfish

修改

parent 191b3bd2
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<li><img src="./i-platform/tt.png"><span>今日头条</span></li> <li><img src="./i-platform/tt.png"><span>今日头条</span></li>
<li><img src="./i-platform/sh.png"><span>搜狐公众平台</span></li> <li><img src="./i-platform/sh.png"><span>搜狐公众平台</span></li>
<li><img src="./i-platform/wy.png"><span>网易新闻</span></li> <li><img src="./i-platform/wy.png"><span>网易新闻</span></li>
<li><img src="./i-platform/uc.png"><span>UC</span></li> <li><img src="./i-platform/uc.png"><span>UC大鱼号</span></li>
</ul> </ul>
</div> </div>
</template> </template>
......
src/components/c-dock/logo/uc@2x.png

5.72 KB | W: | H:

src/components/c-dock/logo/uc@2x.png

5.23 KB | W: | H:

src/components/c-dock/logo/uc@2x.png
src/components/c-dock/logo/uc@2x.png
src/components/c-dock/logo/uc@2x.png
src/components/c-dock/logo/uc@2x.png
  • 2-up
  • Swipe
  • Onion skin
...@@ -5,11 +5,11 @@ ...@@ -5,11 +5,11 @@
<li class="introduce-warp"> <li class="introduce-warp">
<img src="./introduce/i-1@2x.png"> <img src="./introduce/i-1@2x.png">
<div class="text"> <div class="text">
<div class="title">【多平台一键分发</div> <div class="title">【多平台覆盖,一站式管理</div>
<div class="desc">多平台快速登录,内容一键分发,高效进行内容运营</div> <div class="desc">多平台快速登录,一站式进行账号管理,素材收集,内容创作</div>
<ul class="nodes"> <ul class="nodes">
<li class="node">一键同步,批量发送</li>
<li class="node">对接各大主流媒体平台</li> <li class="node">对接各大主流媒体平台</li>
<li class="node">多平台对接,批量分发</li>
</ul> </ul>
</div> </div>
</li> </li>
...@@ -79,7 +79,7 @@ ...@@ -79,7 +79,7 @@
font-size: 0 font-size: 0
img img
width: 500px width: 500px
height: 400px height: 300px
display: inline-block display: inline-block
vertical-align: middle vertical-align: middle
.text .text
......
...@@ -3,33 +3,14 @@ ...@@ -3,33 +3,14 @@
<div class="nav"> <div class="nav">
<a class="logo" href="/">小云蜂巢</a> <a class="logo" href="/">小云蜂巢</a>
<ul class="menus"> <ul class="menus">
<li><a :class="current === 0 ? 'active' : ''" href="/content">内容管理工具</a></li> <li><a class="active" href="/">内容管理工具</a></li>
<li><a :class="current === 1 ? 'active' : ''" href="/ads">广告交易平台</a></li> <li><a target="_blank" href="http://hfads.apps.xiaoyun.com/">广告交易平台</a></li>
</ul> </ul>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
export default {
data () {
return {
current: 0
}
},
beforeMount () {
switch (location.pathname) {
case '/content':
this.current = 0
break
case '/ads':
this.current = 1
break
default:
this.current = 0
}
}
}
</script> </script>
<!-- Add "scoped" attribute to limit CSS to this component only --> <!-- Add "scoped" attribute to limit CSS to this component only -->
......
import Vue from 'vue' import Vue from 'vue'
import Router from 'vue-router' import Router from 'vue-router'
import ContentManagement from '@/containers/ContentManagement' import ContentManagement from '@/containers/ContentManagement'
import AdsPlatform from '@/containers/AdsPlatform'
Vue.use(Router) Vue.use(Router)
export default new Router({ export default new Router({
mode: 'history', mode: 'history',
routes: [ routes: [
{ {path: '/', component: ContentManagement},
path: '/', {path: '*', redirect: '/'}
redirect: '/content'
}, {
path: '/content',
name: 'ContentManagement',
component: ContentManagement
}, {
path: '/ads',
name: 'AdsPlatform',
component: AdsPlatform
}
] ]
}) })
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment