Commit 2aea4838 by lixinming

no message

parent 4ad94462
...@@ -119,7 +119,6 @@ export async function getBranchSystemInfo(userInfo, bsId) { ...@@ -119,7 +119,6 @@ export async function getBranchSystemInfo(userInfo, bsId) {
throw new BizError(ERRORENUM.权限不足, `${userInfo.userId}${funName}但是制度范围不包含他所在的支部`); throw new BizError(ERRORENUM.权限不足, `${userInfo.userId}${funName}但是制度范围不包含他所在的支部`);
} }
return {title:dataInfo.systemTitle, branch }; return {title:dataInfo.systemTitle, branch };
} }
......
...@@ -66,7 +66,17 @@ export async function selectData(url, tableName, param, column, pageNumber?, pa ...@@ -66,7 +66,17 @@ export async function selectData(url, tableName, param, column, pageNumber?, pa
} }
/**
* 多表联查
* @param url
* @param tableName
* @param param
* @param column
* @param includeConf
* @param pageNumber
* @param pageSize
* @returns
*/
export async function selectManyTableData(url, tableName, param, column, includeConf, pageNumber?, pageSize?) { export async function selectManyTableData(url, tableName, param, column, includeConf, pageNumber?, pageSize?) {
if (url != OPERATIONALDATATYPE.多表联查 && url != OPERATIONALDATATYPE.多表分页) { if (url != OPERATIONALDATATYPE.多表联查 && url != OPERATIONALDATATYPE.多表分页) {
throw new BizError(ERRORENUM.该方法仅可进行联合查询操作, '该方法仅可进行联合查询操作'); throw new BizError(ERRORENUM.该方法仅可进行联合查询操作, '该方法仅可进行联合查询操作');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment