diff --git a/frontend/src/api/system/template.js b/frontend/src/api/system/template.js index 11c99d2f7c..5b83b15bcb 100644 --- a/frontend/src/api/system/template.js +++ b/frontend/src/api/system/template.js @@ -18,7 +18,6 @@ export function showTemplateList(data) { return request({ url: '/template/templateList', data: data, - loading: true, method: 'post' }) } @@ -26,7 +25,6 @@ export function showTemplateList(data) { export function findOne(id) { return request({ url: '/template/findOne/' + id, - loading: true, method: 'get' }) } diff --git a/frontend/src/views/panel/list/EditPanel/index.vue b/frontend/src/views/panel/list/EditPanel/index.vue index 7580a47263..277004fab7 100644 --- a/frontend/src/views/panel/list/EditPanel/index.vue +++ b/frontend/src/views/panel/list/EditPanel/index.vue @@ -1,5 +1,5 @@