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
ae171605
Commit
ae171605
authored
Sep 18, 2022
by
Marcus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
后台订单特价申请页面,未入仓时应该隐藏“申请重货优惠”和“申请泡货优惠”按钮
http://zentao.jdshangmen.com/bug-view-319.html
parent
bf78f9f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
index.vue
src/views/ecw/order/special/index.vue
+9
-2
No files found.
src/views/ecw/order/special/index.vue
View file @
ae171605
...
...
@@ -36,6 +36,7 @@
体积:
{{
row
.
warehouseInInfoVO
.
volume
}}
m³
<br>
重量:
{{
row
.
warehouseInInfoVO
.
weight
}}
Kg
</
template
>
<span
v-else
>
展示没有入库信息
</span>
</template>
</el-table-column>
<el-table-column
...
...
@@ -87,8 +88,8 @@
</el-table>
<div
style=
"text-align: center;margin-top: 80px"
>
<el-button
type=
"primary"
@
click=
"toweight"
>
申请重货优惠
</el-button>
<el-button
type=
"primary"
@
click=
"tolight"
>
申请泡货优惠
</el-button>
<el-button
type=
"primary"
@
click=
"toweight"
v-if=
"hasWarehouseInInfo && order.transportId === 1"
>
申请重货优惠
</el-button>
<el-button
type=
"primary"
@
click=
"tolight"
v-if=
"hasWarehouseInInfo && order.transportId === 2"
>
申请泡货优惠
</el-button>
<el-button
type=
"primary"
>
关闭窗口
</el-button>
</div>
</el-card>
...
...
@@ -133,6 +134,7 @@ export default {
unitList
:[],
currencyList
:[],
productAttrList
:[],
hasWarehouseInInfo
:
false
};
},
created
()
{
...
...
@@ -150,6 +152,11 @@ export default {
getOrder
(
this
.
orderId
).
then
(
response
=>
{
this
.
loading
=
false
this
.
order
=
response
.
data
this
.
order
.
orderItemVOList
.
forEach
(
e
=>
{
if
(
e
.
warehouseInInfoVO
){
this
.
hasWarehouseInInfo
=
true
}
})
})
},
toweight
(){
...
...
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