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
facb281b
Commit
facb281b
authored
Jan 14, 2024
by
zhoutong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
后台或pda上传的出仓影像,无法分批上传
parent
539a38d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
1 deletion
+22
-1
checkout.vue
src/views/ecw/box/shippingAir/nodePage/checkout.vue
+22
-1
No files found.
src/views/ecw/box/shippingAir/nodePage/checkout.vue
View file @
facb281b
...
@@ -69,7 +69,7 @@
...
@@ -69,7 +69,7 @@
</el-form-item>
</el-form-item>
<el-form-item
:label=
"$t('出仓影像')"
>
<el-form-item
:label=
"$t('出仓影像')"
>
<ImageUpload
:limit=
"1"
:isShowTip=
false
v-model=
"airCheckoutObj.checkoutFiles"
/>
<ImageUpload
:limit=
"1"
:isShowTip=
false
v-model=
"airCheckoutObj.checkoutFiles"
@
input=
"saveImage"
/>
</el-form-item>
</el-form-item>
<el-form-item
:label=
"$t('备注')"
>
<el-form-item
:label=
"$t('备注')"
>
...
@@ -176,6 +176,27 @@ export default {
...
@@ -176,6 +176,27 @@ export default {
closeDialog1
()
{
closeDialog1
()
{
this
.
dialogVisible
=
false
;
this
.
dialogVisible
=
false
;
},
},
//自动保存图片
saveImage
()
{
const
{
ldPictures
}
=
this
.
airCheckoutObj
;
let
pictures
=
ldPictures
?.
split
(
"
,
"
)
??
[];
let
newPictures
=
[];
for
(
const
item
of
pictures
)
{
if
(
item
)
{
newPictures
.
push
({
type
:
"
image
"
,
url
:
item
,
});
}
}
airCheckoutCreate
({
...
this
.
airCheckoutObj
,
shipmentId
:
this
.
$attrs
.
shipmentObj
.
id
,
operateType
:
1
,
}).
then
(()
=>
{
this
.
$emit
(
"
getBoxInfo
"
);
})
}
},
},
};
};
</
script
>
</
script
>
...
...
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