diff --git a/src/components/Table/ListTable/TableAction/index.vue b/src/components/Table/ListTable/TableAction/index.vue
index 6a5920fea..571d685ef 100644
--- a/src/components/Table/ListTable/TableAction/index.vue
+++ b/src/components/Table/ListTable/TableAction/index.vue
@@ -209,6 +209,12 @@ export default {
.left-side {
float: left;
display: block;
+ &>>> .action-item.el-dropdown {
+ height: 33px;
+ &> .el-button {
+ height: 100%;
+ }
+ }
}
.right-side {
diff --git a/src/icons/svg/help.svg b/src/icons/svg/help.svg
new file mode 100644
index 000000000..c926bfc79
--- /dev/null
+++ b/src/icons/svg/help.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/icons/svg/load-file.svg b/src/icons/svg/load-file.svg
new file mode 100644
index 000000000..ff7912e10
--- /dev/null
+++ b/src/icons/svg/load-file.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/icons/svg/save-line.svg b/src/icons/svg/save-line.svg
new file mode 100644
index 000000000..fb0533df8
--- /dev/null
+++ b/src/icons/svg/save-line.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/views/accounts/AccountChangeSecret/AccountChangeSecretList.vue b/src/views/accounts/AccountChangeSecret/AccountChangeSecretList.vue
index c4ca707b4..30a09f9a1 100644
--- a/src/views/accounts/AccountChangeSecret/AccountChangeSecretList.vue
+++ b/src/views/accounts/AccountChangeSecret/AccountChangeSecretList.vue
@@ -54,7 +54,7 @@ export default {
formatterArgs: {
showFalse: false
},
- width: '80px'
+ width: '152px'
},
periodic_display: {
label: vm.$t('accounts.AccountChangeSecret.TimerPeriod'),
diff --git a/src/views/accounts/AccountGather/AccountGatherTaskList.vue b/src/views/accounts/AccountGather/AccountGatherTaskList.vue
index bb0917505..e90399d72 100644
--- a/src/views/accounts/AccountGather/AccountGatherTaskList.vue
+++ b/src/views/accounts/AccountGather/AccountGatherTaskList.vue
@@ -47,7 +47,7 @@ export default {
formatterArgs: {
showFalse: false
},
- width: '80px'
+ width: '152px'
},
periodic_display: {
label: vm.$t('accounts.AccountChangeSecret.TimerPeriod'),
diff --git a/src/views/accounts/AccountPush/AccountPushList.vue b/src/views/accounts/AccountPush/AccountPushList.vue
index d5dd69659..403b56669 100644
--- a/src/views/accounts/AccountPush/AccountPushList.vue
+++ b/src/views/accounts/AccountPush/AccountPushList.vue
@@ -63,6 +63,9 @@ export default {
label: vm.$t('accounts.AccountChangeSecret.NodeAmount'),
width: '80px'
},
+ is_periodic: {
+ width: '152px'
+ },
periodic_display: {
label: vm.$t('accounts.AccountChangeSecret.TimerPeriod'),
width: '150px'
diff --git a/src/views/ops/Job/QuickJob.vue b/src/views/ops/Job/QuickJob.vue
index 29beda350..0e7ef7afc 100644
--- a/src/views/ops/Job/QuickJob.vue
+++ b/src/views/ops/Job/QuickJob.vue
@@ -226,7 +226,7 @@ export default {
openCommand: {
type: 'button',
align: 'right',
- icon: 'fa-folder-open',
+ icon: 'load-file',
tip: this.$t('ops.OpenCommand'),
callback: (val, setting) => {
this.showOpenAdhocDialog = true
@@ -235,7 +235,7 @@ export default {
saveCommand: {
type: 'button',
align: 'right',
- icon: 'save',
+ icon: 'save-line',
tip: this.$t('ops.SaveCommand'),
callback: (val, setting) => {
if (!this.command) {
@@ -248,7 +248,7 @@ export default {
help: {
type: 'button',
align: 'right',
- icon: 'fa fa-question-circle',
+ icon: 'help',
tip: this.$t('ops.Help'),
callback: (val, setting) => {
this.showHelpDialog = true
diff --git a/src/views/profile/ProfileUpdate/index.vue b/src/views/profile/ProfileUpdate/index.vue
index 369ebff74..be500f3f6 100644
--- a/src/views/profile/ProfileUpdate/index.vue
+++ b/src/views/profile/ProfileUpdate/index.vue
@@ -29,6 +29,7 @@ export default {
activeMenu: 'ProfileUpdate',
submenu: this.getSubmenu(),
hasRightSide: false,
+ hasActivity: false,
actions: {
detailApiUrl: '/api/v1/users/profile/'
}