Commit edd5e648 by ahxiangkui

liwj提交

parent 5a186500
<template> <template>
<div> <div class="toolkit">
<TopBanner></TopBanner> <TopBanner></TopBanner>
<Header></Header> <Header></Header>
<div class="router-view"> <div class="router-view">
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
<script> <script>
import TopBanner from './layout/topBanner.vue' import TopBanner from './layout/topBanner.vue'
import Header from "./layout/englishHeader/index.vue"; import Header from "./layout/englishHeader/index.vue";
import Footer from "./layout/englishFoor.vue" import Footer from "./layout/englishFoot.vue"
export default { export default {
components: { components: {
TopBanner, TopBanner,
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<div class="col-xs-12 col-md-12"> <div class="col-xs-12 col-md-12">
<div class="row"> <div class="row">
<div class="col-xs-12 col-sm-6 col-md-1"> <div class="col-xs-12 col-sm-6 col-md-1">
<a href="/GS1ChinaEN/GS1ChinaENTest/index.aspx"> <a @click="handleGo('/EnglishHome')">
<h4>Home</h4> <h4>Home</h4>
</a> </a>
</div> </div>
...@@ -13,13 +13,13 @@ ...@@ -13,13 +13,13 @@
<h4>About Us</h4> <h4>About Us</h4>
<ul> <ul>
<li> <li>
<a href="/GS1ChinaEN/GS1ChinaENTest/introduction.aspx">Introduction</a> <a @click="handleGo('/SecondaryMenu/Introduction')">Introduction</a>
</li> </li>
<li> <li>
<a href="/GS1ChinaEN/GS1ChinaENTest/structure.aspx">Structure</a> <a @click="handleGo('/SecondaryMenu/Structure')">Structure</a>
</li> </li>
<li> <li>
<a href="/GS1ChinaEN/GS1ChinaENTest/contactus.aspx">Contact Us</a> <a @click="handleGo('/SecondaryMenu/ContactUs')">Contact Us</a>
</li> </li>
</ul> </ul>
</div> </div>
...@@ -27,23 +27,23 @@ ...@@ -27,23 +27,23 @@
<h4>Business Brief</h4> <h4>Business Brief</h4>
<ul> <ul>
<li> <li>
<a href="/GS1ChinaEN/GS1ChinaENTest/barcodes.aspx">BarCodes</a> <a @click="handleGo('/SecondaryMenu/Barcode')">BarCodes</a>
</li> </li>
<li><a href="/GS1ChinaEN/GS1ChinaENTest/epc.aspx">EPC</a></li> <li><a @click="handleGo('/SecondaryMenu/EPC')">EPC</a></li>
<li> <li>
<a href="/GS1ChinaEN/GS1ChinaENTest/gdsn.aspx">GDSN</a> <a @click="handleGo('/SecondaryMenu/GDSN')">GDSN</a>
</li> </li>
<li> <li>
<a href="/GS1ChinaEN/GS1ChinaENTest/ecommerce.aspx">ECommerce</a> <a @click="handleGo('/SecondaryMenu/ECommerce')">ECommerce</a>
</li> </li>
<li> <li>
<a href="/GS1ChinaEN/GS1ChinaENTest/hanxincode.aspx">Han Xin Code</a> <a @click="handleGo('/SecondaryMenu/HanXinCode')">Han Xin Code</a>
</li> </li>
<li> <li>
<a href="/GS1ChinaEN/GS1ChinaENTest/sectors.aspx">Innovative Sectors</a> <a @click="handleGo('/SecondaryMenu/InnovativeSectors')">Innovative Sectors</a>
</li> </li>
<li> <li>
<a href="/GS1ChinaEN/GS1ChinaENTest/promotion.aspx">Industry Promotion</a> <a @click="handleGo('/SecondaryMenu/industryPromotion')">Industry Promotion</a>
</li> </li>
</ul> </ul>
</div> </div>
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
<h4>Training &amp; Learning</h4> <h4>Training &amp; Learning</h4>
<ul> <ul>
<li> <li>
<a href="/GS1ChinaEN/GS1ChinaENTest/elearning.aspx">E-Learning</a> <a @click="handleGo('/SecondaryMenu/eLearning')">E-Learning</a>
</li> </li>
<li> <li>
<a href="http://ocp.gs1.org/sites/glossary/en-gb" target="_blank">Glossary</a> <a href="http://ocp.gs1.org/sites/glossary/en-gb" target="_blank">Glossary</a>
...@@ -96,6 +96,20 @@ ...@@ -96,6 +96,20 @@
</div> </div>
</footer> </footer>
</template> </template>
<script>
export default {
data () {
return {
}
},
methods: {
handleGo (val) {
this.$router.push({ path: val })
}
}
}
</script>
<style scoped lang="scss" > <style scoped lang="scss" >
@import "@/assets/css/english"; @import "@/assets/css/english";
</style> </style>
...@@ -1328,11 +1328,6 @@ const routes = [{ ...@@ -1328,11 +1328,6 @@ const routes = [{
component: blankMain, component: blankMain,
// redirect: '/SecondaryMenu/industryPromotion', // redirect: '/SecondaryMenu/industryPromotion',
children: [{ children: [{
path: "/SecondaryMenu/industryPromotion",
name: "IndustryPromotion",
component: () => import("@/views/English/SecondaryMenu/industryPromotion"),
},
{
path: "/SecondaryMenu/Introduction", path: "/SecondaryMenu/Introduction",
name: "Introduction", name: "Introduction",
component: () => import("@/views/English/SecondaryMenu/Introduction"), component: () => import("@/views/English/SecondaryMenu/Introduction"),
...@@ -1378,17 +1373,33 @@ const routes = [{ ...@@ -1378,17 +1373,33 @@ const routes = [{
component: () => import("@/views/English/SecondaryMenu/InnovativeSectors"), component: () => import("@/views/English/SecondaryMenu/InnovativeSectors"),
}, },
{ {
path: "/SecondaryMenu/industryPromotion",
name: "IndustryPromotion",
component: () => import("@/views/English/SecondaryMenu/industryPromotion"),
},
{
path: "/SecondaryMenu/eLearning", path: "/SecondaryMenu/eLearning",
name: "eLearning", name: "eLearning",
component: () => import("@/views/English/SecondaryMenu/eLearning"), component: () => import("@/views/English/SecondaryMenu/eLearning"),
}
]
}, },
{ {
path: "/TertiaryMenu",
name: "TertiaryMenu",
component: blankMain,
children: [{
path: "/IndustryPromotion/FoodSafety", path: "/IndustryPromotion/FoodSafety",
name: "FoodSafety", name: "FoodSafety",
component: () => import("@/views/English/TertiaryMenu/IndustryPromotion/FoodSafety"), component: () => import("@/views/English/TertiaryMenu/IndustryPromotion/FoodSafety"),
}, },
{
path: "/IndustryPromotion/Healthcare",
name: "Healthcare",
component: () => import("@/views/English/TertiaryMenu/IndustryPromotion/Healthcare"),
}
] ]
}, }
]; ];
const router = new VueRouter({ const router = new VueRouter({
mode: "history", mode: "history",
......
...@@ -4,34 +4,17 @@ ...@@ -4,34 +4,17 @@
<div class="col-xs-12 col-md-3 section-spacing" style="margin-top: -3%"> <div class="col-xs-12 col-md-3 section-spacing" style="margin-top: -3%">
<div class="content-module-container"> <div class="content-module-container">
<h4> <h4>
<a <a @click="handleGo('/IndustryPromotion/FoodSafety')" style="text-decoration: none; color: #002c6c">Food
@click="handleGo('/IndustryPromotion/FoodSafety')" safety</a>
target="_blank"
style="text-decoration: none; color: #002c6c"
>Food safety</a
>
</h4> </h4>
<div <div class="content-module-wrapper" style="border-top: 7px solid #7ac143"></div>
class="content-module-wrapper" <div class="content-module content-module-padding" style="padding: 0px; background-color: #002c6c">
style="border-top: 7px solid #7ac143" <img src="@/assets/image/english/Food-satety.jpg" alt="" class="img-responsive" />
></div>
<div
class="content-module content-module-padding"
style="padding: 0px; background-color: #002c6c"
>
<img
src="@/assets/image/english/Food-satety.jpg"
alt=""
class="img-responsive"
/>
<p class="small" style="padding: 20px"> <p class="small" style="padding: 20px">
<a <a @click="handleGo('/IndustryPromotion/FoodSafety')" style="color: #fff; text-decoration: none">Barcode
href="/GS1ChinaEN/GS1ChinaENTest/foodsafety.aspx" applications have been extended to the food safety
target="_blank" area
style="color: #fff; text-decoration: none" with great efforts…</a>
>Barcode applications have been extended to the food safety area
with great efforts…</a
>
</p> </p>
</div> </div>
</div> </div>
...@@ -39,34 +22,17 @@ ...@@ -39,34 +22,17 @@
<div class="col-xs-12 col-md-3 section-spacing" style="margin-top: -3%"> <div class="col-xs-12 col-md-3 section-spacing" style="margin-top: -3%">
<div class="content-module-container"> <div class="content-module-container">
<h4> <h4>
<a <a @click="handleGo('/IndustryPromotion/Healthcare')"
href="/GS1ChinaEN/GS1ChinaENTest/healthcare.aspx" style="text-decoration: none; color: #002c6c">Healthcare</a>
target="_blank"
style="text-decoration: none; color: #002c6c"
>Healthcare</a
>
</h4> </h4>
<div <div class="content-module-wrapper" style="border-top: 7px solid #00b6de"></div>
class="content-module-wrapper" <div class="content-module content-module-padding" style="padding: 0px; background-color: #002c6c">
style="border-top: 7px solid #00b6de" <img src="@/assets/image/english/Healthcare.jpg" alt="" class="img-responsive" />
></div>
<div
class="content-module content-module-padding"
style="padding: 0px; background-color: #002c6c"
>
<img
src="@/assets/image/english/Healthcare.jpg"
alt=""
class="img-responsive"
/>
<p class="small" style="padding: 20px"> <p class="small" style="padding: 20px">
<a <a @click="handleGo('/IndustryPromotion/Healthcare')" style="color: #fff; text-decoration: none">GS1 China
href="/GS1ChinaEN/GS1ChinaENTest/healthcare.aspx" offers technical support for regulators in
target="_blank" healthcare
style="color: #fff; text-decoration: none" sector to develop standards and regulations…</a>
>GS1 China offers technical support for regulators in healthcare
sector to develop standards and regulations…</a
>
</p> </p>
</div> </div>
</div> </div>
...@@ -74,34 +40,15 @@ ...@@ -74,34 +40,15 @@
<div class="col-xs-12 col-md-3 section-spacing" style="margin-top: -3%"> <div class="col-xs-12 col-md-3 section-spacing" style="margin-top: -3%">
<div class="content-module-container"> <div class="content-module-container">
<h4> <h4>
<a <a @click="handleGo('/SecondaryMenu/ECommerce')" style="text-decoration: none; color: #002c6c">ECommerce</a>
href="/GS1ChinaEN/GS1ChinaENTest/ecommerce.aspx"
target="_blank"
style="text-decoration: none; color: #002c6c"
>ECommerce</a
>
</h4> </h4>
<div <div class="content-module-wrapper" style="border-top: 7px solid #f05587"></div>
class="content-module-wrapper" <div class="content-module content-module-padding" style="padding: 0px; background-color: #002c6c">
style="border-top: 7px solid #f05587" <img src="@/assets/image/english/ECommerce.jpg" alt="" class="img-responsive" />
></div>
<div
class="content-module content-module-padding"
style="padding: 0px; background-color: #002c6c"
>
<img
src="@/assets/image/english/ECommerce.jpg"
alt=""
class="img-responsive"
/>
<p class="small" style="padding: 20px"> <p class="small" style="padding: 20px">
<a <a @click="handleGo('/SecondaryMenu/ECommerce')" style="color: #fff; text-decoration: none">GS1 standard
href="/GS1ChinaEN/GS1ChinaENTest/ecommerce.aspx" can provide the efficiency solutions for the
target="_blank" issues for e-commerce enterprises…</a>
style="color: #fff; text-decoration: none"
>GS1 standard can provide the efficiency solutions for the
issues for e-commerce enterprises…</a
>
</p> </p>
</div> </div>
</div> </div>
...@@ -109,34 +56,15 @@ ...@@ -109,34 +56,15 @@
<div class="col-xs-12 col-md-3 section-spacing" style="margin-top: -3%"> <div class="col-xs-12 col-md-3 section-spacing" style="margin-top: -3%">
<div class="content-module-container"> <div class="content-module-container">
<h4> <h4>
<a <a @click="handleGo('/SecondaryMenu/GDSN')" style="text-decoration: none; color: #002c6c">GDSN</a>
href="/GS1ChinaEN/GS1ChinaENTest/gdsn.aspx"
target="_blank"
style="text-decoration: none; color: #002c6c"
>GDSN</a
>
</h4> </h4>
<div <div class="content-module-wrapper" style="border-top: 7px solid #71b790"></div>
class="content-module-wrapper" <div class="content-module content-module-padding" style="padding: 0px; background-color: #002c6c">
style="border-top: 7px solid #71b790" <img src="@/assets/image/english/GDSN.jpg" alt="" class="img-responsive" />
></div>
<div
class="content-module content-module-padding"
style="padding: 0px; background-color: #002c6c"
>
<img
src="@/assets/image/english/GDSN.jpg"
alt=""
class="img-responsive"
/>
<p class="small" style="padding: 20px"> <p class="small" style="padding: 20px">
<a <a @click="handleGo('/SecondaryMenu/GDSN')" style="color: #fff; text-decoration: none">GS1
href="/GS1ChinaEN/GS1ChinaENTest/gdsn.aspx" China is willing to cooperate with countries around the
target="_blank" world to encourage the exchange and sharing...</a>
style="color: #fff; text-decoration: none"
>GS1 China is willing to cooperate with countries around the
world to encourage the exchange and sharing...</a
>
</p> </p>
</div> </div>
</div> </div>
...@@ -146,14 +74,14 @@ ...@@ -146,14 +74,14 @@
</template> </template>
<script> <script>
export default { export default {
data(){ data () {
return{ return {
} }
}, },
methods:{ methods: {
handleGo(val){ handleGo (val) {
this.$router.push({path: val}) this.$router.push({ path: val })
} }
} }
} }
......
<template> <template>
<div <div class="row" style="background-color: #fff; margin-left: 0px; margin-right: 0px">
class="row"
style="background-color: #fff; margin-left: 0px; margin-right: 0px"
>
<div class="container"> <div class="container">
<div class="col-xs-12 col-md-6 section-spacing"> <div class="col-xs-12 col-md-6 section-spacing">
<div class="content-module-container"> <div class="content-module-container">
<h4></h4> <h4></h4>
<div <div class="content-module-wrapper" style="border-top: 7px solid #c1d82f"></div>
class="content-module-wrapper"
style="border-top: 7px solid #c1d82f"
></div>
<div class="row content"> <div class="row content">
<div class="col-xs-12"></div> <div class="col-xs-12"></div>
...@@ -33,35 +27,22 @@ ...@@ -33,35 +27,22 @@
<div class="col-xs-12 col-md-3 section-spacing"> <div class="col-xs-12 col-md-3 section-spacing">
<div class="content-module-container"> <div class="content-module-container">
<h4></h4> <h4></h4>
<div <div class="content-module-wrapper" style="border-top: 7px solid #7ac143"></div>
class="content-module-wrapper"
style="border-top: 7px solid #7ac143"
></div>
<div class="content-module content-module-padding"> <div class="content-module content-module-padding">
<h4>Tools</h4> <h4>Tools</h4>
<p class="small"> <p class="small">
<a <a href="http://www.gs1.org/check-digit-calculator" target="_blank">Check digit calculator</a><br />
href="http://www.gs1.org/check-digit-calculator"
target="_blank"
>Check digit calculator</a
><br />
Calculate correct check digit for barcodes. Calculate correct check digit for barcodes.
</p> </p>
<p class="small"> <p class="small">
<a href="http://gepir.gs1.org" target="_blank" <a href="http://gepir.gs1.org" target="_blank">Who owns this barcode?</a><br />
>Who owns this barcode?</a
><br />
Find companies linked to GS1 barcode numbers. Find companies linked to GS1 barcode numbers.
</p> </p>
</div> </div>
<div class="content-module content-module-padding"> <div class="content-module content-module-padding">
<h4>Standards</h4> <h4>Standards</h4>
<p class="small"> <p class="small">
<a <a href="http://www.gs1.org/how-gs1-standards-work" target="_blank">See how GS1 standards work</a><br />
href="http://www.gs1.org/how-gs1-standards-work"
target="_blank"
>See how GS1 standards work</a
><br />
GS1 standards help you single out what really matters. GS1 standards help you single out what really matters.
</p> </p>
</div> </div>
...@@ -70,23 +51,12 @@ ...@@ -70,23 +51,12 @@
<div class="col-xs-12 col-md-3 section-spacing"> <div class="col-xs-12 col-md-3 section-spacing">
<div class="content-module-container"> <div class="content-module-container">
<h4></h4> <h4></h4>
<div <div class="content-module-wrapper" style="border-top: 7px solid #002c6c"></div>
class="content-module-wrapper" <div class="content-module content-module-padding" style="padding: 0px">
style="border-top: 7px solid #002c6c" <img src="@/assets/image/english/need-bar.jpg" alt="" class="img-responsive" />
></div>
<div
class="content-module content-module-padding"
style="padding: 0px"
>
<img
src="@/assets/image/english/need-bar.jpg"
alt=""
class="img-responsive"
/>
<h4 style="padding: 20px"> <h4 style="padding: 20px">
<a href="/GS1ChinaEN/GS1ChinaENTest/barcodes.aspx" <a @click="handleGo('/SecondaryMenu/Barcode')">Need a
>Need a barcode?</a barcode?</a>
>
</h4> </h4>
<p class="small" style="padding: 20px"> <p class="small" style="padding: 20px">
Our barcodes identify products uniquely so they can be sold Our barcodes identify products uniquely so they can be sold
...@@ -99,7 +69,18 @@ ...@@ -99,7 +69,18 @@
</div> </div>
</template> </template>
<script> <script>
export default {}; export default {
data () {
return {
}
},
methods: {
handleGo (val) {
this.$router.push({ path: val })
}
}
}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@import "@/assets/css/english"; @import "@/assets/css/english";
......
...@@ -2,36 +2,95 @@ ...@@ -2,36 +2,95 @@
<div class="toolkit"> <div class="toolkit">
<!-- Banner图 --> <!-- Banner图 -->
<div class="banner"> <div class="banner">
<VueSlickCarousel v-bind="bannerSettings" v-if="banner.length > 0"> <VueSlickCarousel v-bind="bannerSettings">
<div v-for="(el, i) in banner" :key="i"> <div class="carousel-container full-width">
<div class="banner-item" :style="{ background: el.colorBackground }"> <div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<div class="container"> <div class="container">
<div class="row"> <ol class="carousel-indicators">
<div class="col-lg-6 carousel-caption-left"> <li data-target="#carousel-example-generic" data-slide-to="0" class=""></li>
<div class="carousel-title">{{ el.title }}</div> <li data-target="#carousel-example-generic" data-slide-to="1" class=""></li>
<p class="carousel-note"> <li data-target="#carousel-example-generic" data-slide-to="2" class=""></li>
{{ el.brief }} <li data-target="#carousel-example-generic" data-slide-to="3" class=""></li>
</ol>
</div>
<div class="carousel-inner" style="height: 400px">
<div class="item bg-peach next left">
<div class="container">
<img class="pull-right carousel-glyph" src="@/assets/image/english/GS1-China.jpg"
style="margin-top: -40px" alt="Placeholder">
<h1>
About GS1 China</h1>
<p class="large">
GS1 China, founded in 1988 under the authorization of the State Council of the People’s
Republic of China as an affiliate of General Administration of State Administration for
Market Regulation, is in charge of organizing, coordinating and
administrating article numbering and Auto-ID work throughout China.</p>
<a href="/GS1ChinaEN/GS1ChinaENTest/introduction.aspx">
<button type="button" class="btn-primary btn-margin bg-blue">
More About GS1 China</button></a>
</div>
</div>
<div class="item bg-purple">
<div class="container">
<img class="pull-right carousel-glyph" src="@/assets/image/english/carousel-1.jpg"
style="margin-top: -40px" alt="Placeholder">
<h1>
About GS1</h1>
<p class="large">
GS1 believes in the power of standards to transform the way we work and live. We
empower business to grow and to improve efficiency, safety, security and sustainability
.</p>
<a href="http://www.gs1.org/about" target="_blank">
<button type="button" class="btn-primary btn-margin bg-blue">
More About GS1</button></a>
</div>
</div>
<div class="item bg-lime">
<div class="container">
<img class="pull-right carousel-glyph" src="@/assets/image/english/training.jpg"
style="margin-top: -40px" alt="Placeholder">
<h1>
Training</h1>
<p class="large">
GS1 offers a wide range of training courses to help you use our standards. Take
a look at some of our online resources to get started:
</p> </p>
<button :class="['carousel-btn', el.colorMore]" @click="learnMore(i)"> <li style="color: #002c6c; font-size: 18px; line-height: 30px">Intro to Transport and
<span>了解更多</span><img src="@/assets/image/home/more-arrow.png" alt="" /> Logistics</li>
</button> <li style="color: #002c6c; font-size: 18px; line-height: 30px">Intro to Traceability</li>
<p></p>
<a href="http://www.gs1.org/training" target="_blank">
<button type="button" class="btn-primary btn-margin bg-blue">
View More</button></a>
</div>
</div>
<div class="item bg-sky active left">
<div class="container">
<img class="pull-right carousel-glyph" src="@/assets/image/english/local.jpg"
style="margin-top: -40px" alt="Placeholder">
<h1>
Contact GS1 local offices</h1>
<p class="large">
GS1 has local offices in over 100 countries. Our local offices handle all enquiries
related to GS1 standards.</p>
<li style="color: #002c6c; font-size: 18px; line-height: 30px">Europe</li>
<li style="color: #002c6c; font-size: 18px; line-height: 30px">Middle East and Africa</li>
<li style="color: #002c6c; font-size: 18px; line-height: 30px">Americas</li>
<li style="color: #002c6c; font-size: 18px; line-height: 30px">Asia Pacific</li>
<a href="http://www.gs1.org/contact/overview" target="_blank">
<button type="button" class="btn-primary btn-margin bg-blue">
View More</button></a>
</div> </div>
</div> </div>
</div> </div>
<div class="banner-bg"> <div class="container">
<img :src="el.picIndexPath" alt="" /> <a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
<span class="glyphicon icon-arrow_left"></span></a><a class="right carousel-control"
href="#carousel-example-generic" data-slide="next"><span class="glyphicon icon-arrow_right">
</span></a>
</div> </div>
</div> </div>
</div> </div>
<template #prevArrow>
<div class="custom-arrow"></div>
</template>
<template #customPaging>
<div class="custom-dot"></div>
</template>
<template #nextArrow>
<div class="custom-arrow"></div>
</template>
</VueSlickCarousel> </VueSlickCarousel>
</div> </div>
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
<h4> <h4>
Food safety</h4> Food safety</h4>
<p class="small"> <p class="small">
<a href="/GS1ChinaEN/GS1ChinaENTest/foodsafety.aspx">Read More &gt;</a> <a @click="handleGo('/IndustryPromotion/FoodSafety')">Read More &gt;</a>
</p> </p>
</div> </div>
</div> </div>
...@@ -79,6 +79,18 @@ ...@@ -79,6 +79,18 @@
</div> </div>
</div> </div>
</template> </template>
<script>
export default {
data () {
return {}
},
methods: {
handleGo (val) {
this.$router.push({ path: val })
}
}
}
</script>
<style scoped lang="scss" > <style scoped lang="scss" >
@import "@/assets/css/english"; @import "@/assets/css/english";
</style> </style>
<template>
<div class="container site-content flush-outside">
<div class="container">
<section>
<div class="row">
<div class="col-md-12">
<ul class="nav navbar-nav mm-float1">
<ol class="breadcrumb" style="background-color:#f4f4f4">
<li><a href="/GS1ChinaEN/GS1ChinaENTest/index.aspx">Home</a></li>
<li><a href="/GS1ChinaEN/GS1ChinaENTest/promotion.aspx">Industry Promotion</a></li>
<li class="active">Healthcare</li>
</ol>
</ul>
</div>
</div>
</section>
<section>
<div class="row">
<div class="col-sm-9">
<h1>Healthcare</h1>
<p class="small" style="padding-top: 20px">
In order to address to the domestic demand of healthcare safety, GS1 China strengthened and broadened the
use of barcode technology in the healthcare sector in 2007, and established Healthcare Workgroup in 2008
consists of staff from 20 branches all around China. There are several projects including “Implantable
medical device traceability in hospital”, “Beijing cosmetics market supervision system” and “Product ID
for Chinese traditional medicine” had been carried out by the branches organized.</p>
<p class="small" style="padding-top: 20px">
GS1 China offers technical support for regulators in healthcare sector to develop standards and
regulations, and help all stakeholders in the healthcare supply chain to gain more efficiency and safety
through adopting GS1 system. GS1 China has also published application guide, reference book and
newsletters, all of them can be found at website:<a href=" http://healthcare.ancc.org.cn/"
target="_blank"> http://healthcare.ancc.org.cn/ </a></p>
</div>
<div class="col-sm-3" style="padding-top:85px">
<img class="img-responsive center-block" src="@/assets/image/english/HC-2.jpg" alt="Healthcare">
</div>
</div>
</section>
</div>
</div>
</template>
<style scoped lang="scss" >
@import "@/assets/css/english";
</style>
\ No newline at end of file
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<script> <script>
import TopBanner from '@/components/layout/topBanner.vue' import TopBanner from '@/components/layout/topBanner.vue'
import Header from '@/components/layout/englishHeader' import Header from '@/components/layout/englishHeader'
import Footer from "@/components/layout/englishFoor.vue" import Footer from "@/components/layout/englishFoot.vue"
export default { export default {
components: { components: {
Footer, Footer,
......
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