From ec6c9e5cb95122787a46a5870e6a4ee4aaf96ea8 Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Wed, 18 May 2022 11:51:51 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=A6=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mods/work/AppHelpDeclaration/details.vue | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/mods/work/AppHelpDeclaration/details.vue b/src/mods/work/AppHelpDeclaration/details.vue index d927395..2320199 100644 --- a/src/mods/work/AppHelpDeclaration/details.vue +++ b/src/mods/work/AppHelpDeclaration/details.vue @@ -2,8 +2,8 @@
{{ data.riskDescription }}
-
- +
+
{{item}} @@ -12,7 +12,7 @@
-
{{ data.status }}
+
{{ $dict.getLabel('helpDeclarationStatus', data.status) }}
@@ -42,6 +42,7 @@ export default { } }, onLoad(o) { + this.$dict.load('helpDeclarationStatus') if (o.id) { this.id = o.id this.getDetail() @@ -55,7 +56,10 @@ export default { this.list = res.data.reason.split(',') } }) - } + }, + preview(index) { + this.$previewImage(this.data.files, index, "url"); + }, } }