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