yanzhen-design-vue
Version:
24 lines (23 loc) • 921 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const core = require("@yanzhen-lowcode/core");
const apis = require("../constants/apis.cjs");
const otherTablesApis = apis.getApiSymbol();
function provideOtherTableBizObjectParamsApi(props) {
const _api = core.provideApiConfig(props);
const getBizObjectParams = (options) => {
return _api == null ? void 0 : _api.value.request(options ?? {}, otherTablesApis[apis.OtherTables.BIZ_OBJECT_PARAMS]);
};
const getSearchRelBizObjectDataListV3 = (options) => {
return _api == null ? void 0 : _api.value.request(
options ?? {},
otherTablesApis[apis.OtherTables.SEARCH_REL_BIZ_OBJECT_DATA_LIST_V3]
);
};
return {
getBizObjectParams,
getSearchRelBizObjectDataListV3
};
}
exports.otherTablesApis = otherTablesApis;
exports.provideOtherTableBizObjectParamsApi = provideOtherTableBizObjectParamsApi;