|
@@ -45,7 +45,7 @@ export type SysListModel = {
|
|
|
//生效日
|
|
|
effectDate?:string;
|
|
|
//到期日
|
|
|
- expiryDate?:string;
|
|
|
+ expiryDate?:string;
|
|
|
//表内外标识代码
|
|
|
onbalshOffbalshFlag?:string;
|
|
|
//表内外标识
|
|
@@ -89,8 +89,9 @@ export async function getDataList(body:SysListModel) {
|
|
|
|
|
|
|
|
|
/** 查询当前行详细数据 POST*/
|
|
|
-export async function selectDetailData(body: any) {
|
|
|
- return baseFun.request<SysListModel>('/api/product/rwa/interfacedatasheet/BondInvestmentAction/selectRowData.do',{data: body});
|
|
|
+export async function selectDetailData(subjectNumber:string,search:string,term:string) {
|
|
|
+ return baseFun.request<SysListModel>('/api/product/rwa/interfacedatasheet/BondInvestmentAction/selectRowData.do',
|
|
|
+ {params: {subjectNumber:subjectNumber,search:search,term:term}});
|
|
|
}
|
|
|
|
|
|
|