From e058b58e010983d89fee31d96c2e7de5d88351c2 Mon Sep 17 00:00:00 2001 From: break60 <790061044@qq.com> Date: Thu, 31 Oct 2019 18:52:56 +0800 Subject: [PATCH] Modify MySQL page of monitoring center (#1138) * Dependency workflow add dependency correction value * Download workflow instance map width adjustment and change "desc" field to "description" * The third-party library that builds the dependency is recommended to be placed in 'devDependencies' * Tree chart and Gantt chart style modification * The workflow instance can be deleted only when its status is success, failure, stop and pause. * change desc to description * Maximum width of tooltip is set to 500px, note the copyright number of login page * Delete copyright number * No tenant in the list of selected tenants the default is default, and the status not shown in the repair page * repair * Repair security center module prompt * Remove blank character during verification * Remove blank character during verification * Non admin users cannot create users, tenants, alarm groups, queues and worker groups * Remove CI windows detection * The value of loadaverage should be two decimal places * Add license * delete docs * update package.json * delete LICENSE * Display icon when there is no data in process definition * Worker group add IP format verification * Modify MySQL page of monitoring center --- .../home/pages/monitor/pages/servers/db.vue | 146 ++++++++++++++++++ .../pages/monitor/pages/servers/mysql.vue | 137 ---------------- .../src/js/conf/home/router/index.js | 8 +- .../components/secondaryMenu/_source/menu.js | 4 +- 4 files changed, 152 insertions(+), 143 deletions(-) create mode 100644 dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/db.vue delete mode 100644 dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/mysql.vue diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/db.vue b/dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/db.vue new file mode 100644 index 000000000..94a79bc3b --- /dev/null +++ b/dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/db.vue @@ -0,0 +1,146 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + + \ No newline at end of file diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/mysql.vue b/dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/mysql.vue deleted file mode 100644 index 0c47d1c96..000000000 --- a/dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/mysql.vue +++ /dev/null @@ -1,137 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - - \ No newline at end of file diff --git a/dolphinscheduler-ui/src/js/conf/home/router/index.js b/dolphinscheduler-ui/src/js/conf/home/router/index.js index 90b14625f..21e211d8c 100644 --- a/dolphinscheduler-ui/src/js/conf/home/router/index.js +++ b/dolphinscheduler-ui/src/js/conf/home/router/index.js @@ -433,11 +433,11 @@ const router = new Router({ } }, { - path: '/monitor/servers/mysql', - name: 'servers-mysql', - component: resolve => require(['../pages/monitor/pages/servers/mysql'], resolve), + path: '/monitor/servers/db', + name: 'servers-db', + component: resolve => require(['../pages/monitor/pages/servers/db'], resolve), meta: { - title: `Mysql` + title: `DB` } }, { diff --git a/dolphinscheduler-ui/src/js/module/components/secondaryMenu/_source/menu.js b/dolphinscheduler-ui/src/js/module/components/secondaryMenu/_source/menu.js index 1c0aefbec..a27791b6d 100644 --- a/dolphinscheduler-ui/src/js/module/components/secondaryMenu/_source/menu.js +++ b/dolphinscheduler-ui/src/js/module/components/secondaryMenu/_source/menu.js @@ -236,8 +236,8 @@ let menu = { // disabled: true // }, { - name: 'Mysql', - path: 'servers-mysql', + name: 'DB', + path: 'servers-db', id: 6, disabled: true } -- GitLab