diff --git a/src/views/resource/customer/suggestForm/list.vue b/src/views/resource/customer/suggestForm/list.vue
index cbeacfc..7d2faea 100644
--- a/src/views/resource/customer/suggestForm/list.vue
+++ b/src/views/resource/customer/suggestForm/list.vue
@@ -74,7 +74,7 @@
{ text: '意见反馈单位', value: 'customerName', align: 'center' },
{ text: '意见反馈部门', value: 'customerDeptName', align: 'center' },
{ text: '意见对象', value: 'labCodeName', align: 'center' },
- { text: '创建人', value: 'createUserName', align: 'center', width: '150' },
+ { text: '创建人', value: 'originCreateUserName', align: 'center', width: '150' },
{ text: '创建时间', value: 'createTime', align: 'center', width: '180' },
{ text: '处置情况', value: 'handleStatusName', align: 'center', width: '150' },
])
diff --git a/src/views/resource/customer/suggestForm/list.vue b/src/views/resource/customer/suggestForm/list.vue
index cbeacfc..7d2faea 100644
--- a/src/views/resource/customer/suggestForm/list.vue
+++ b/src/views/resource/customer/suggestForm/list.vue
@@ -74,7 +74,7 @@
{ text: '意见反馈单位', value: 'customerName', align: 'center' },
{ text: '意见反馈部门', value: 'customerDeptName', align: 'center' },
{ text: '意见对象', value: 'labCodeName', align: 'center' },
- { text: '创建人', value: 'createUserName', align: 'center', width: '150' },
+ { text: '创建人', value: 'originCreateUserName', align: 'center', width: '150' },
{ text: '创建时间', value: 'createTime', align: 'center', width: '180' },
{ text: '处置情况', value: 'handleStatusName', align: 'center', width: '150' },
])
diff --git a/src/views/resource/system/sysDoc/detail.vue b/src/views/resource/system/sysDoc/detail.vue
index 2f49a49..3258be0 100644
--- a/src/views/resource/system/sysDoc/detail.vue
+++ b/src/views/resource/system/sysDoc/detail.vue
@@ -249,27 +249,29 @@
-
+ /> -->
+
-
+ /> -->
+
diff --git a/src/views/resource/customer/suggestForm/list.vue b/src/views/resource/customer/suggestForm/list.vue
index cbeacfc..7d2faea 100644
--- a/src/views/resource/customer/suggestForm/list.vue
+++ b/src/views/resource/customer/suggestForm/list.vue
@@ -74,7 +74,7 @@
{ text: '意见反馈单位', value: 'customerName', align: 'center' },
{ text: '意见反馈部门', value: 'customerDeptName', align: 'center' },
{ text: '意见对象', value: 'labCodeName', align: 'center' },
- { text: '创建人', value: 'createUserName', align: 'center', width: '150' },
+ { text: '创建人', value: 'originCreateUserName', align: 'center', width: '150' },
{ text: '创建时间', value: 'createTime', align: 'center', width: '180' },
{ text: '处置情况', value: 'handleStatusName', align: 'center', width: '150' },
])
diff --git a/src/views/resource/system/sysDoc/detail.vue b/src/views/resource/system/sysDoc/detail.vue
index 2f49a49..3258be0 100644
--- a/src/views/resource/system/sysDoc/detail.vue
+++ b/src/views/resource/system/sysDoc/detail.vue
@@ -249,27 +249,29 @@
-
+ /> -->
+
-
+ /> -->
+
diff --git a/src/views/resource/system/sysDoc/list.vue b/src/views/resource/system/sysDoc/list.vue
index 0966a3c..7d0eecf 100644
--- a/src/views/resource/system/sysDoc/list.vue
+++ b/src/views/resource/system/sysDoc/list.vue
@@ -95,8 +95,8 @@
sysFileList.value = response.data.rows.map((item: { fileName: string; effectiveDate: string; promulgateTime: string }) => {
return {
...item,
- effectiveDate: dayjs(item.effectiveDate).format('YYYY-MM-DD') !== 'Invalid Date' ? dayjs(item.effectiveDate).format('YYYY-MM-DD') : '',
- promulgateTime: dayjs(item.promulgateTime).format('YYYY-MM-DD') !== 'Invalid Date' ? dayjs(item.promulgateTime).format('YYYY-MM-DD') : '',
+ effectiveDate: dayjs(item.effectiveDate).format('YYYY-MM-DD') !== 'Invalid Date' ? dayjs(item.effectiveDate).format('YYYY-MM-DD') : item.effectiveDate.replace(/(\d{4})年(\d{2})月(\d{2})日/, '$1-$2-$3'),
+ promulgateTime: dayjs(item.promulgateTime).format('YYYY-MM-DD') !== 'Invalid Date' ? dayjs(item.promulgateTime).format('YYYY-MM-DD') : item.promulgateTime.replace(/(\d{4})年(\d{2})月(\d{2})日/, '$1-$2-$3'),
followLinkArr: [item.fileName],
}
})