From 2de6d3bd5aedf3da96eb8169742a077c70857535 Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Tue, 7 Sep 2021 15:01:49 +0800 Subject: [PATCH] feat: There is no way the #47605 --- src/pages/details/otherBussStandardDetails/index.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/pages/details/otherBussStandardDetails/index.vue b/src/pages/details/otherBussStandardDetails/index.vue index 198c4c3c8..8bf10a74d 100644 --- a/src/pages/details/otherBussStandardDetails/index.vue +++ b/src/pages/details/otherBussStandardDetails/index.vue @@ -36,7 +36,7 @@
{{ sarStandardsInfoEO.standName || '-' }}
{{ sarStandardsInfoEO.standEnName || '-' }}
- {{ sarStandardsInfoEO.standStatusShow || '-' }}
@@ -2029,7 +2029,11 @@ export default { field['tips'] = tips } if (value && typeof value === 'number') { - value = this.$dateFormat(value, 'yyyy-MM-dd') + value = this.$moment(value).format('YYYY-MM-DD') + } + // 时间格式处理 + if (field.attrType === 'DATE_PICKER' && value) { + value = this.$moment(value).format('YYYY-MM-DD') } field['value'] = value if (field.showRegionId === location.value) {