You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
import { Injectable } from '@angular/core';
|
|
import {CommonsService} from '../commons.service';
|
|
import {environment} from '../../../environments/environment';
|
|
import {HttpClient} from '@angular/common/http';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class OrderApiMerService {
|
|
|
|
constructor(
|
|
private http: HttpClient,
|
|
private common: CommonsService
|
|
) { }
|
|
|
|
/**
|
|
* @Author Sum1Dream
|
|
* @methodName getOrderKfcList
|
|
* @Description // 查询肯德基订单
|
|
* @Date 17:20 2022/10/27
|
|
* @Param param
|
|
*/
|
|
public getOrderList(param: object, callBack) {
|
|
this.http.get(environment.orderUrl + 'apiMerOrder/getOrderList?' + this.common.getWhereCondition(param)).subscribe(data => {
|
|
callBack(data);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @Author Sum1Dream
|
|
* @methodName getOrderDetail
|
|
* @Description // 根据订单号查询订单详情
|
|
* @Date 14:38 2022/10/28
|
|
* @Param orderNo: string, callBack
|
|
*/
|
|
public getOrderDetail(orderNo: string, callBack) {
|
|
this.http.get(environment.orderUrl + 'apiMerOrder/getOrderDetail?orderNo=' + orderNo).subscribe(data => {
|
|
callBack(data);
|
|
});
|
|
}
|
|
|
|
|
|
}
|
|
|