From 779decc96dd2e832f9cd14b8a0f44b483080683a Mon Sep 17 00:00:00 2001
From: break60 <790061044@qq.com>
Date: Sun, 29 Dec 2019 10:23:10 +0800
Subject: [PATCH] =?UTF-8?q?Increase=20script=20text=20box=20to=20zoom=20in?=
=?UTF-8?q?=20and=20fix=20log=20loading=20#1547=20=E3=80=81#1247=20(#1604)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* Increase script text box to zoom in and fix log loading
* Timing operation adds default value for start and end dates
---
.../home/pages/dag/_source/formModel/log.vue | 8 +-
.../formModel/tasks/_source/scriptBox.vue | 124 ++++++++++++++++++
.../dag/_source/formModel/tasks/shell.vue | 64 ++++++++-
.../definition/pages/list/_source/timing.vue | 16 +++
4 files changed, 202 insertions(+), 10 deletions(-)
create mode 100644 dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/_source/scriptBox.vue
diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/log.vue b/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/log.vue
index 4c1acff5e6..7ec9cdfa7a 100644
--- a/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/log.vue
+++ b/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/log.vue
@@ -257,8 +257,8 @@
_rtParam () {
return {
taskInstId: this.stateId || this.logId,
- skipLineNum: parseInt(`${this.loadingIndex ? this.loadingIndex + '0000' : 0}`),
- limit: parseInt(`${this.loadingIndex ? this.loadingIndex + 1 : 1}0000`)
+ skipLineNum: parseInt(`${this.loadingIndex ? this.loadingIndex + '000' : 0}`),
+ limit: parseInt(`${this.loadingIndex ? this.loadingIndex + 1 : 1}000`)
}
}
},
@@ -316,7 +316,7 @@
}
.refresh-log {
>i {
- font-size: 24px;
+ font-size: 20px;
vertical-align: middle;
transform: scale(1);
}
@@ -353,7 +353,7 @@
font-weight: bold;
resize:none;
line-height: 1.6;
- padding: 6px;
+ padding: 0px;
}
}
}
diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/_source/scriptBox.vue b/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/_source/scriptBox.vue
new file mode 100644
index 0000000000..c16d18cc38
--- /dev/null
+++ b/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/_source/scriptBox.vue
@@ -0,0 +1,124 @@
+/*
+ * 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.
+ */
+
+