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

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

parent 2834e730
...@@ -140,13 +140,12 @@ ...@@ -140,13 +140,12 @@
/> />
<el-table-column <el-table-column
:label="$t('profile.status')" :label="$t('profile.status')"
prop="statusMsg"
align="center" align="center"
header-align="center" header-align="center"
> >
<!-- <template slot-scope="scope"> <template slot-scope="scope">
<dict-tag :type="DICT_TYPE.ORDER_STATUS" :value="scope.row.status" /> {{ getStatusName(scope.row) }}
</template> --> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="createTime" prop="createTime"
...@@ -307,9 +306,7 @@ export default { ...@@ -307,9 +306,7 @@ export default {
this.noticeList = r.data.list this.noticeList = r.data.list
}) })
this.getList() this.getList()
getReceived(this.condition).then((r) => {
this.receivedOrderList = r.data.list
})
this.intervalId = setInterval(() => { // 定义定时器 this.intervalId = setInterval(() => { // 定义定时器
this.getText() this.getText()
}, this.playTime) }, this.playTime)
...@@ -347,6 +344,10 @@ export default { ...@@ -347,6 +344,10 @@ export default {
getIssued(this.queryParams).then((r) => { getIssued(this.queryParams).then((r) => {
this.sendOrderList = r.data.list.slice(0, 3) 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) { 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