Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
3d72f0af
Commit
3d72f0af
authored
Oct 26, 2023
by
邓春圆
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
a9ed2ee3
455fc9f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
preinstall.vue
src/views/ecw/box/shippingAir/nodePage/preinstall.vue
+11
-3
No files found.
src/views/ecw/box/shippingAir/nodePage/preinstall.vue
View file @
3d72f0af
...
...
@@ -54,7 +54,7 @@
<el-form-item
:label=
"$t('特性')"
prop=
"attrId"
>
<el-select
v-model=
"queryParams.attrId"
:placeholder=
"$t('特性')"
>
<el-option
v-for=
"item in attrIdList"
:label=
"item
"
:value=
"item*1"
:key=
"item
"
></el-option>
<el-option
v-for=
"item in attrIdList"
:label=
"item
.label"
:value=
"item.value*1"
:key=
"item.value
"
></el-option>
</el-select>
</el-form-item>
...
...
@@ -288,7 +288,7 @@
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('箱数')
"
align
=
"
center
"
prop
=
"
warehouseInInfoVO.cartonsNum
"
>
<
template
slot
-
scope
=
"
scope
"
>
<
span
style
=
"
color: b
ule
"
v
-
if
=
"
scope.row.mixStatus == 1
"
>
{{
scope
.
row
.
warehouseInInfoVO
.
cartonsNum
}}
{{
$t
(
'
(混箱)
'
)
}}
<
/span
>
<
span
style
=
"
color: b
lue;
"
v
-
if
=
"
scope.row.mixStatus == 1
"
>
{{
scope
.
row
.
warehouseInInfoVO
.
cartonsNum
}}
{{
$t
(
'
(混箱)
'
)
}}
<
/span
>
<
template
v
-
else
>
{{
scope
.
row
.
warehouseInInfoVO
.
cartonsNum
}}
<
/template
>
...
...
@@ -514,7 +514,15 @@ export default {
if
(
this
.
queryParams
.
shippingChannelId
){
let
attrs
=
this
.
channelList
.
find
(
item
=>
this
.
queryParams
.
shippingChannelId
==
item
.
channelId
)
if
(
attrs
){
data
=
attrs
.
attrId
.
split
(
'
,
'
)
let
attrId
=
attrs
.
attrId
.
split
(
'
,
'
)
attrId
.
forEach
((
item
,
index
)
=>
{
data
.
push
(
{
value
:
item
,
label
:
attrs
.
attrNameList
[
index
]
}
)
}
)
}
}
return
data
...
...
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