提交 763312b8 authored 作者: 钟是志's avatar 钟是志

onestopConfig 直接在SelectApp界面 调接口刷新

上级 06508ace
...@@ -88,29 +88,29 @@ export const addOrEditTableItem = ({ objId, data, isAdd, isBase = true }) => { ...@@ -88,29 +88,29 @@ export const addOrEditTableItem = ({ objId, data, isAdd, isBase = true }) => {
* @param {String} id 申报数据的id * @param {String} id 申报数据的id
* @param {String} code 申报数据的code * @param {String} code 申报数据的code
*/ */
export const getHistoryFormDetail = ({id, code}) => { export const getHistoryFormDetail = ({ id, code }) => {
return uaaRequest('/UnifiedAppFormApi/getFormDetail', { id, code, }); return uaaRequest('/UnifiedAppFormApi/getFormDetail', { id, code });
}; };
export function getOnestopKey(key='',formKey='key_list', formValue='value_list'){ export function getOnestopKey(key = '', formKey = 'key_list', formValue = 'value_list') {
return fetchTableData({ return fetchTableData({
dataObjId: config.onestopConfigDataObjId || '1248169933162938368', dataObjId: config.onestopConfigDataObjId || '1248169933162938368',
pageNo: 1, pageNo: 1,
pageSize: 5000, pageSize: 5000,
}).then((x)=>{ }).then((x) => {
if(x && x.rows && x.rows.length){ if (x && x.rows && x.rows.length) {
let onestopConfigList = {}; const onestopConfigList = {};
for(let item of x.rows){ for (const item of x.rows) {
onestopConfigList[item[formKey]] = item[formValue]; onestopConfigList[item[formKey]] = item[formValue];
}
setOneStopConfig(onestopConfigList);
if(key){
return onestopConfigList[key];
}
}else{
message.warning('没有配置服务,无法使用此功能');
return false;
} }
}) setOneStopConfig(onestopConfigList);
if (key) {
return onestopConfigList[key];
}
} else {
console.error('没有配置一站式相关服务,无法使用部分功能');
return false;
}
});
} }
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论