diff --git a/frontend/src/components/widget/DeWidget/DeDate.vue b/frontend/src/components/widget/DeWidget/DeDate.vue index cec51a1614..8bda125c45 100644 --- a/frontend/src/components/widget/DeWidget/DeDate.vue +++ b/frontend/src/components/widget/DeWidget/DeDate.vue @@ -325,7 +325,7 @@ export default { } .el-picker-panel__link-btn:nth-child(2) { - color: #FFFFFF; + color: var(--DateColor, #409eff); background: var(--BgDateColor, #FFFFFF) !important; border:1px solid var(--BrDateColor, #dfe4ed) !important; } diff --git a/frontend/src/views/panel/template/index.vue b/frontend/src/views/panel/template/index.vue index 49d7028e63..18b5a0d33a 100644 --- a/frontend/src/views/panel/template/index.vue +++ b/frontend/src/views/panel/template/index.vue @@ -257,7 +257,7 @@ export default { if (id) { templateDelete(id).then((response) => { this.openMessageSuccess("commons.delete_success"); - this.getTree(); + this.showCurrentTemplate(this.currentTemplateId, this.currentTemplateLabel); }); } }, @@ -343,7 +343,7 @@ export default { this.$refs.templateList.nodeClick(obj); }); } else { - this.showCurrentTemplate(this.currentTemplateId); + this.showCurrentTemplate(this.currentTemplateId, this.currentTemplateLabel); } } else { this.currentTemplateShowList = []; diff --git a/frontend/src/views/system/task/DatasetTaskList.vue b/frontend/src/views/system/task/DatasetTaskList.vue index ec265a7755..c71a903ed5 100644 --- a/frontend/src/views/system/task/DatasetTaskList.vue +++ b/frontend/src/views/system/task/DatasetTaskList.vue @@ -115,7 +115,6 @@