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(() => {