Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gs1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴迪
gs1
Commits
1e2ac7a8
Commit
1e2ac7a8
authored
Mar 17, 2023
by
Lyan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
08ed6f58
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
161 additions
and
81 deletions
+161
-81
mock.js
src/components/layout/header/mock.js
+1
-0
list.vue
src/views/BarCode/copms/list.vue
+5
-5
Corppay.vue
src/views/Business/Corppay.vue
+1
-1
Faq.vue
src/views/Business/Faq.vue
+3
-2
table.vue
src/views/Business/copms/table.vue
+2
-2
serviceFee.vue
src/views/Business/serviceFee.vue
+59
-2
index.vue
src/views/Home/index.vue
+1
-1
list.vue
src/views/News/Ecommerce/copms/list.vue
+1
-1
Retail.vue
src/views/News/Retail.vue
+10
-9
RetailBusiness.vue
src/views/News/RetailBusiness.vue
+1
-0
Retailcode.vue
src/views/News/Retailcode.vue
+13
-13
RetailcodeLs.vue
src/views/News/RetailcodeLs.vue
+36
-19
RetailcodeLsts.vue
src/views/News/RetailcodeLsts.vue
+13
-13
msg.vue
src/views/News/msg.vue
+13
-11
Intro.vue
src/views/Org/Intro.vue
+1
-1
validation.js
src/views/Search/validation.js
+1
-1
No files found.
src/components/layout/header/mock.js
View file @
1e2ac7a8
...
...
@@ -872,6 +872,7 @@ export const nav = [
style
:
{
paddingRight
:
'132px'
},
breadcrumb
:
[
{
name
:
"资讯中心"
,
path
:
"/News/index"
},
{
name
:
"应用领域"
,
path
:
"/News/index"
},
{
name
:
"零售"
},
],
},
...
...
src/views/BarCode/copms/list.vue
View file @
1e2ac7a8
<
template
>
<div
class=
"list"
>
<div
v-for=
"(tmp, i) in list"
:key=
"i"
class=
"row"
@
click=
"handelClick(tmp)"
>
<div
class=
"col-lg-
6
list-left"
>
<div
v-for=
"(tmp, i) in list"
:key=
"i"
class=
"row
2
"
@
click=
"handelClick(tmp)"
>
<div
class=
"col-lg-
11
list-left"
>
<span></span>
<span>
{{
tmp
.
name
}}
</span>
</div>
...
...
@@ -24,9 +24,9 @@ export default {
.list
{
margin
:
0
;
padding
:
0
;
.row
{
display
:
flex
;
justify-content
:
space-between
;
.row
2
{
//
display
:
flex
;
//
justify-content
:
space-between
;
border-bottom
:
1px
dashed
#c5d8ee
;
padding
:
20px
0
;
margin
:
0
;
...
...
src/views/Business/Corppay.vue
View file @
1e2ac7a8
...
...
@@ -141,7 +141,7 @@
<p
class=
"title"
>
收费政策依据文件号
</p>
<p>
<a
href=
"http
://www.ndrc.gov.cn/zcfb/zcfbtz/201506/t20150623_696756
.html"
href=
"http
s://www.ndrc.gov.cn/xxgk/zcfb/tz/201506/t20150623_963373
.html"
target=
"_balnk"
>
《国家发展改革委关于放开部分检验检测经营服务收费的通知》(发改价格[2015]1299号)
</a
...
...
src/views/Business/Faq.vue
View file @
1e2ac7a8
...
...
@@ -31,7 +31,7 @@
:class=
"['tab-pane', 'fade',
{ 'show active': current === tmp.type }]"
:id="tmp.type"
>
<faqTable
:list=
"tmp"
@
toTableFather=
"receiveTableFather"
/>
<faqTable
:list=
"tmp"
@
toTableFather=
"receiveTableFather"
:pageSize=
"pageParams.pageSize"
/>
<pages
:currPage=
"pageParams.currPage"
:pageSize=
"pageParams.pageSize"
...
...
@@ -200,7 +200,8 @@ export default {
}
},
jump
(
i
)
{
// console.log(i);
console
.
log
(
i
);
this
.
pageParams
.
currentPage
=
1
this
.
$router
.
push
({
path
:
this
.
list
[
i
].
link
,
query
:
{
...
...
src/views/Business/copms/table.vue
View file @
1e2ac7a8
...
...
@@ -7,7 +7,7 @@
</div>
<div
class=
"fqtbody"
>
<div
class=
"row"
v-for=
"(tmp, i) in list.data"
:key=
"i"
@
click=
"handelClick(tmp)"
>
<div
class=
"col-lg-1"
>
{{
(
list
.
pageNo
-
1
)
*
20
+
i
+
1
}}
</div>
<div
class=
"col-lg-1"
>
{{
(
list
.
pageNo
-
1
)
*
pageSize
+
i
+
1
}}
</div>
<div
class=
"col-lg-9"
>
{{
tmp
.
name
}}
</div>
<div
class=
"col-lg-2"
>
{{
tmp
.
types
&&
tmp
.
types
.
name
}}
</div>
</div>
...
...
@@ -16,7 +16,7 @@
</
template
>
<
script
>
export
default
{
props
:
[
'list'
],
props
:
[
'list'
,
'pageSize'
],
methods
:
{
handelClick
(
msg
)
{
...
...
src/views/Business/serviceFee.vue
View file @
1e2ac7a8
...
...
@@ -9,10 +9,66 @@
<table
border=
"1"
>
<tbody>
<tr>
<th>
收费
主体
</th>
<th>
收费
项目
</th>
<th>
主体
</th>
<th>
服务
项目
</th>
<th>
收费标准
</th>
<th>
收费依据
</th>
<th>
服务内容
</th>
</tr>
<tr>
<td>
中国物品编码中心
</td>
<td>
条码微站
</td>
<td>
中国商品条码系统成员为1200元/年;非系统成员为2400元/年。
</td>
<td>
《关于事业单位和社会团体有关收费管理问题的通知》(财规【2000】47号)
</td>
<td>
综合商品二维码服务解决方案,帮助系统成员实现条码往商品二维码的升级。详细功能包括快速建立移动门户,提供专属微信小程序,快速建立产品电子目录,新品订阅,产品防伪等功能。
</td>
</tr>
<tr>
<td>
中国物品编码中心
</td>
<td>
GDSN
</td>
<td>
3500元/年
</td>
<td>
《关于事业单位和社会团体有关收费管理问题的通知》(财规【2000】47号)
</td>
<td>
GS1全球数据同步解决方案,实现产品信息全球电子共享,中国唯一全球认证GDSN数据池。具体包括产品供应链信息管理,产品包装层级管理、产品注册,产品订阅,产品同步等功能。
</td>
</tr>
<tr>
<td>
中国物品编码中心
</td>
<td>
易码追溯
</td>
<td>
中国商品条码系统成员平台使用费为300元/年,非系统成员为700元/年,商品追溯费用80元/个,单品电子标签0.1元/个
</td>
<td>
《关于事业单位和社会团体有关收费管理问题的通知》(财规【2000】47号)
</td>
<td>
依托于中国食品(产品)安全追溯平台,基于GS1 EPCIS标准,为生产企业提供企业信息管理、原料进货、生产加工、销售订单、防伪防窜货、检验信息、追溯图谱、追溯凭证、数据统计等功能。
</td>
</tr>
<tr>
<td>
中国物品编码中心
</td>
<td>
GS1 UDI专区
</td>
<td>
中国商品条码系统成员为9900元/年,非系统成员为12900元/年
</td>
<td>
《关于事业单位和社会团体有关收费管理问题的通知》(财规【2000】47号)
</td>
<td>
GS1中国官方医疗器械企业生命周期全流程解决方案。从产品生产到最终交付,为企业建立完整的UDI一物一码数据库,并完成信息合规申报、DI赋码、DI编码、UDI打印、标签检查等各项工作。
</td>
</tr>
<tr>
<td>
中国物品编码中心
</td>
<td>
条码商桥
</td>
<td>
一站式信息托管服务收费标准为80/件
</td>
<td>
《关于事业单位和社会团体有关收费管理问题的通知》(财规【2000】47号)
</td>
<td>
为系统成员提供一站式产品信息托管服务。包括产品包装合规性检查、产品图片拍摄、产品信息采编、商品推广、共享以及私有API数据集成等服务。
</td>
</tr>
<tr>
<td>
中国物品编码中心
</td>
...
...
@@ -23,6 +79,7 @@
<td>
《关于事业单位和社会团体有关收费管理问题的通知》(财规【2000】47号)
</td>
<td>
除固定产品与服务外,额外对社会企业提供非标准化定制服务与解决方案,包括但不限于产品信息整理,产品信息数据清洗,产品信息逻辑处理,产品信息交换、产品信息托管、产品信息数据分析等为满足特定需求而定制的接入接出或者填写规则等多种定制化服务。
</td>
</tr>
</tbody>
</table>
...
...
src/views/Home/index.vue
View file @
1e2ac7a8
...
...
@@ -878,7 +878,7 @@ export default {
ico
:
require
(
"../../assets/image/home/dzfw-ico2.png"
),
name
:
"进口商品数据通报"
,
isChecked
:
true
,
url
:
"http://import.gds.org.cn/Content/staticpage/serviceIntroduct.html"
,
url
:
"http://import.gds.org.cn
:8088
/Content/staticpage/serviceIntroduct.html"
,
type
:
"link"
,
},
{
...
...
src/views/News/Ecommerce/copms/list.vue
View file @
1e2ac7a8
<
template
>
<div
class=
"list"
>
<div
v-for=
"(tmp, i) in list"
:key=
"i"
class=
"row"
@
click=
"handelClick(tmp)"
>
<div
class=
"col-lg-
6
list-left"
>
<div
class=
"col-lg-
11
list-left"
>
<span></span>
<span>
{{
tmp
.
title
}}
</span>
</div>
...
...
src/views/News/Retail.vue
View file @
1e2ac7a8
...
...
@@ -20,17 +20,18 @@
<img
src=
"../../assets/image/news/ls2.png"
alt=
""
/>
</div>
<div
class=
"col-lg-7"
>
<p
class=
"div-title"
style=
""
>
商品二维码推广工作组
</p>
<p
class=
"div-title"
style=
""
>
全国
商品二维码推广工作组
</p>
<div
class=
"div2-text"
>
<div
class=
"div2-text-box"
></div>
<div
class=
"div2-text-des"
>
<p>
商品二维码推广工作组计划组织各地编码分支机构及有意愿、有条件的品牌商、生产商、零售商和系统服务商等相关企业共同参加。
全国
商品二维码推广工作组计划组织各地编码分支机构及有意愿、有条件的品牌商、生产商、零售商和系统服务商等相关企业共同参加。
</p>
<p>
联系人:
</p>
<p
style=
"font-size: 12px;display: flex;flex-flow: wrap;"
class=
"div2-name"
>
<span>
李弘凯
<span><i
class=
"el-icon-phone"
></i>
010-84295522
</span><span><i
class=
"el-icon-message"
></i>
lihk@ancc.org.cn
</span></span>
<span>
支俊凯
<span><i
class=
"el-icon-phone"
></i>
010-84295518
</span><span><i
class=
"el-icon-message"
></i>
zhijk@ancc.org.cn
</span></span>
<p>
联系方式:
</p>
<p
>
<!--
<span>
李弘凯
<span><i
class=
"el-icon-phone"
></i>
010-84295522
</span><span><i
class=
"el-icon-message"
></i>
lihk@ancc.org.cn
</span></span>
<span>
支俊凯
<span><i
class=
"el-icon-phone"
></i>
010-84295518
</span><span><i
class=
"el-icon-message"
></i>
zhijk@ancc.org.cn
</span></span>
-->
<span>
发送邮件至GM2D@ancc.org.cn,邮件主题注明:【加入全国商品二维码推广工作组】。
</span>
</p>
</div>
</div>
...
...
@@ -185,9 +186,9 @@
</p>
<p
class=
"row justify-content-center name-div"
>
<
span
class=
"col-lg-6 col-md-8"
style=
"display: flex;flex-flow: wrap;justify-content: end;padding-right:30px"
>
李弘凯
<span><i
class=
"el-icon-phone"
></i>
010-84295522
</span><span><i
class=
"el-icon-message"
></i>
lihk@ancc.org.cn
</span></span
>
<
span
class=
"col-lg-6 col-md-8"
style=
"display: flex;flex-flow: wrap;justify-content: start;padding-left:30px"
>
支俊凯
<span><i
class=
"el-icon-phone"
></i>
010-84295518
</span><span><i
class=
"el-icon-message"
></i>
zhijk@ancc.org.cn
</span></span
>
<span>
发送邮件至GM2D@ancc.org.cn,邮件主题注明:【加入全渠道零售工作委员会】。
</span>
<
!-- <span class="col-lg-6 col-md-8" style="display: flex;flex-flow: wrap;justify-content: end;padding-right:30px">李弘凯<span><i class="el-icon-phone"></i>010-84295522</span><span><i class="el-icon-message"></i>lihk@ancc.org.cn</span></span> --
>
<
!-- <span class="col-lg-6 col-md-8" style="display: flex;flex-flow: wrap;justify-content: start;padding-left:30px">支俊凯<span><i class="el-icon-phone"></i>010-84295518</span><span><i class="el-icon-message"></i>zhijk@ancc.org.cn</span></span> --
>
</p>
</div>
</div>
...
...
src/views/News/RetailBusiness.vue
View file @
1e2ac7a8
...
...
@@ -50,6 +50,7 @@ export default {
mounted
()
{
// 面包屑单独处理
this
.
$store
.
commit
(
"system/SET_BREADCRUMB"
,
[
{
name
:
"资讯中心"
,
path
:
"/News/index"
},
{
name
:
"应用领域"
,
path
:
"/News/index"
},
{
name
:
"零售"
},
]);
...
...
src/views/News/Retailcode.vue
View file @
1e2ac7a8
...
...
@@ -178,9 +178,9 @@
<div
class=
"info-six-info"
>
<div
class=
"info-six-img"
id=
"info-six-img"
>
<!--
<div
class=
"info-six-img-img"
id=
"info-six-img-img"
>
<a
href=
"
http://www.gs1cn.org/News/article.aspx
?Id=10609"
target=
"_blank"
><img
src=
"@/assets/image/retailcode/banner1.jpg"
/></a>
<a
href=
"
http://www.gs1cn.org/News/article.aspx
?id=10731"
target=
"_blank"
><img
src=
"@/assets/image/retailcode/banner2.jpg"
/></a>
<a
href=
"
http://www.gs1cn.org/News/article.aspx
?id=10783"
target=
"_blank"
><img
src=
"@/assets/image/retailcode/banner3.jpg"
/></a>
<a
href=
"
/News/msg
?Id=10609"
target=
"_blank"
><img
src=
"@/assets/image/retailcode/banner1.jpg"
/></a>
<a
href=
"
/News/msg
?id=10731"
target=
"_blank"
><img
src=
"@/assets/image/retailcode/banner2.jpg"
/></a>
<a
href=
"
/News/msg
?id=10783"
target=
"_blank"
><img
src=
"@/assets/image/retailcode/banner3.jpg"
/></a>
</div>
<div
class=
"info-six-img-circle"
>
<span
class=
"active"
></span>
...
...
@@ -189,13 +189,13 @@
</div>
-->
<el-carousel
class=
"info-six-img-img"
id=
"info-six-img-img"
height=
"470px"
>
<el-carousel-item>
<a
href=
"
http://www.gs1cn.org/News/article.aspx
?Id=10609"
target=
"_blank"
><img
src=
"@/assets/image/retailcode/banner1.jpg"
/></a>
<a
href=
"
/News/msg
?Id=10609"
target=
"_blank"
><img
src=
"@/assets/image/retailcode/banner1.jpg"
/></a>
</el-carousel-item>
<el-carousel-item>
<a
href=
"
http://www.gs1cn.org/News/article.aspx
?id=10731"
target=
"_blank"
><img
src=
"@/assets/image/retailcode/banner2.jpg"
/></a>
<a
href=
"
/News/msg
?id=10731"
target=
"_blank"
><img
src=
"@/assets/image/retailcode/banner2.jpg"
/></a>
</el-carousel-item>
<el-carousel-item>
<a
href=
"
http://www.gs1cn.org/News/article.aspx
?id=10783"
target=
"_blank"
><img
src=
"@/assets/image/retailcode/banner3.jpg"
/></a>
<a
href=
"
/News/msg
?id=10783"
target=
"_blank"
><img
src=
"@/assets/image/retailcode/banner3.jpg"
/></a>
</el-carousel-item>
</el-carousel>
</div>
...
...
@@ -206,31 +206,31 @@
</div>
<div
class=
"info-six-link-list"
>
<img
src=
"@/assets/image/retailcode/code@2x.png"
/>
<a
href=
"
http://www.gs1cn.org/News/article.aspx
?id=10783"
target=
"_blank"
>
全渠道零售生鲜产品统一编码联盟在京成立
</a>
<a
href=
"
/News/msg
?id=10783"
target=
"_blank"
>
全渠道零售生鲜产品统一编码联盟在京成立
</a>
</div>
<div
class=
"info-six-link-list"
>
<img
src=
"@/assets/image/retailcode/code@2x.png"
/>
<a
href=
"
http://www.gs1cn.org/News/article.aspx
?id=10799"
target=
"_blank"
>
全国商品二维码推广工作组GM2D浙江工作经验分享与交流专题会顺利召开
</a>
<a
href=
"
/News/msg
?id=10799"
target=
"_blank"
>
全国商品二维码推广工作组GM2D浙江工作经验分享与交流专题会顺利召开
</a>
</div>
<div
class=
"info-six-link-list"
>
<img
src=
"@/assets/image/retailcode/code@2x.png"
/>
<a
href=
"
http://www.gs1cn.org/News/article.aspx
?id=10731"
target=
"_blank"
>
全球二维码迁移计划取得阶段性进展 “GM2D在线”在浙江省正式上线
</a>
<a
href=
"
/News/msg
?id=10731"
target=
"_blank"
>
全球二维码迁移计划取得阶段性进展 “GM2D在线”在浙江省正式上线
</a>
</div>
<div
class=
"info-six-link-list"
>
<img
src=
"@/assets/image/retailcode/code@2x.png"
/>
<a
href=
"
http://www.gs1cn.org/News/article.aspx
?Id=10666"
target=
"_blank"
>
浙江全球二维码迁移计划推广初见成效
</a>
<a
href=
"
/News/msg
?Id=10666"
target=
"_blank"
>
浙江全球二维码迁移计划推广初见成效
</a>
</div>
<div
class=
"info-six-link-list"
>
<img
src=
"@/assets/image/retailcode/code@2x.png"
/>
<a
href=
"
http://www.gs1cn.org/News/article.aspx
?Id=10609"
target=
"_blank"
>
浙江省市场监督管理局与国际物品编码组织、中国物品编码中心三方签署…
</a>
<a
href=
"
/News/msg
?Id=10609"
target=
"_blank"
>
浙江省市场监督管理局与国际物品编码组织、中国物品编码中心三方签署…
</a>
</div>
<div
class=
"info-six-link-list"
>
<img
src=
"@/assets/image/retailcode/code@2x.png"
/>
<a
href=
"
http://www.gs1cn.org/News/article.aspx
?Id=10609"
target=
"_blank"
>
全国商品二维码推广工作组第一次会议顺利召开
</a>
<a
href=
"
/News/msg
?Id=10609"
target=
"_blank"
>
全国商品二维码推广工作组第一次会议顺利召开
</a>
</div>
<div
class=
"info-six-link-list"
>
<img
src=
"@/assets/image/retailcode/code@2x.png"
/>
<a
href=
"
http://www.gs1cn.org/News/article.aspx
?Id=10766"
target=
"_blank"
>
中国物品编码中心宁波分中心助力 “全球二维码迁移计划”试点培训
</a>
<a
href=
"
/News/msg
?Id=10766"
target=
"_blank"
>
中国物品编码中心宁波分中心助力 “全球二维码迁移计划”试点培训
</a>
</div>
<div
class=
"info-six-link-list"
>
<img
src=
"@/assets/image/retailcode/code@2x.png"
/>
...
...
src/views/News/RetailcodeLs.vue
View file @
1e2ac7a8
<
template
>
<div
class=
"index-ls"
>
<div
class=
"nav-ls"
>
<a
class=
"spanLink"
@
click=
"gotoyy"
>
应用领域
</a>
/
<a
class=
"spanLink"
@
click=
"gotols"
>
零售
</a>
/
<a
class=
"spanLink"
@
click=
"gozty"
>
零售2027行动@二维码
</a>
/
<span
class=
"spanLink"
>
零售二维码
</span>
<breadcrumb
/>
</div>
<div
class=
"banner"
>
<div
class=
"banner-bg"
>
<div
class=
"banner-text"
>
商品二维码
</div>
...
...
@@ -24,28 +23,28 @@
<div
class=
"info-title-two info-title"
>
零售二维码——参考资料
</div>
<div
class=
"info-content-two info-content"
>
<div
class=
"info-content-list"
>
<a
href=
"chrome-extension://ibllepbpahcoppkjjllbabhnigcbffpi/https://www.gs1.org/docs/barcodes/2d-barcode-getting-started-guide.pdf
"
target=
"_blank"
>
<a
:href=
"`$
{urlDown}/office/uploadFileResource/lingshouzhuanti/2d-barcode-getting-started-guide.pdf`
" target="_blank">
《零售业商品二维码入门指南》
</a>
(2022年2月)
</div>
<div
class=
"info-content-list"
>
<a
href=
"chrome-extension://ibllepbpahcoppkjjllbabhnigcbffpi/https://www.gs1.org/sites/gs1/files/2021-09/2d-in-retail-a-new-dimension-in-barcodes.pdf"
target=
"_blank"
>
<a
:href=
"`$
{urlDown}/office/uploadFileResource/lingshouzhuanti/2d-in-retail-a-new-dimension-in-barcodes.pdf`"
target="_blank">
《GS1商品二维码:引领零售全渠道新维度》
</a>
(2021年9月)
</div>
<div
class=
"info-content-list"
>
<a
href=
"chrome-extension://ibllepbpahcoppkjjllbabhnigcbffpi/https://www.gs1.org/docs/barcodes/The-Barcode-(r)Evolution.pdf"
target=
"_blank"
>
<a
:href=
"`$
{urlDown}/office/uploadFileResource/lingshouzhuanti/The-Barcode-(r)Evolution.pdf`"
target="_blank">
商品条码的变革
</a></div>
<div
class=
"info-content-list"
>
<a
href=
"chrome-extension://ibllepbpahcoppkjjllbabhnigcbffpi/https://www.gs1.org/sites/gs1/files/2022-01/2d-programme-faqs.pdf"
target=
"_blank"
>
<a
:href=
"`$
{urlDown}/office/uploadFileResource/lingshouzhuanti/2d-programme-faqs.pdf`"
target="_blank">
GS1全球二维码迁移计划常见问题
</a></div>
</div>
<div
class=
"info-title-three info-title"
>
零售二维码——检验与测试报告
</div>
<div
class=
"info-content-two info-content"
>
<div
class=
"info-content-list"
>
<a
href=
"chrome-extension://ibllepbpahcoppkjjllbabhnigcbffpi/https://www.gs1.org/sites/default/files/2022-07/tier-2-test-report.pdf
"
target=
"_blank"
>
<a
:href=
"`$
{urlDown}/office/uploadFileResource/lingshouzhuanti/tier-2-test-report.pdf`
" target="_blank">
《商品二维码测试第二阶段结果》(2022年7月)
</a></div>
<div
class=
"info-content-list"
>
<a
href=
"chrome-extension://ibllepbpahcoppkjjllbabhnigcbffpi/https://www.gs1.org/sites/default/files/2022-02/2d_scanning_tier_1_preliminary_results_feb_22.pdf
"
target=
"_blank"
>
<a
:href=
"`$
{urlDown}/office/uploadFileResource/lingshouzhuanti/2d_scanning_tier_1_preliminary_results_feb_22.pdf`
" target="_blank">
《商品二维码测试第一阶段结果》 (2022年2月)
</a></div>
<div
class=
"info-content-list"
>
<a
href=
"chrome-extension://ibllepbpahcoppkjjllbabhnigcbffpi/https://www.gs1.org/docs/retail/2D_scanning_test_plan_-_Exec_Summary_-_Sept_21.pdf
"
target=
"_blank"
>
<a
:href=
"`$
{urlDown}/office/uploadFileResource/lingshouzhuanti/2D_scanning_test_plan_-_Exec_Summary_-_Sept_21.pdf`
" target="_blank">
《商品二维码测试计划:执行摘要》 (2021年9月)
</a></div>
</div>
<div
class=
"info-title-four info-title"
>
全国商品二维码推广工作组
</div>
...
...
@@ -57,10 +56,10 @@
<div
class=
"info-title-four info-title"
>
国内外应用案例
</div>
<div
class=
"info-content-two info-content"
>
<div
class=
"info-content-list"
>
<a
href=
"chrome-extension://ibllepbpahcoppkjjllbabhnigcbffpi/https://www.gs1.org/sites/gs1/files/2022-08/case-study-parla-deli-gs1brazil.pdf
"
target=
"_blank"
>
<a
:href=
"`$
{urlDown}/office/uploadFileResource/lingshouzhuanti/case-study-parla-deli-gs1brazil.pdf`
" target="_blank">
巴西Parla Deli食品商店成为全球首个应用包含有GS1 Digital Link 二维码的应用试点(EN)
</a></div>
<div
class=
"info-content-list"
>
<a
href=
"chrome-extension://ibllepbpahcoppkjjllbabhnigcbffpi/https://www.gs1.org/sites/gs1/files/2022-06/case-study-woolworths-gs1australia.pdf
"
target=
"_blank"
>
<a
:href=
"`$
{urlDown}/office/uploadFileResource/lingshouzhuanti/case-study-woolworths-gs1australia.pdf`
" target="_blank">
澳大利亚Woolworths超市应用商品二维码实现多重商业价值(EN)
</a></div>
<div
class=
"info-content-list"
>
<a
href=
"https://www.gs1au.org/for-your-industry/2d-barcodes/implementing-2dbarcodes-with-woolworths"
target=
"_blank"
>
...
...
@@ -79,13 +78,13 @@
</div>
</
template
>
<
script
>
//
import breadcrumb from "../comps/breadcrumb.vue";
import
breadcrumb
from
"../comps/breadcrumb.vue"
;
export
default
{
//
components: {
//
breadcrumb,
//
},
components
:
{
breadcrumb
,
},
data
()
{
return
{
};
...
...
@@ -97,8 +96,25 @@ export default {
},
created
(){
this
.
urlDown
=
process
.
env
.
VUE_APP_HOST_URL
;
},
watch
:{
$route
:
{
handler
()
{
// 面包屑单独处理
},
}
},
mounted
(){
this
.
$store
.
commit
(
"system/SET_BREADCRUMB"
,
[
{
name
:
"应用领域"
,
path
:
"/News/index"
},
{
name
:
"零售"
,
path
:
"/News/Retail"
},
{
name
:
"零售2027行动@二维码"
,
path
:
"/News/Retailcode"
},
{
name
:
"零售@二维码"
},
]);
},
methods
:
{
gotoyy
(){
this
.
$router
.
push
({
...
...
@@ -124,7 +140,7 @@ export default {
};
</
script
>
<
style
scoped
>
.index-ls
{
background
:
#f
ff
;
font-family
:
MicrosoftYaHei
;
padding-bottom
:
1px
;}
.index-ls
{
background
:
#f
0f5fa
;
font-family
:
MicrosoftYaHei
;
padding-bottom
:
1px
;}
.spanLink
{
cursor
:
pointer
;}
.headerTop
{
font-size
:
12px
;
width
:
1200px
;
margin
:
0
auto
;
display
:
flex
;
padding
:
7px
0
;
justify-content
:
flex-end
;}
.headerTop-text
{
margin-right
:
24px
;}
...
...
@@ -144,11 +160,12 @@ padding: 14px 0;}
.nav-ls
a
{
text-decoration
:
none
;
color
:
#454545
;}
.nav-ls
a
:hover
{
color
:
#f26344
;}
.nav-ls
span
{
color
:
#f26344
;}
.banner
{
width
:
100%
;
height
:
260px
;
padding-top
:
2
0px
;
margin-bottom
:
50px
;
display
:
flex
;
.banner
{
width
:
100%
;
height
:
260px
;
padding-top
:
0px
;
margin-bottom
:
50px
;
display
:
flex
;
background
:
url("~@/assets/image/retailcode/lsbanner3.png")
center
top
no-repeat
;
background-size
:
100%
100%
}
.banner
.banner-bg
{
width
:
1200px
;
margin
:
0
auto
;
position
:
relative
;}
.banner
.banner-bg
img
{
width
:
514px
;
height
:
260px
;
position
:
absolute
;
top
:
-7px
;
right
:
0
;}
.banner
.banner-bg
img
{
width
:
514px
;
height
:
260px
;
position
:
absolute
;
top
:
0
;
right
:
0
;}
.banner-text
{
font-size
:
40px
;
color
:
#FFFFFF
;
line-height
:
52px
;
margin
:
40px
auto
0
0
;
width
:
1200px
;}
.banner-text
:first-child
{
margin-top
:
60px
;}
.info
{
width
:
1200px
;
margin
:
0
auto
;}
.info-title
{
font-size
:
26px
;
color
:
#002C6C
;
line-height
:
35px
;
margin-bottom
:
24px
;}
.info-content
{
font-size
:
14px
;
color
:
#454545
;
line-height
:
24px
;
margin-bottom
:
32px
;}
...
...
src/views/News/RetailcodeLsts.vue
View file @
1e2ac7a8
<
template
>
<div
class=
"index-lsts"
>
<div
class=
"nav-lsts"
>
<a
class=
"spanLink"
@
click=
"gotoyy"
>
应用领域
</a>
/
<a
class=
"spanLink"
@
click=
"gotols"
>
零售
</a>
/
<a
class=
"spanLink"
@
click=
"gozty"
>
零售2027行动@二维码
</a>
/
<span
class=
"spanLink"
>
零售二维码探索
</span>
<breadcrumb
/>
</div>
<div
class=
"banner"
>
<div
class=
"banner-text"
>
商品二维码应用于零售POS结算
</div>
...
...
@@ -134,23 +132,25 @@
</div>
</
template
>
<
script
>
//
import breadcrumb from "../comps/breadcrumb.vue";
import
breadcrumb
from
"../comps/breadcrumb.vue"
;
export
default
{
//
components: {
//
breadcrumb,
//
},
components
:
{
breadcrumb
,
},
data
()
{
return
{
};
},
mounted
()
{
mounted
(){
this
.
$store
.
commit
(
"system/SET_BREADCRUMB"
,
[
{
name
:
"应用领域"
,
path
:
"/News/index"
},
{
name
:
"零售"
,
path
:
"/News/Retail"
},
{
name
:
"零售2027行动@二维码"
,
path
:
"/News/Retailcode"
},
{
name
:
"零售二维码探索"
},
]);
},
created
(){
},
...
...
@@ -200,7 +200,7 @@ export default {
};
</
script
>
<
style
scoped
>
.index-lsts
{
background
:
#f
ff
;
font-family
:
MicrosoftYaHei
;
position
:
relative
;
padding-bottom
:
1px
;}
.index-lsts
{
background
:
#f
0f5fa
;
font-family
:
MicrosoftYaHei
;
position
:
relative
;
padding-bottom
:
1px
;}
.spanLink
{
cursor
:
pointer
;}
.headerTop
{
font-size
:
12px
;
width
:
1200px
;
margin
:
0
auto
;
display
:
flex
;
padding
:
7px
0
;
justify-content
:
flex-end
;}
.headerTop-text
{
margin-right
:
24px
;}
...
...
src/views/News/msg.vue
View file @
1e2ac7a8
...
...
@@ -230,16 +230,16 @@ export default {
const
listRes
=
await
this
.
$api
.
news
.
newsInfo
(
params
);
const
{
returnCode
,
data
}
=
listRes
;
if
(
returnCode
===
"0"
)
{
let
matche
=
this
.
matcheList
.
filter
((
item
)
=>
item
.
classid
===
data
.
classid
)[
0
];
if
(
typeof
(
matche
)
===
'undefined'
){
matche
=
[
{
name
:
"深度专题"
,
path
:
"/News/DepthTopics"
,
}
]
}
this
.
setMatche
(
matche
);
//
let matche = this.matcheList.filter((item) => item.classid ===data.classid)[0];
//
if(typeof(matche)==='undefined'){
//
matche = [
//
{
//
name: "深度专题",
//
path: "/News/DepthTopics",
//
}
//
]
//
}
//
this.setMatche(matche);
this
.
content
=
data
.
content
;
this
.
title
=
data
.
title
;
this
.
showtime
=
data
.
showtime
;
...
...
@@ -348,8 +348,10 @@ export default {
p{
word-break
:
break-all
;
img{
margin-left
:
-28px
;
display
:
block
;
max-width
:
100%
;
height
:
auto
;
margin
:
0
auto
;
}
}
...
...
src/views/Org/Intro.vue
View file @
1e2ac7a8
...
...
@@ -6,7 +6,7 @@
中国物品编码中心是统一组织、协调、管理我国商品条码、物品编码与自动识别技术的专门机构,隶属于国家市场监督管理总局,1988年成立,1991年4月代表我国加入国际物品编码组织(GS1),负责推广国际通用的、开放的、跨行业的全球统一标识系统和供应链管理标准,向社会提供公共服务平台和标准化解决方案。
</p>
<p>
中国物品编码中心在全国设有47个分支机构,形成了覆盖全国的集编码管理、技术研发、标准制定、应用推广以及技术服务为一体的工作体系。物品编码与自动识别技术已广泛应用于零售、制造、物流、电子商务、移动商务、电子政务、医疗卫生、产品质量追溯、图书音像等国民经济和社会发展的诸多领域。全球统一标识系统是全球应用最为广泛的商务语言,商品条码是其基础和核心。截至目前,编码中心累计向
7
0多万家企业提供了商品条码服务,全国有上亿种商品上印有商品条码。
中国物品编码中心在全国设有47个分支机构,形成了覆盖全国的集编码管理、技术研发、标准制定、应用推广以及技术服务为一体的工作体系。物品编码与自动识别技术已广泛应用于零售、制造、物流、电子商务、移动商务、电子政务、医疗卫生、产品质量追溯、图书音像等国民经济和社会发展的诸多领域。全球统一标识系统是全球应用最为广泛的商务语言,商品条码是其基础和核心。截至目前,编码中心累计向
10
0多万家企业提供了商品条码服务,全国有上亿种商品上印有商品条码。
</p>
<p>
中国物品编码中心的主要职责是:
</p>
<p>
...
...
src/views/Search/validation.js
View file @
1e2ac7a8
...
...
@@ -22,7 +22,7 @@ export default {
});
},
hasSpecialString
(
string
){
const
regName
=
/^
[\u
4e00-
\u
9fa5_a-zA-Z0-9
]
+$/
;
const
regName
=
/^
([\u
4E00-
\u
9FA5A-Za-z0-9
\u
FF0E
\,\s](?!\u
3000
))
+$/
;
if
(
!
regName
.
test
(
string
)){
this
.
$message
.
error
(
'请输入正确的条码信息'
);
return
true
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment