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
2a6575e0
Commit
2a6575e0
authored
Sep 21, 2022
by
dcy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
去掉批量调仓
parent
eae3e96f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
5 deletions
+24
-5
batchSingleApplication.vue
src/views/ecw/order/batchSingleApplication.vue
+22
-3
index.vue
src/views/ecw/order/index.vue
+2
-2
No files found.
src/views/ecw/order/batchSingleApplication.vue
View file @
2a6575e0
...
...
@@ -40,7 +40,8 @@
</
template
>
</el-table-column>
<el-table-column
label=
"出货渠道"
>
<
template
v-slot=
"{row}"
>
{{
row
.
channelName
||
'
/
'
}}
</
template
>
</el-table-column>
<!-- <el-table-column label="始发仓" prop="startWarehouseName"></el-table-column>-->
<el-table-column
label=
"目的地"
prop=
"objectiveName"
></el-table-column>
...
...
@@ -122,6 +123,8 @@ import warehouseDetails from "@/views/ecw/order/components/warehouseDetails";
import
{
getOrderPage
}
from
"
@/api/ecw/order
"
;
import
workFlow
from
"
@/components/WorkFlow
"
;
import
Template
from
"
@/views/cms/template
"
;
import
{
arrryToKeyedObjectBy
}
from
"
@/utils
"
;
import
{
getChannelList
}
from
"
@/api/ecw/channel
"
;
export
default
{
name
:
"
batchSingleApplication
"
,
...
...
@@ -137,6 +140,9 @@ export default {
warehouseDetails
,
workFlow
},
created
()
{
getChannelList
().
then
(
res
=>
this
.
channelList
=
res
.
data
)
},
watch
:
{
dialogVisible
(
val
)
{
if
(
val
)
{
...
...
@@ -154,6 +160,17 @@ export default {
computed
:
{
adjustmentBol
()
{
return
this
.
applyStatus
?.
orderWarehouseAdjustBackVO
?.
status
===
1
},
getShipChannelName
()
{
return
shippingChannelId
=>
{
for
(
let
index
in
this
.
channelList
)
{
let
channelItem
=
this
.
channelList
[
index
];
if
(
channelItem
.
channelId
==
shippingChannelId
)
{
return
channelItem
.
nameZh
;
}
}
return
'
/
'
}
}
},
data
()
{
...
...
@@ -170,7 +187,8 @@ export default {
warehouseOutId
:
undefined
,
copyUserId
:
[],
},
applyStatus
:{}
//调仓-查看状态
applyStatus
:{},
//调仓-查看状态,
channelList
:[]
}
},
...
...
@@ -217,7 +235,8 @@ export default {
message
:
'
取消成功
'
});
});
}
},
}
}
</
script
>
...
...
src/views/ecw/order/index.vue
View file @
2a6575e0
...
...
@@ -100,8 +100,8 @@
v-hasPermi=
"['ecw:order:create']"
>
{{
$t
(
'
新增
'
)
}}
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"primary"
plain
icon=
"el-icon-setting"
size=
"mini"
@
click=
"handleEdit"
:disabled=
"!batchWarehouseAdjustment"
>
{{
$t
(
'
批量调仓
'
)
}}
</el-button
>
<!--
<el-button
type=
"primary"
plain
icon=
"el-icon-setting"
size=
"mini"
@
click=
"handleEdit"
:disabled=
"!batchWarehouseAdjustment"
>
{{
$t
(
'
批量调仓
'
)
}}
-->
<!--
</el-button>
--
>
<el-button
type=
"primary"
plain
icon=
"el-icon-setting"
size=
"mini"
@
click=
"showBatchPickup=true"
>
{{
$t
(
'
批量提货
'
)
}}
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
...
...
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