mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
fix(data-source): http数据源中mock配置中关闭启用后,不会执行request
This commit is contained in:
parent
798ace76f3
commit
ea79a0d601
@ -68,8 +68,8 @@ export default class DataSource<T extends DataSourceSchema = DataSourceSchema> e
|
||||
data = cloneDeep(this.mockData);
|
||||
} else if (typeof options.useMock === 'boolean' && options.useMock) {
|
||||
// 设置了使用mock就使用mock数据
|
||||
this.mockData = options.schema.mocks?.find((mock) => mock.enable)?.data || this.getDefaultData();
|
||||
data = this.mockData;
|
||||
this.mockData = options.schema.mocks?.find((mock) => mock.enable)?.data;
|
||||
data = this.mockData || this.getDefaultData();
|
||||
} else if (!options.initialData) {
|
||||
data = this.getDefaultData();
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user