Commit ec7d4c0d by 林家欣

机构概况下成员网站切图完成

parent ff02318f
...@@ -69,12 +69,22 @@ export const nav = [ ...@@ -69,12 +69,22 @@ export const nav = [
index: 0, index: 0,
link: "/Org/Branch", link: "/Org/Branch",
breadcrumb: [ breadcrumb: [
{name: "机构概况", path: "/service"}, {name: "机构概况", path: "/Org"},
{name: "地方编码分支机构"}, {name: "地方编码分支机构"},
], ],
}, },
{ {
id: uuid("gs_nav"), id: uuid("gs_nav"),
name: "国际物品编码组织(GS1)成员网站",
index: 0,
link: "/Org/GS1Members",
breadcrumb: [
{name: "机构概况", path: "/Org"},
{name: "国际物品编码组织(GS1)成员网站"},
],
},
{
id: uuid("gs_nav"),
name: "质量管理体系", name: "质量管理体系",
index: 2, index: 2,
link: "/Org/ISO", link: "/Org/ISO",
......
...@@ -82,6 +82,14 @@ const routes = [ ...@@ -82,6 +82,14 @@ const routes = [
component: () => import("@/views/Org/Branch.vue"), component: () => import("@/views/Org/Branch.vue"),
}, },
{ {
path: "/Org/GS1Members",
name: "GS1Members",
meta: {
name: "国际物品编码组织(GS1)成员网站",
},
component: () => import("@/views/Org/GS1Members.vue"),
},
{
path: "/Org/ISO", path: "/Org/ISO",
name: "ISO", name: "ISO",
meta: { meta: {
......
<template>
<div class="fzzx">
<div class="fzzx-list">
<div class="row" v-for="(tmp, i) in list" :key="i">
<div class="col-6">{{tmp.name}}</div>
<div class="col-6"><a :href="tmp.url" target="_blank">{{tmp.url}}</a></div>
</div>
</div>
</div>
</template>
<script>
export default {
props: ["list"],
created() {
console.log(this.list, "list");
},
};
</script>
<style lang="scss">
.fzzx {
width: 90%;
margin: 0 auto;
padding: 20px 0;
font-size: 14px;
.cate-name {
color: #454545;
}
.fzzx-list {
margin-top: 20px;
.row {
line-height: 40px;
margin: 0;
&:nth-child(odd) {
background: rgba(242, 99, 53, 0.04);
}
}
}
}
</style>
\ No newline at end of file
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