|
@@ -2,10 +2,11 @@
|
|
|
import { getUserId } from '@/services/bus/account';
|
|
import { getUserId } from '@/services/bus/account';
|
|
|
import { commonSearch_go } from "@/services/go";
|
|
import { commonSearch_go } from "@/services/go";
|
|
|
import {
|
|
import {
|
|
|
|
|
+ ErmcpTradeConfigTMP,
|
|
|
QryBusinessDjRsp,
|
|
QryBusinessDjRsp,
|
|
|
QryBussinessJsRsp,
|
|
QryBussinessJsRsp,
|
|
|
QueryBusinessDjReq,
|
|
QueryBusinessDjReq,
|
|
|
- QueryBusinessJsReq
|
|
|
|
|
|
|
+ QueryBusinessJsReq, QueryTradeConfigTMPReq
|
|
|
} from "@/services/go/ermcp/business-review/interface";
|
|
} from "@/services/go/ermcp/business-review/interface";
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -38,3 +39,12 @@ export function QueryBusinessDj(req: QueryBusinessDjReq): Promise<QryBusinessDjR
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+/**
|
|
|
|
|
+ * 查询交易模板配置 /Ermcp/QueryTradeConfigTMP
|
|
|
|
|
+ */
|
|
|
|
|
+export function QueryTradeConfigTMP(req: QueryTradeConfigTMPReq): Promise<ErmcpTradeConfigTMP> {
|
|
|
|
|
+ return commonSearch_go('/Ermcp/QueryTradeConfigTMP', req).catch((err) => {
|
|
|
|
|
+ throw new Error(`查询交易模板配置: ${err.message}`);
|
|
|
|
|
+ });
|
|
|
|
|
+}
|
|
|
|
|
+
|