|
|
@@ -2,9 +2,8 @@
|
|
|
|
|
|
import {BaseResponse, commonSearch_go, commonUpdate_go} from '@/goServiceAPI/index';
|
|
|
import APP from '@/services';
|
|
|
-import * as type from './interface';
|
|
|
import { QueryCustomInfoEnum } from './type';
|
|
|
-import {AddUserInfoApplyReq, ModifyUserInfoApplyReq} from "./interface";
|
|
|
+import {AddUserInfoApplyReq, ModifyUserInfoApplyReq, QueryCustomInfoType} from "./interface";
|
|
|
|
|
|
/**
|
|
|
* 查询客户资料
|
|
|
@@ -12,7 +11,7 @@ import {AddUserInfoApplyReq, ModifyUserInfoApplyReq} from "./interface";
|
|
|
* @param queryType 查询类型(1:未提交 2:待审核 3:正常 4:停用)
|
|
|
* @returns
|
|
|
*/
|
|
|
-export function QueryCustomInfo(queryType: QueryCustomInfoEnum): Promise<type.QueryCustomInfoType[]> {
|
|
|
+export function QueryCustomInfo(queryType: QueryCustomInfoEnum): Promise<QueryCustomInfoType[]> {
|
|
|
const MemberUserID = APP.get('userAccount').memberuserid;
|
|
|
return commonSearch_go('/Ermcp/QueryUserInfo', { MemberUserID, queryType })
|
|
|
.catch(err => {
|