| 12345678910 |
- import { REQUEST_CONFIG } from '@/config';
- import { request, handle } from '@kasite/uni-app-base';
- /**
- * 查询文章列表
- */
- export const queryArticleList = async (queryData: any, options?: any) => {
- let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/basic/BasicApi/QueryArticleList/callApiJSON.do`, queryData, options));
- return handle.catchPromiseNew(resp, () => resp, options);
- };
|