diff --git a/frontend/src/business/components/performance/report/PerformanceTestReport.vue b/frontend/src/business/components/performance/report/PerformanceTestReport.vue index 75c54461da..0ce159c58b 100644 --- a/frontend/src/business/components/performance/report/PerformanceTestReport.vue +++ b/frontend/src/business/components/performance/report/PerformanceTestReport.vue @@ -8,9 +8,9 @@ {{$t('commons.report')}} + prefix-icon="el-icon-search" + maxlength="60" + v-model="condition" @change="search" clearable/> @@ -19,12 +19,6 @@ - - {{ scope.row.updateTime | timestampFormatDate }} + + + @@ -145,7 +160,7 @@ }); }, _handleDelete(report) { - this.result = this.$post(this.deletePath + report.id, {},() => { + this.result = this.$post(this.deletePath + report.id, {}, () => { this.$message({ message: this.$t('commons.delete_success'), type: 'success' diff --git a/frontend/src/i18n/en-US.js b/frontend/src/i18n/en-US.js index 089d9ebeb8..249cb129aa 100644 --- a/frontend/src/i18n/en-US.js +++ b/frontend/src/i18n/en-US.js @@ -30,7 +30,7 @@ export default { 'phone': 'Phone', 'role': 'Role', 'personal_info': 'Personal Info', - 'status': 'Enable/Disable', + 'status': 'Status', 'show_all': 'Show All', 'report': 'Report', 'user': 'User', diff --git a/frontend/src/i18n/zh-CN.js b/frontend/src/i18n/zh-CN.js index 6cb55418bd..86ba6c76d5 100644 --- a/frontend/src/i18n/zh-CN.js +++ b/frontend/src/i18n/zh-CN.js @@ -30,7 +30,7 @@ export default { 'phone': '电话', 'role': '角色', 'personal_info': '个人信息', - 'status': '启用/禁用', + 'status': '状态', 'show_all': '显示全部', 'report': '报告', 'user': '用户',