运营活动

This commit is contained in:
liuye
2023-01-17 10:09:16 +08:00
parent 57fbd8ce41
commit 2a7ab35e29
2 changed files with 17 additions and 19 deletions

View File

@@ -41,9 +41,9 @@
<AiEmpty description="暂无数据" v-else></AiEmpty>
<AiFixedBtn>
<!-- <AiFixedBtn>
<div class="addBtn iconfont iconfont-iconfangda" @tap.stop="toAdd()" />
</AiFixedBtn>
</AiFixedBtn> -->
</div>
</template>
@@ -82,16 +82,14 @@ export default {
},
methods: {
getList() {
this.$http
.post('/app/appvillageactivityinfo/listUp', null, {
this.$http.post('/app/appvillageactivityinfo/listUp', null, {
params: {
size: this.size,
current: this.current,
createUserId: this.currentTabs == 1 ? this.user.id : '',
areaId: this.user.areaId,
},
})
.then((res) => {
}).then((res) => {
if (res.code == 0) {
this.datas = this.current > 1 ? [...this.datas, ...res.data.records] : res.data.records
this.$forceUpdate()

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB