Commit ab82f738 authored by Smile's avatar Smile Committed by wux

bug230 (web)首页-查询通过查询功能查询不到我收到的订单。请看截图

parent 2834e730
......@@ -140,13 +140,12 @@
/>
<el-table-column
:label="$t('profile.status')"
prop="statusMsg"
align="center"
header-align="center"
>
<!-- <template slot-scope="scope">
<dict-tag :type="DICT_TYPE.ORDER_STATUS" :value="scope.row.status" />
</template> -->
<template slot-scope="scope">
{{ getStatusName(scope.row) }}
</template>
</el-table-column>
<el-table-column
prop="createTime"
......@@ -307,9 +306,7 @@ export default {
this.noticeList = r.data.list
})
this.getList()
getReceived(this.condition).then((r) => {
this.receivedOrderList = r.data.list
})
this.intervalId = setInterval(() => { // 定义定时器
this.getText()
}, this.playTime)
......@@ -347,6 +344,10 @@ export default {
getIssued(this.queryParams).then((r) => {
this.sendOrderList = r.data.list.slice(0, 3)
})
const uniqueMergedParams = Object.assign({}, this.queryParams, this.condition);
getReceived(uniqueMergedParams).then((r) => {
this.receivedOrderList = r.data.list
})
},
getUpdateOpenAd: function (data) {
//获取存储的会员等级信息
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment