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
3ac53420
Commit
3ac53420
authored
Jan 03, 2024
by
邓春圆
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
7036f6ad
40c46114
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
677 additions
and
1 deletion
+677
-1
boxAir.js
src/api/ecw/boxAir.js
+15
-0
checkout.vue
src/views/ecw/box/shippingAir/nodePage/checkout.vue
+16
-1
startCheckout.vue
...s/ecw/box/shippingAir/nodePage/checkout/startCheckout.vue
+646
-0
No files found.
src/api/ecw/boxAir.js
View file @
3ac53420
...
@@ -492,4 +492,19 @@ export function searchLoadOrderByBoxNo(data) {
...
@@ -492,4 +492,19 @@ export function searchLoadOrderByBoxNo(data) {
method
:
"
post
"
,
method
:
"
post
"
,
data
:
data
data
:
data
});
});
}
/**
* 确认出仓
*
* @export
* @param {*} data
* @return {*}
*/
export
function
confirmAirCheckout
(
params
)
{
return
request
({
url
:
`/ecw/box-air-checkout/confirmAirCheckout`
,
method
:
"
get
"
,
params
});
}
}
\ No newline at end of file
src/views/ecw/box/shippingAir/nodePage/checkout.vue
View file @
3ac53420
...
@@ -71,16 +71,23 @@
...
@@ -71,16 +71,23 @@
</el-form>
</el-form>
<!-- 开始出仓 -->
<el-dialog
:title=
"$t('开始出仓')"
:visible.sync=
"dialogVisible"
fullscreen
:modal-append-to-body=
false
append-to-body
>
<startCheckout
v-bind=
"$attrs"
v-if=
"dialogVisible"
v-on=
"$listeners"
@
closeDialog1=
"closeDialog1"
/>
</el-dialog>
<el-row
class=
"operate-button"
>
<el-row
class=
"operate-button"
>
<el-button
type=
"primary"
@
click=
"onSubmit(1)"
>
{{
$t
(
'
保存
'
)
}}
</el-button>
<el-button
type=
"primary"
@
click=
"onSubmit(1)"
>
{{
$t
(
'
保存
'
)
}}
</el-button>
<el-button
:disabled=
"$attrs.shipmentObj.approvaling"
type=
"success"
@
click=
"onSubmit(2)"
>
{{
$t
(
'
提交
'
)
}}
</el-button>
<el-button
:disabled=
"$attrs.shipmentObj.approvaling"
type=
"success"
@
click=
"onSubmit(2)"
>
{{
$t
(
'
提交
'
)
}}
</el-button>
<el-button
@
click=
"cancel"
>
{{
$t
(
'
关闭
'
)
}}
</el-button>
<el-button
@
click=
"cancel"
>
{{
$t
(
'
关闭
'
)
}}
</el-button>
<el-button
@
click=
"startCheckout"
>
{{
$t
(
'
确认出仓
'
)
}}
</el-button>
</el-row>
</el-row>
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
import
{
airCheckoutCreate
}
from
"
@/api/ecw/boxSea
"
;
import
{
airCheckoutCreate
}
from
"
@/api/ecw/boxSea
"
;
import
startCheckout
from
"
./checkout/startCheckout.vue
"
;
import
userSelect
from
"
./common/userSelect.vue
"
;
import
userSelect
from
"
./common/userSelect.vue
"
;
import
ImageUpload
from
"
@/components/ImageUpload
"
;
import
ImageUpload
from
"
@/components/ImageUpload
"
;
import
{
constantDict
,
formatDateStr
,
formatNumberString
,
serviceMsg
}
from
"
../utils
"
;
import
{
constantDict
,
formatDateStr
,
formatNumberString
,
serviceMsg
}
from
"
../utils
"
;
...
@@ -91,7 +98,7 @@ import { constantDict, formatDateStr, formatNumberString, serviceMsg } from "../
...
@@ -91,7 +98,7 @@ import { constantDict, formatDateStr, formatNumberString, serviceMsg } from "../
export
default
{
export
default
{
name
:
"
checkout
"
,
name
:
"
checkout
"
,
inheritAttrs
:
false
,
inheritAttrs
:
false
,
components
:
{
userSelect
,
ImageUpload
},
components
:
{
userSelect
,
ImageUpload
,
startCheckout
},
data
()
{
data
()
{
return
{
return
{
// 空运出仓对象
// 空运出仓对象
...
@@ -106,6 +113,7 @@ export default {
...
@@ -106,6 +113,7 @@ export default {
//deliverType: [{ required: true, message: this.$t("必填"), trigger: "change" }],
//deliverType: [{ required: true, message: this.$t("必填"), trigger: "change" }],
checkoutTime
:
[{
required
:
true
,
message
:
this
.
$t
(
"
必填
"
),
trigger
:
"
change
"
}]
checkoutTime
:
[{
required
:
true
,
message
:
this
.
$t
(
"
必填
"
),
trigger
:
"
change
"
}]
},
},
dialogVisible
:
false
};
};
},
},
created
()
{
created
()
{
...
@@ -140,6 +148,13 @@ export default {
...
@@ -140,6 +148,13 @@ export default {
cancel
(
type
)
{
cancel
(
type
)
{
this
.
$emit
(
"
closeDialog
"
,
type
);
this
.
$emit
(
"
closeDialog
"
,
type
);
},
},
/** 开始出仓 */
startCheckout
()
{
this
.
dialogVisible
=
true
;
},
closeDialog1
()
{
this
.
dialogVisible
=
false
;
},
},
},
};
};
</
script
>
</
script
>
...
...
src/views/ecw/box/shippingAir/nodePage/checkout/startCheckout.vue
0 → 100644
View file @
3ac53420
This diff is collapsed.
Click to expand it.
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