11 lines
232 B
JavaScript
11 lines
232 B
JavaScript
import {post} from './http'
|
|
|
|
/**
|
|
* 查询订单的处方状态
|
|
* @param params
|
|
* @returns {Promise<*>}
|
|
*/
|
|
export async function getPrescriptionStatusApi(params) {
|
|
return await post('/order/prescription-status', params, 3)
|
|
}
|