初始化
parent
846fbab004
commit
044d55078d
|
@ -10,9 +10,9 @@ export function listDatawarehouse(query) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// 查询订单详情详细
|
// 查询订单详情详细
|
||||||
export function getDatawarehouse(orderId) {
|
export function getDatawarehouse() {
|
||||||
return request({
|
return request({
|
||||||
url: '/market/datawarehouse/' + orderId,
|
url: '/market/datawarehouse/query',
|
||||||
method: 'get'
|
method: 'get'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -136,11 +136,9 @@ export default {
|
||||||
/** 查询订单详情列表 */
|
/** 查询订单详情列表 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
listDatawarehouse(this.queryParams).then(response => {
|
getDatawarehouse().then(response=>{
|
||||||
this.datawarehouseList = response.data.rows;
|
this.datawarehouseList = response.data;
|
||||||
this.total = response.data.total;
|
})
|
||||||
this.loading = false;
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
// 取消按钮
|
// 取消按钮
|
||||||
cancel() {
|
cancel() {
|
||||||
|
|
Loading…
Reference in New Issue