| 123456789101112131415161718192021222324 |
- import { request, handle } from '@kasite/uni-app-base';
- import { REQUEST_CONFIG } from '@/config';
- /**
- * 药品查询
- */
- export const queryDrugList = async (queryData: any) => {
- let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/basic/ExpenseStandard/QueryDrugList/callApiJSON.do`, queryData));
- return handle.catchPromiseNew(resp, () => resp);
- };
- /**
- * 收费项查询
- */
- export const queryExpensesItemList = async (queryData: any) => {
- let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/basic/ExpenseStandard/QueryExpensesItemList/callApiJSON.do`, queryData));
- return handle.catchPromiseNew(resp, () => resp);
- };
- export default {
- queryDrugList,
- queryExpensesItemList,
- };
|