diff --git a/src/views/dashboard/related/log/LogTable/Index.vue b/src/views/dashboard/related/log/LogTable/Index.vue
index 266b119e..e9fa5449 100644
--- a/src/views/dashboard/related/log/LogTable/Index.vue
+++ b/src/views/dashboard/related/log/LogTable/Index.vue
@@ -42,7 +42,7 @@ limitations under the License. -->
@closed="showDetail = false"
:title="t('logDetail')"
>
-
+
@@ -90,13 +90,14 @@ limitations under the License. -->
width: 390px;
}
- .content,
- .tags {
- width: 300px;
+ .content {
+ width: 1000px;
+ }
+
+ .tags {
+ width: 320px;
}
- .serviceInstanceName,
- .endpointName,
.serviceName {
width: 200px;
}
diff --git a/src/views/dashboard/related/log/LogTable/LogDetail.vue b/src/views/dashboard/related/log/LogTable/LogDetail.vue
index b8c8a758..6a17b2cc 100644
--- a/src/views/dashboard/related/log/LogTable/LogDetail.vue
+++ b/src/views/dashboard/related/log/LogTable/LogDetail.vue
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. -->
-
+
{{ t(item.value) }}:
{{ dateFormat(currentLog[item.label]) }}
@@ -36,14 +36,13 @@ limitations under the License. -->
import { computed } from "vue";
import type { PropType } from "vue";
import { useI18n } from "vue-i18n";
- import type { Option } from "@/types/app";
import { dateFormat } from "@/utils/dateFormat";
import { formatJson } from "@/utils/formatJson";
+ import { ServiceLogDetail } from "./data";
/*global defineProps */
const props = defineProps({
currentLog: { type: Object as PropType, default: () => ({}) },
- columns: { type: Array as PropType