diff --git a/src/components/Detail/src/Detail.vue b/src/components/Detail/src/Detail.vue
index 9ddbe30..3cf7778 100644
--- a/src/components/Detail/src/Detail.vue
+++ b/src/components/Detail/src/Detail.vue
@@ -45,7 +45,11 @@
:data="detailData"
:schema="allSchemas.detailSchema"
:columns="2"
- />
+ >
+
+
+
+
-
-
- {{ row.code }}
+
+
+ {{ row.number }}
@@ -51,7 +51,20 @@
/>
-
+
+
+
+
+
+
+ {{ cur.name }}
+
+
+
+
@@ -75,7 +88,9 @@ const route = useRoute() // 路由信息
const routeName = ref()
routeName.value = route.name
const tableColumns = ref(ProblemSharingPlatform.allSchemas.tableColumns)
-
+const open1=(cur)=>{
+ window.open(cur.url)
+}
// 查询页面返回
const searchTableSuccess = (formField, searchField, val, formRef) => {
nextTick(() => {
diff --git a/src/views/eam/device/problemSharingPlatform/problemSharingPlatform.data.ts b/src/views/eam/device/problemSharingPlatform/problemSharingPlatform.data.ts
index 2ed823c..2277b5c 100644
--- a/src/views/eam/device/problemSharingPlatform/problemSharingPlatform.data.ts
+++ b/src/views/eam/device/problemSharingPlatform/problemSharingPlatform.data.ts
@@ -66,6 +66,9 @@ export const ProblemSharingPlatform = useCrudSchemas(reactive([
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')]
}
},
+ detail: {
+ dateFormat: 'YYYY-MM-DD HH:mm:ss'
+ },
isForm: false
},
{
@@ -96,6 +99,7 @@ export const ProblemSharingPlatform = useCrudSchemas(reactive([
label: '操作',
field: 'action',
isForm: false,
+ isDetail:false,
table: {
width: 150,
fixed: 'right'