diff --git a/src/components/FormFields/UpdateToken.vue b/src/components/FormFields/UpdateToken.vue
new file mode 100644
index 000000000..8fd5fe277
--- /dev/null
+++ b/src/components/FormFields/UpdateToken.vue
@@ -0,0 +1,45 @@
+
+
+ {{ text }}
+
+
+
+
+
+
+
diff --git a/src/components/FormFields/index.js b/src/components/FormFields/index.js
index 22bad6591..d7b0744be 100644
--- a/src/components/FormFields/index.js
+++ b/src/components/FormFields/index.js
@@ -7,6 +7,7 @@ import UploadField from './UploadField'
import UploadKey from './UploadKey'
import UserPassword from './UserPassword'
import WeekCronSelect from './WeekCronSelect'
+import UpdateToken from './UpdateToken'
export default {
DatetimeRangePicker,
@@ -17,7 +18,8 @@ export default {
UploadKey,
UploadField,
UserPassword,
- WeekCronSelect
+ WeekCronSelect,
+ UpdateToken
}
export {
@@ -29,5 +31,6 @@ export {
UploadKey,
UploadField,
UserPassword,
- WeekCronSelect
+ WeekCronSelect,
+ UpdateToken
}
diff --git a/src/i18n/langs/cn.json b/src/i18n/langs/cn.json
index d72e63b20..f502019e8 100644
--- a/src/i18n/langs/cn.json
+++ b/src/i18n/langs/cn.json
@@ -338,6 +338,7 @@
"TestSuccessMsg": "测试成功",
"To": "至",
"Update": "更新",
+ "Revise": "修改",
"Upload": "上传",
"Clone": "克隆",
"Username": "用户名",
diff --git a/src/i18n/langs/en.json b/src/i18n/langs/en.json
index b0accb9ae..f12546615 100644
--- a/src/i18n/langs/en.json
+++ b/src/i18n/langs/en.json
@@ -327,6 +327,7 @@
"TestSuccessMsg": "Test Success",
"To": "To",
"Update": "Update",
+ "Revise": "Revise",
"bind": "Bind",
"unbind": "Unbind",
"Upload": "Upload",
diff --git a/src/styles/element-ui.scss b/src/styles/element-ui.scss
index 57fa8be5e..f9cc187d3 100644
--- a/src/styles/element-ui.scss
+++ b/src/styles/element-ui.scss
@@ -11,6 +11,9 @@ $--color-info: #23c6c8;
$--color-warning: #f8ac59;
$--color-danger: #ed5565;
+$--color-link: #1c84c6;
+$--color-link-highlight: #23527c;
+
$--color-text-primary: #303133;
/// color|1|Font Color|2
$--color-text-regular: #606266;
@@ -400,7 +403,7 @@ td .el-button.el-button--mini {
}
a {
- color: #428bca !important;
+ color: $--color-link !important;
text-decoration: none;
}
@@ -480,3 +483,12 @@ a {
}
}
+.el-button--text {
+ color: $--color-link;
+ padding: 5px;
+}
+
+.el-button--text:hover {
+ color: $--color-link-highlight;
+ background-color: rgba(0,0,0,.05)
+}
diff --git a/src/views/settings/Auth/DingTalk.vue b/src/views/settings/Auth/DingTalk.vue
index a54802ed5..1b3c6b9d1 100644
--- a/src/views/settings/Auth/DingTalk.vue
+++ b/src/views/settings/Auth/DingTalk.vue
@@ -10,6 +10,7 @@