From 11247a161a31e5003baf1c86d5d8fa1dcd40f4cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8A=B1=E6=9C=89=E6=B8=85=E9=A6=99=E6=9C=88=E6=9C=89?= =?UTF-8?q?=E9=98=B4?= <185154740@qq.com> Date: Fri, 25 Feb 2022 09:09:19 +0800 Subject: [PATCH] 27620 --- src/mods/AppIntegralApply/AppIntegralApply.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/mods/AppIntegralApply/AppIntegralApply.vue b/src/mods/AppIntegralApply/AppIntegralApply.vue index c6ddd82..b62f33a 100644 --- a/src/mods/AppIntegralApply/AppIntegralApply.vue +++ b/src/mods/AppIntegralApply/AppIntegralApply.vue @@ -42,7 +42,7 @@
我要申请
- + @@ -76,6 +76,7 @@ export default { searchObj: '', data: [], current: 1, + newList: [], } }, computed: { @@ -109,6 +110,10 @@ export default { .then((res) => { if (res.code == 0) { this.data = this.current > 1 ? [...this.data, ...res.data.records] : res.data.records + + const oldList = this.$dict.getDict('atWillReportType') + const addList = [{ dictName: '全部', dictValue: '', dictColor: null }] + this.newList = [...addList, ...oldList] } }) .finally(() => {