初始化

master
法外狂徒张三 2024-09-03 16:08:29 +08:00
parent 846fbab004
commit 044d55078d
2 changed files with 5 additions and 7 deletions

View File

@ -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'
})
}

View File

@ -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() {