1.删除login的路由

2.需要描述“交通轨道”为“轨道交通”
3.修改描述“欢迎你的简历投递”为“欢迎将你的简历投递至”
4.删除页脚的“首页”
5.统一描述“电厂电力”为“电力电厂”
6.修改系统名称以及路径
This commit is contained in:
lVAL 2020-10-09 09:37:20 +08:00
parent 5be155ace7
commit 7a66b65d6a
7 changed files with 9 additions and 169 deletions

View File

@ -15,12 +15,6 @@ const routes = [
name: "Home",
component: Home
},
{
path: "/login",
name: "Login",
component: () =>
import(/* webpackChunkName: "login" */ "../views/Login/index.vue")
},
{
path: "/preview/pdf",
name: "PreviewPdf",
@ -82,7 +76,6 @@ const routes = [
const createRouter = () =>
new VueRouter({
base: "/official-website/",
// base: process.env.BASE_URL,
mode: "history",
routes
});

View File

@ -36,7 +36,7 @@
<h3>加入玖琏</h3>
<p>
你的加入可以给我们带来新的活力我们同样也可以赠你无限的发展空间世界那么大你不来谁知道你牛逼多一份了解多一份选择
选择不对努力白费寻找合伙人寻找最优秀的你欢迎您的简历投递
选择不对努力白费寻找合伙人寻找最优秀的你欢迎将你的简历投递至
<strong><em>henry@joylink.club</em></strong>
</p>

View File

@ -37,23 +37,23 @@ export default {
tableData() {
return [
{
platform: "交通轨道",
name: "实训平台系统入口",
href: "https://joylink.club/cbtc/"
platform: "轨道交通",
name: "实训平台系统",
href: "https://joylink.club/cbtc"
},
{
platform: "",
name: "设计平台系统入口",
href: "https://joylink.club/cbtc/design/"
name: "设计平台系统",
href: "https://joylink.club/cbtc/design"
},
{
platform: "电厂电力",
name: "系统入口",
platform: "电电厂",
name: "太仆寺旗锅炉DCS系统",
href: "https://test.joylink.club/tpsq/home"
},
{
platform: "化学化工",
name: "东电云系统入口",
name: "东电云系统",
href: "https://joylink.club/ddy/login"
}
];

View File

@ -1,12 +1,5 @@
<template>
<div class="custom">
<div class="top-line">
<div class="pull-left">
<router-link to="/home" exact>
<span class="title">首页</span>
</router-link>
</div>
</div>
<div class="footer-nav">
<div
class="col-md"
@ -173,18 +166,6 @@ a {
margin-right: auto;
margin-left: auto;
.top-line {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
height: 65px;
overflow: visible;
border-bottom: 1px solid #e2e2e2;
padding: 20px 0;
}
.footer-nav {
display: flex;
justify-content: space-between;

View File

@ -1,63 +0,0 @@
<template>
<div class="copy">
<template v-for="(el, i) in copys">
<router-link :key="i" v-if="el.href" :to="el.href">
{{ el.name }}
</router-link>
<span :key="i" v-else> {{ el.name }} </span>
</template>
</div>
</template>
<script>
export default {
data() {
return {};
},
computed: {
copys() {
return [
{
name: "©2020 华为技术有限公司"
},
{
name: "粤A2-20044005号"
},
{
name: "粤公网安备 44030702002388号"
}
];
}
},
methods: {}
};
</script>
<style lang="scss" scoped>
.list-unstyled {
list-style: none;
}
a {
text-decoration: none;
color: #595757;
}
.copy {
background-color: #e6e6e6;
text-align: center;
margin-top: 100px;
height: 50px;
line-height: 50px;
padding: 0;
font-size: 15px;
color: #666;
display: flex;
justify-content: center;
align-items: center;
a,
span {
margin: 0 10px;
}
}
</style>

View File

@ -1,43 +0,0 @@
<template>
<header class="header">
<div class="container">
<e-logo />
</div>
</header>
</template>
<script>
import eLogo from "@/components/eLogo/index.vue";
export default {
components: {
eLogo
},
data() {
return {};
},
methods: {}
};
</script>
<style lang="scss" scoped>
.header {
position: relative;
background: #f1f1f1;
border-bottom: 1px solid #d1d1d1;
.container {
min-width: 960px;
height: 64px;
width: 60%;
margin: auto;
display: flex;
justify-content: flex-start;
align-items: center;
.el-image {
width: 40px;
height: 40px;
}
}
}
</style>

View File

@ -1,28 +0,0 @@
<template>
<div class="login">
<e-header />
<e-copy class="copy" />
</div>
</template>
<script>
import eHeader from "./eHeader.vue";
import eCopy from "./eCopy.vue";
export default {
components: {
eCopy,
eHeader
}
};
</script>
<style lang="scss">
.login {
width: 100%;
.copy {
position: absolute;
bottom: 0;
width: 100%;
}
}
</style>