diff --git a/src/apps/AppHelpDeclaration/details.vue b/src/apps/AppHelpDeclaration/details.vue index 1f9a42a6..1fdd9f62 100644 --- a/src/apps/AppHelpDeclaration/details.vue +++ b/src/apps/AppHelpDeclaration/details.vue @@ -38,7 +38,7 @@
-
{{ data.areaName }}
+
{{ data.areaName }}{{ data.address }}

照片

diff --git a/src/apps/AppHelpDeclaration/list.vue b/src/apps/AppHelpDeclaration/list.vue index 45f4e7e1..0a12abcd 100644 --- a/src/apps/AppHelpDeclaration/list.vue +++ b/src/apps/AppHelpDeclaration/list.vue @@ -13,16 +13,14 @@
-
- + 风险类型 {{ $dict.getLabel('helpDeclarationReason', declareReason) }} + - -
@@ -63,6 +61,7 @@ export default { areaName: '', declareReason: '', list: [], + riskList: [], } }, computed: { @@ -70,6 +69,11 @@ export default { }, onShow() { this.$dict.load('helpDeclarationStatus').then(() => { + this.riskList = this.$dict.getDict('helpDeclarationReason').map((item) => ({ + label: item.dictName, + value: item.dictValue + })) + this.riskList.unshift({label: "全部", value: ""}) uni.$on('update', () => { this.getList() })