Service 可以返回数组格式的渲染器

This commit is contained in:
liaoxuezhi 2019-09-09 11:59:44 +08:00
parent fabdbd98fd
commit 7f9516f38c
1 changed files with 4 additions and 5 deletions

View File

@ -277,15 +277,14 @@ export const ServiceStore = iRendererStore
const json:Payload = yield (getRoot(self) as IRendererStore).fetcher(api, data, options);
fetchSchemaCancel = null;
if (!isEmpty(json.data)) {
self.schema = json.data;
self.schemaKey = '' + Date.now();
}
if (!json.ok) {
updateMessage(json.msg || options && options.errorMessage || '获取失败,请重试', true);
(getRoot(self) as IRendererStore).notify('error', self.msg);
} else {
if (json.data) {
self.schema = json.data;
self.schemaKey = '' + Date.now();
}
updateMessage(json.msg || options && options.successMessage);
// 配置了获取成功提示后提示,默认是空不会提示。