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
956ee859
Commit
956ee859
authored
Dec 13, 2023
by
Jianli Ou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
境外条码查询数据不一致问题处理
parent
ecdaaa10
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
19 deletions
+18
-19
external.vue
src/views/Search/external.vue
+18
-19
No files found.
src/views/Search/external.vue
View file @
956ee859
...
@@ -661,22 +661,14 @@
...
@@ -661,22 +661,14 @@
<div
class=
"commodityInfo"
>
<div
class=
"commodityInfo"
>
<div
class=
"commodityInfo-cnt row"
>
<div
class=
"commodityInfo-cnt row"
>
<div
class=
"col-lg-12 result-info hrefInfo2"
>
<div
class=
"col-lg-12 result-info hrefInfo2"
>
<p><span>
企业名称:
</span><span>
09506000140445
</span></p>
<p><span>
企业名称:
</span><span>
{{licenseeDetail.licenseeName || '未知'}}
</span></p>
<p><span>
地址:
</span><span>
(en)Sticky's
</span></p>
<p><span>
地址:
</span><span
v-html=
"addressInfo(licenseeDetail.address)"
></span></p>
<p><span>
网址:
</span><span>
(en)Sticky's Traditional Strawberry Jam Low Sugar 500 Gram
</span></p>
<p><span>
网址:
</span><span>
{{licenseeDetail.contactPoint ? licenseeDetail.contactPoin[0].website : '未知'}}
</span></p>
<p><span>
License类型:
</span><span>
(en)http://www.gs1.org/docs/09506000140445_A1C1.jpg
</span></p>
<p><span>
License类型:
</span><span>
{{licenseeDetail.licenceType || '未知'}}
</span></p>
<p><span>
License Key:
</span><span>
10000217(Jams/Marmalades(Shelf Stable))
</span></p>
<p><span>
License Key:
</span><span>
{{licenseeDetail.licenceKey || '未知'}}
</span></p>
<p><span>
发码MO:
</span><span>
500(Gram)
</span></p>
<p><span>
发码MO:
</span><span>
{{licenseeDetail.licensingMO.moName || '未知'}}
</span></p>
<!-- <p><span>企业名称:</span><span>{{gs1ResultData.gs1Licence.licenseeName}}</span></p>-->
<!-- <p><span>地址:</span><span v-html="addressInfo(gs1ResultData.gs1Licence.address)"></span></p>-->
<!-- <p><span>网址:</span><span>{{gs1ResultData.gs1Licence.contactPoint ? gs1ResultData.gs1Licence.contactPoint[0].website : '--'}}</span></p>-->
<!-- <p><span>License类型:</span><span>{{gs1ResultData.gs1Licence.licenceType}}</span></p>-->
<!-- <p><span>License Key:</span><span>{{gs1ResultData.gs1Licence.licenceKey}}</span></p>-->
<!-- <p><span>发码MO:</span><span>{{gs1ResultData.gs1Licence.licensingMO.moName}}</span></p>-->
<!-- </div>-->
</div>
</div>
<p
style=
"font-size:13px;margin:15px 0 0 0 ;"
>
该License数据由 gs1ResultData moName 提供,并于2023年12月13日最新更新
</p>
<p
style=
"font-size:13px;margin:15px 0 0 0 ;"
>
该License数据由 {{licenseeDetail.licensingMO.moName}} 提供,并于{{dateFormat(licenseeDetail.dateUpdated)}}最新更新
</p>
<!-- <p style="font-size:13px;margin:15px 0 0 0 ;">该License数据由{{gs1ResultData.gs1Licence.licensingMO.moName}}提供,并于{{dateFormat(gs1ResultData.gs1Licence.dateUpdated)}}最新更新</p>-->
</div>
</div>
</div>
</div>
</el-tab-pane>
</el-tab-pane>
...
@@ -736,7 +728,9 @@ export default {
...
@@ -736,7 +728,9 @@ export default {
addressLocality
:
''
,
// 城市名称
addressLocality
:
''
,
// 城市名称
otherFiled
:
false
,
otherFiled
:
false
,
qyResultData
:
''
,
qyResultData
:
''
,
licenseeDetail
:
{},
licenseeDetail
:
{
licensingMO
:
{}
},
licenseeDetailDialog
:
false
,
licenseeDetailDialog
:
false
,
// countryList: countryListFunc()
// countryList: countryListFunc()
countryList
:
[]
countryList
:
[]
...
@@ -751,7 +745,7 @@ export default {
...
@@ -751,7 +745,7 @@ export default {
...
mapState
([
"urls"
]),
...
mapState
([
"urls"
]),
addressInfo
:
()
=>
{
addressInfo
:
()
=>
{
return
(
address
)
=>
{
return
(
address
)
=>
{
const
{
postalName
,
addressLocality
,
addressRegion
,
addressSuburb
,
streetAddress
,
postalCode
}
=
{
const
{
postalName
,
addressLocality
,
addressRegion
,
addressSuburb
,
streetAddress
,
postalCode
,
countryCode
}
=
{
postalName
:
{
language
:
''
,
value
:
''
},
postalName
:
{
language
:
''
,
value
:
''
},
addressLocality
:
{
language
:
''
,
value
:
''
},
addressLocality
:
{
language
:
''
,
value
:
''
},
addressRegion
:
{
language
:
''
,
value
:
''
},
addressRegion
:
{
language
:
''
,
value
:
''
},
...
@@ -760,8 +754,11 @@ export default {
...
@@ -760,8 +754,11 @@ export default {
...
address
...
address
}
}
const
language
=
addressLocality
.
language
||
addressRegion
.
language
||
addressSuburb
.
language
||
streetAddress
.
language
const
language
=
addressLocality
.
language
||
addressRegion
.
language
||
addressSuburb
.
language
||
streetAddress
.
language
// return `(${language}) ${streetAddress.value} ${ addressLocality.value} ${addressRegion.value}`
if
(
postalName
.
value
||
language
||
streetAddress
.
value
||
addressLocality
.
value
||
addressRegion
.
value
||
postalCode
)
{
return
`
${
postalName
.
value
}
<br/>(
${
language
}
)
${
streetAddress
.
value
}
${
addressLocality
.
value
}
${
addressRegion
.
value
}
<br/>
${
postalCode
}
`
return
`
${
postalName
.
value
?
postalName
.
value
+
'<br/>'
:
''
}
(
${
language
||
''
}
)
${
streetAddress
.
value
||
''
}
${
addressLocality
.
value
||
''
}
${
addressRegion
.
value
||
''
}
<br/>
${
postalCode
||
''
}
<br/>
${
countryCode
||
''
}
`
}
else
{
return
'未知'
}
}
}
},
},
dateFormat
:
()
=>
{
dateFormat
:
()
=>
{
...
@@ -989,6 +986,7 @@ export default {
...
@@ -989,6 +986,7 @@ export default {
},
},
async
searchQY
()
{
async
searchQY
()
{
this
.
qyResultData
=
''
this
.
qyResultData
=
''
this
.
currPage
=
1
this
.
errorMsg
=
'正在查询……'
this
.
errorMsg
=
'正在查询……'
const
params
=
{
const
params
=
{
countryCode
:
this
.
countryCode
,
countryCode
:
this
.
countryCode
,
...
@@ -1021,6 +1019,7 @@ export default {
...
@@ -1021,6 +1019,7 @@ export default {
},
},
licenseeDialogShow
(
licenseeInfo
)
{
licenseeDialogShow
(
licenseeInfo
)
{
console
.
log
(
'企业基本信息'
,
licenseeInfo
)
console
.
log
(
'企业基本信息'
,
licenseeInfo
)
this
.
licenseeDetail
=
licenseeInfo
this
.
licenseeDetailDialog
=
true
this
.
licenseeDetailDialog
=
true
},
},
async
handleSearch
()
{
async
handleSearch
()
{
...
...
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