Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
DC-TOM
Project
Project
Details
Activity
Releases
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
刘照晖
DC-TOM
Commits
621d9565
Commit
621d9565
authored
May 31, 2025
by
liqiuyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(*): 修改布袋更换弹框问题
parent
e03d73a0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
18 deletions
+16
-18
myAgency.vue
src/views/closeManage/myAgency.vue
+8
-9
myDone.vue
src/views/closeManage/myDone.vue
+8
-9
No files found.
src/views/closeManage/myAgency.vue
View file @
621d9565
...
...
@@ -601,9 +601,9 @@
<el-form-item
label=
"第几行:"
>
<el-select
v-model=
"bagRow"
placeholder=
"请选择第几行"
@
change=
"getCol"
>
<el-option
v-for=
"item in rowList"
:key=
"item
.id
"
:label=
"item
.name
"
:value=
"item
.id
"
v-for=
"item in rowList"
:key=
"item"
:label=
"item"
:value=
"item"
>
</el-option>
</el-select>
...
...
@@ -611,9 +611,9 @@
<el-form-item
label=
"第几列:"
>
<el-select
v-model=
"bagCol"
placeholder=
"请选择第几列"
>
<el-option
v-for=
"item in colList"
:key=
"item
.id
"
:label=
"item
.name
"
:value=
"item
.id
"
v-for=
"item in colList"
:key=
"item"
:label=
"item"
:value=
"item"
>
</el-option>
</el-select>
...
...
@@ -736,7 +736,7 @@ const getBagRowLine = (no) => {
const
params
=
{
deviceNo
:
no
}
getDataFun
(
(
url
,
params
).
then
(
res
=>
{
getDataFun
(
url
,
params
).
then
(
res
=>
{
if
(
res
.
code
===
1
)
{
rowLineMap
.
value
=
res
.
data
;
res
.
data
.
forEach
(
item
=>
{
...
...
@@ -744,13 +744,12 @@ const getBagRowLine = (no) => {
});
}
})
)
}
const
getCol
=
()
=>
{
rowLineMap
.
value
.
forEach
(
item
=>
{
if
(
item
.
row
===
bagRow
.
value
)
{
colList
.
value
.
push
(
item
.
columns
)
;
colList
.
value
=
item
.
columns
;
}
});
}
...
...
src/views/closeManage/myDone.vue
View file @
621d9565
...
...
@@ -711,9 +711,9 @@
<el-form-item
label=
"第几行:"
>
<el-select
v-model=
"bagRow"
placeholder=
"请选择第几行"
@
change=
"getCol"
>
<el-option
v-for=
"item in rowList"
:key=
"item
.id
"
:label=
"item
.name
"
:value=
"item
.id
"
v-for=
"item in rowList"
:key=
"item"
:label=
"item"
:value=
"item"
>
</el-option>
</el-select>
...
...
@@ -721,9 +721,9 @@
<el-form-item
label=
"第几列:"
>
<el-select
v-model=
"bagCol"
placeholder=
"请选择第几列"
>
<el-option
v-for=
"item in colList"
:key=
"item
.id
"
:label=
"item
.name
"
:value=
"item
.id
"
v-for=
"item in colList"
:key=
"item"
:label=
"item"
:value=
"item"
>
</el-option>
</el-select>
...
...
@@ -817,7 +817,7 @@ const getBagRowLine = (no) => {
const
params
=
{
deviceNo
:
no
}
getDataFun
(
(
url
,
params
).
then
(
res
=>
{
getDataFun
(
url
,
params
).
then
(
res
=>
{
if
(
res
.
code
===
1
)
{
rowLineMap
.
value
=
res
.
data
;
res
.
data
.
forEach
(
item
=>
{
...
...
@@ -825,13 +825,12 @@ const getBagRowLine = (no) => {
});
}
})
)
}
const
getCol
=
()
=>
{
rowLineMap
.
value
.
forEach
(
item
=>
{
if
(
item
.
row
===
bagRow
.
value
)
{
colList
.
value
.
push
(
item
.
columns
)
;
colList
.
value
=
item
.
columns
;
}
});
}
...
...
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