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
6dfa4632
Commit
6dfa4632
authored
Dec 06, 2021
by
tang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: GLN
parent
51588904
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
12 deletions
+31
-12
gln.vue
src/views/Search/gln.vue
+13
-6
internal.vue
src/views/Search/internal.vue
+18
-6
No files found.
src/views/Search/gln.vue
View file @
6dfa4632
...
...
@@ -38,12 +38,19 @@
<div
class=
"result-box-title"
>
查询
{{
searchCodeShow
}}
结果
</div>
<div
class=
"result-box-body"
>
<template
v-if=
"result"
>
<div
class=
"title"
>
商品信息
</div>
<div
class=
"product-info"
></div>
<div
class=
"title"
>
企业信息
</div>
<div
class=
"company-info"
></div>
<el-table
:data=
"result"
header-cell-class-name=
"search-table-hc"
style=
"width: 100%"
>
<el-table-column
prop=
"gepirRequestedKey.requestedKeyValue"
label=
"GLN"
width=
"180"
>
</el-table-column>
<el-table-column
prop=
"address.name"
label=
"企业名称(含英文)"
width=
"180"
>
</el-table-column>
<el-table-column
prop=
"address.streetAddressOne"
label=
"中文地址"
></el-table-column>
<el-table-column
prop=
"status"
label=
"英文地址"
>
</el-table-column>
</el-table>
</
template
>
<span
v-else
>
{{ errorMsg }}
</span>
<span
style=
"color: rgb(255, 59, 48)"
v-else
>
{{ errorMsg }}
</span>
</div>
</div>
</div>
...
...
@@ -114,7 +121,7 @@ export default {
const
searchGlnRes
=
await
this
.
$api
.
search
.
searchGln
(
params
);
const
{
returnCode
,
data
}
=
searchGlnRes
;
if
(
returnCode
===
"0"
)
{
this
.
result
=
data
;
this
.
result
=
[
data
]
;
}
else
{
this
.
errorMsg
=
searchGlnRes
.
returnMsg
||
...
...
src/views/Search/internal.vue
View file @
6dfa4632
...
...
@@ -43,7 +43,7 @@
type=
"primary"
class=
"w240"
icon=
"gs-guard-icon"
@
click=
"hand
el
Verification"
@
click=
"hand
le
Verification"
v-if=
"!isVerificationPass"
>
点击此处进行验证
...
...
@@ -183,11 +183,12 @@
</template>
<
script
>
import
{
getUUID
}
from
"@/utils/utils"
;
import
Vcode
from
"vue-puzzle-vcode"
;
const
CODE
=
0
;
const
NAME
=
1
;
const
ADDRESS
=
2
;
const
CODE
=
'1'
;
const
NAME
=
'2'
;
const
ADDRESS
=
'3'
;
export
default
{
data
()
{
...
...
@@ -217,7 +218,7 @@ export default {
},
methods
:
{
// 点击此处进行验证
hand
el
Verification
()
{
hand
le
Verification
()
{
console
.
log
(
"点击此处进行验证"
);
this
.
isShowVcode
=
true
;
},
...
...
@@ -239,7 +240,7 @@ export default {
handleDetail
(
row
)
{
console
.
log
(
row
);
},
handleSearchCompany
()
{
async
handleSearchCompany
()
{
this
.
showResult
=
true
;
if
(
this
.
company
===
CODE
)
{
this
.
searchCodeShow
=
this
.
companySearch
.
code
;
...
...
@@ -260,6 +261,17 @@ export default {
}
else
{
this
.
searchCodeShow
=
this
.
companySearch
.
address
;
}
const
params
=
{
type
:
this
.
company
,
uuid
:
getUUID
()
};
const
searchGlnRes
=
await
this
.
$api
.
search
.
searchGln
(
params
);
const
{
returnCode
,
data
}
=
searchGlnRes
;
if
(
returnCode
===
"0"
)
{
this
.
result
=
[
data
];
}
else
{
this
.
errorMsg
=
searchGlnRes
.
returnMsg
||
"您输入的商品条码格式不正确,请确认后重试。"
;
this
.
result
=
null
;
}
},
handleSearchProduct
()
{
...
...
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