Skip to content

Commit

Permalink
订单管理清除搜索值及商品总价展示修复
Browse files Browse the repository at this point in the history
  • Loading branch information
Eratosici authored and Eratosici committed Sep 28, 2021
1 parent ced81aa commit b6d9586
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion mall4v/src/views/modules/order/order.vue
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,8 @@ export default {
},
// 清除数据
clearDatas () {
this.dataForm = []
this.dataForm = {}
this.dateRange = []
},
// 每页数
sizeChangeHandle (val) {
Expand Down
2 changes: 1 addition & 1 deletion mall4v/src/views/modules/order/orderInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
</el-table-column>
<el-table-column prop="totalPrice" label="总价" width="180" align="center">
<template slot-scope="scope">
<span>{{scope.row.productTotalAmout}}</span>
<span>{{scope.row.productTotalAmount}}</span>
</template>
</el-table-column>
</el-table>
Expand Down

0 comments on commit b6d9586

Please sign in to comment.