|
@@ -50,7 +50,7 @@
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="12">
|
|
|
<el-row>
|
|
|
- <el-col :span="24">{{$t('pages.log_opera.origin_data')}}</el-col>
|
|
|
+ <el-col :span="24">{{ $t('pages.log_opera.origin_data') }}</el-col>
|
|
|
<el-col :span="24">
|
|
|
<data-view :data="form.origin_data"></data-view>
|
|
|
</el-col>
|
|
@@ -58,7 +58,7 @@
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-row>
|
|
|
- <el-col :span="24">{{$t('pages.log_opera.new_data')}}</el-col>
|
|
|
+ <el-col :span="24">{{ $t('pages.log_opera.new_data') }}</el-col>
|
|
|
<el-col :span="24">
|
|
|
<data-view :data="form.new_data"></data-view>
|
|
|
</el-col>
|
|
@@ -76,7 +76,7 @@
|
|
|
import dataView from './parts/dataView.vue'
|
|
|
import paramsTable from './parts/paramsTable.vue'
|
|
|
import { OperaLogsStore } from '@/store/api/log/opera'
|
|
|
-import { get, isObject } from 'lodash-es';
|
|
|
+import { get } from 'lodash-es';
|
|
|
import { onMounted } from 'vue'
|
|
|
const { t } = useI18n()
|
|
|
const store = OperaLogsStore()
|