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
f314092c
Commit
f314092c
authored
Nov 22, 2023
by
zhoutong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复一些bug
parent
5d130e09
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
6 deletions
+32
-6
cancelClear.vue
src/views/ecw/box/cancelClear.vue
+12
-1
queryAir.vue
src/views/ecw/box/queryAir.vue
+6
-3
cusClearance.vue
src/views/ecw/box/shippingAir/nodePage/cusClearance.vue
+2
-2
seaProcess.vue
src/views/ecw/box/shippingAir/seaProcess.vue
+12
-0
No files found.
src/views/ecw/box/cancelClear.vue
View file @
f314092c
...
...
@@ -13,13 +13,14 @@
<
el
-
row
class
=
"
operate-button
"
>
<
el
-
button
v
-
if
=
"
flag
"
type
=
"
primary
"
@
click
=
"
onSubmit
"
>
{{
$t
(
'
确定
'
)
}}
<
/el-button
>
<
el
-
button
v
-
if
=
"
!flag
"
type
=
"
primary
"
@
click
=
"
$router.push({path: '/bpm/process-instance/detail', query: {id: apply.bpmProcessId
}}
)
"
>
{{
$t
(
'
审核中
'
)
}}
<
/el-button
>
<
el
-
button
v
-
if
=
"
!flag
"
plain
type
=
"
primary
"
@
click
=
"
canclAudit
"
>
{{
$t
(
'
取消审核
'
)
}}
<
/el-button
>
<
el
-
button
@
click
=
"
cancel
"
>
{{
$t
(
'
取消
'
)
}}
<
/el-button
>
<
/el-row
>
<
/div
>
<
/template
>
<
script
>
import
{
approvalCreate
}
from
"
@/api/ecw/boxSea
"
;
import
{
approvalCreate
,
approvalCancel
}
from
"
@/api/ecw/boxSea
"
;
export
default
{
name
:
"
updateError
"
,
...
...
@@ -68,6 +69,16 @@ export default {
}
}
);
}
,
/* 取消审核 */
canclAudit
()
{
approvalCancel
({
applyReason
:
this
.
$t
(
"
取消审核
"
),
id
:
this
.
apply
.
id
,
shipmentId
:
this
.
shipmentObj
.
id
,
}
).
then
((
res
)
=>
{
this
.
$emit
(
"
closeDialog
"
);
}
);
}
,
cancel
()
{
this
.
$emit
(
"
closeDialog
"
);
}
,
...
...
src/views/ecw/box/queryAir.vue
View file @
f314092c
...
...
@@ -118,7 +118,7 @@
<div
class=
"status-line"
></div>
<div
class=
"status-number"
>
{{logList.length - index}}
</div>
<div
class=
"status-info"
>
<div>
{{$l(item, 'title')}}
</div>
<div>
{{$l(item, 'title')}}
<el-button
v-if=
"item.approvalId>0"
type=
"text"
@
click=
"handleApproval(item.bpmProcessId)"
>
{{$t('查看审批')}}
</el-button>
</div>
<div>
<p>
{{formatDate(item.createTime)}}
</p>
<p>
{{item.operator}}
</p>
...
...
@@ -161,12 +161,12 @@
<el-table-column
type=
"index"
align=
"center"
:label=
"$t('序号')"
width=
"50"
/>
<el-table-column
prop=
"opStep"
:label=
"$t('操作')"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:type=
"DICT_TYPE.BOX_
SHIPPING
_PROCESS"
:value=
"scope.row.opStep"
/>
<dict-tag
:type=
"DICT_TYPE.BOX_
AIR_SHIPMENT
_PROCESS"
:value=
"scope.row.opStep"
/>
</
template
>
</el-table-column>
<el-table-column
prop=
"billAbnId"
:label=
"$t('异常')"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:type=
"DICT_TYPE.BOX_
SHIPPING_TICKET_EXCEPTION
"
:value=
"scope.row.billAbnId"
/>
<dict-tag
:type=
"DICT_TYPE.BOX_
AIR_SHIPMENT_PROCESS
"
:value=
"scope.row.billAbnId"
/>
</
template
>
</el-table-column>
<el-table-column
prop=
"abnDetail"
:label=
"$t('异常描述')"
align=
"center"
width=
"300"
></el-table-column>
...
...
@@ -656,6 +656,9 @@ export default {
);
}
},
handleApproval(id) {
this.$router.push({path: '/bpm/process-instance/detail', query: {id: id}})
}
},
computed: {
visitedViews() {
...
...
src/views/ecw/box/shippingAir/nodePage/cusClearance.vue
View file @
f314092c
...
...
@@ -15,7 +15,7 @@
<span
v-for=
"order in cusClearanceObj.clearanceOrderList"
:key=
"order.id"
>
{{
order
.
orderNo
}}
</span>
</el-form-item>
<div>
<div
v-if=
"cusClearanceObj.clearanceType == 1"
>
<el-form
ref=
"airArrivalForm"
:rules=
"airArrivalrules"
:model=
"airArrivalInfo"
label-width=
"160px"
>
<el-form-item
:label=
"$t('实际二程起飞时间')"
prop=
"actSecondTime"
>
<el-date-picker
type=
"datetime"
:placeholder=
"$t('请选择日期')"
v-model=
"airArrivalInfo.actSecondTime"
value-format=
"yyyy-MM-dd HH:mm:ss"
></el-date-picker>
...
...
@@ -336,7 +336,7 @@ export default {
onSubmit
(
operateType
)
{
this
.
$refs
[
'
cusClearanceForm
'
].
validate
((
valid
)
=>
{
if
(
valid
)
{
if
(
this
.
cusClearanceObj
.
clearanceType
==
1
&&
this
.
cusClearanceObj
.
clearanceOrderIdList
.
length
>
0
)
{
if
(
this
.
cusClearanceObj
.
clearanceType
==
1
)
{
this
.
$refs
[
'
airArrivalForm
'
].
validate
((
arrvalid
)
=>
{
if
(
arrvalid
)
{
updateOrderArrival
({
...
...
src/views/ecw/box/shippingAir/seaProcess.vue
View file @
f314092c
...
...
@@ -186,6 +186,10 @@ export default {
break
;
// 清关
case
"
cusClearance
"
:
if
(
!
this
.
shipmentObj
.
airArrivalInfo
||
this
.
shipmentObj
.
airArrivalInfo
.
arriveType
==
0
){
this
.
$message
.
error
(
this
.
$t
(
"
请先完成到港操作
"
));
return
;
}
this
.
$set
(
this
.
dialogConfig
,
"
width
"
,
"
700px
"
);
break
;
// AGENT
...
...
@@ -220,6 +224,10 @@ export default {
break
;
// 卸柜
case
"
unloading
"
:
if
(
!
this
.
shipmentObj
.
clearanceInfo
||
this
.
shipmentObj
.
clearanceInfo
.
clearanceType
==
0
){
this
.
$message
.
error
(
this
.
$t
(
"
请先完成清关操作
"
));
return
;
}
// 卸柜反审
const
unStatus
=
this
.
shipmentObj
[
node
.
keyName
];
if
([
186
].
includes
(
unStatus
))
{
...
...
@@ -269,6 +277,10 @@ export default {
if
(
start
.
includes
(
val
[
keyName
])
&&
val
[
voName
])
{
node
.
currStatus
=
"
wait
"
;
if
(
type
===
"
arrival
"
||
type
===
"
cusClearance
"
){
++
nodeIndex
;
continue
;
}
}
if
(
wait
.
includes
(
val
[
keyName
]))
{
...
...
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