修复定时任务不展示

This commit is contained in:
whyour 2021-04-02 09:40:59 +08:00
parent 16ad626b43
commit 870e90fc2a
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ const Crontab = () => {
request
.get(`${config.apiPrefix}config/crontab`)
.then((data) => {
setValue(data.content);
setValue(data.data);
})
.finally(() => setLoading(false));
};

View File

@ -15,7 +15,7 @@ const Crontab = () => {
const getConfig = () => {
setLoading(true);
request
.get(`${config.apiPrefix}config/diy`)
.get(`${config.apiPrefix}config/extra`)
.then((data) => {
setValue(data.data);
})