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
981c26e9
Commit
981c26e9
authored
Sep 29, 2022
by
huyf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提单
parent
213600ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
indexSeaAir.vue
src/views/ecw/box/indexSeaAir.vue
+17
-2
No files found.
src/views/ecw/box/indexSeaAir.vue
View file @
981c26e9
...
...
@@ -224,6 +224,7 @@
<el-dropdown-item
command=
"error"
>
异常登记
</el-dropdown-item>
<el-dropdown-item
command=
"cost"
>
费用登记
</el-dropdown-item>
<el-dropdown-item
command=
"delete"
>
删除
</el-dropdown-item>
<el-dropdown-item
command=
"editLadingBill"
>
编辑提货单
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
<el-dropdown
trigger=
"click"
>
...
...
@@ -289,6 +290,9 @@
:shipmentObj=
"currRow"
/>
</
template
>
<
template
v-if=
"dialogCfg.dialogType === 'editLadingBill'"
>
<ladingBill
v-if=
"dialogCfg.open"
@
closeDialog=
"closeDialog"
:shipmentObj=
"currRow"
:getCabinetName=
"getCabinetName"
/>
</
template
>
</el-dialog>
</div>
</template>
...
...
@@ -306,13 +310,15 @@ import { getWarehouseList } from '@/api/ecw/warehouse'
import
costForm
from
'
./costForm.vue
'
import
regError
from
'
./regError.vue
'
import
editForm
from
'
./editSeaAirForm.vue
'
import
ladingBill
from
"
./ladingBill/index.vue
"
;
export
default
{
name
:
'
box
'
,
components
:
{
costForm
,
regError
,
editForm
editForm
,
ladingBill
,
},
data
()
{
return
{
...
...
@@ -487,7 +493,7 @@ export default {
this
.
getList
();
}
},
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
id
=
row
.
id
...
...
@@ -538,6 +544,15 @@ export default {
this
.
handleDelete
(
row
)
break
case
"
editLadingBill
"
:
const
cabinetLabel
=
this
.
getCabinetName
(
row
.
cabinetId
);
const
title
=
`查看提单
${
row
.
selfNo
??
""
}
柜号:
$
{
row
.
cubNo
??
""
}
柜型:
$
{
cabinetLabel
}
`;
this.$set(this.dialogCfg, "title", title);
this.$set(this.dialogCfg, "fullscreen", true);
break;
case 'cost':
this.$set(this.dialogCfg, 'title', '费用登记')
break
...
...
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