diff --git a/src/pages/config/pages/mechanismManage/index.vue b/src/pages/config/pages/mechanismManage/index.vue
index e062b815e..b5d8d4287 100644
--- a/src/pages/config/pages/mechanismManage/index.vue
+++ b/src/pages/config/pages/mechanismManage/index.vue
@@ -9,6 +9,9 @@
+
+
+
@@ -16,11 +19,13 @@
+
+
diff --git a/src/pages/config/pages/operationLog/index.vue b/src/pages/config/pages/operationLog/index.vue
index 88a0a3959..f8a6f1c2f 100644
--- a/src/pages/config/pages/operationLog/index.vue
+++ b/src/pages/config/pages/operationLog/index.vue
@@ -167,8 +167,11 @@
loading: 'dataLoading'
}, res => {
if (res.ok) {
- this.total = res.data.total
- this.data = res.data.records
+ this.total = res.data.total;
+ res.data.records.forEach(item => {
+ item.account = "(" + item.account + ")" + item.accountName;
+ });
+ this.data = res.data.records;
}
})
},