update 字典结构更改. 扩展值可编辑为json

This commit is contained in:
2021-05-20 20:39:46 +08:00
parent e7fea323bd
commit ad08df1150
25 changed files with 1033 additions and 144 deletions

View File

@@ -117,14 +117,14 @@ export default {
const i = import(`@/pages${pane.path}`);
pane.component = () => i;
pane.loaded = false;
i.then(() => {
pane.loaded = true;
NProgress.done();
}).catch(() => {
pane.component = () => import('@/views/error/404');
pane.loaded = true;
NProgress.done();
});
i.then(() => {})
.catch(() => {
pane.component = () => import('@/views/error/404');
})
.finally(() => {
pane.loaded = true;
NProgress.done();
});
},
onClose(targetKey, action) {
if (action === 'remove') {