| 12345678910111213141516171819 |
- import { request, handle } from '@kasite/uni-app-base';
- import { REQUEST_CONFIG } from '@/config';
- /**
- * 排队候诊列表
- */
- export const getQueueInfo = async (queryData: any) => {
- let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/queue/QueueWs/GetQueueInfo/callApiJSON.do`, queryData));
- return handle.catchPromiseNew(resp, () => resp);
- };
- /**
- * 设置智能提醒
- */
- export const setReMindNo = async (queryData: any) => {
- let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/queue/QueueWs/SetReMindNo/callApiJSON.do`, queryData));
- return handle.catchPromiseNew(resp, () => resp);
- };
|