群发统计

This commit is contained in:
yanran200730
2023-03-01 14:17:19 +08:00
parent d121bb6a73
commit e45ebaa025
6 changed files with 24 additions and 25 deletions

View File

@@ -1,7 +1,7 @@
<template>
<ai-detail class="AppAnnounceDetail">
<ai-detail class="AppAnnounceDetail" v-loading="isLoading">
<template slot="title">
<ai-title title="群发详情" isShowBack isShowBottomBorder @onBackClick="cancel(false)">
<ai-title title="群发详情" isShowBack isShowBottomBorder @onBackClick="cancel(true)">
</ai-title>
</template>
<template slot="content">
@@ -136,8 +136,8 @@
<el-table-column slot="user" label="成员" align="left">
<template slot-scope="{ row }">
<div class="userinfo">
<span>{{ row.groupOwnerName }}</span>
<span style="color: #999">{{ row.mainDepartmentName }}</span>
<span>{{ row.userName }}</span>
<span style="color: #999">{{ row.userDepartmentName }}</span>
</div>
</template>
</el-table-column>
@@ -210,10 +210,6 @@
info: {},
content: '',
currIndex: 0,
colConfigs3: [
{ prop: 'groupOwnerName', label: '群主' },
{ prop: 'groupNames', label: '群名称' }
],
colConfigs1: [
{ slot: 'user', label: '成员' },
{ prop: 'groupCount', label: '预计送达居民群', align: 'center' }
@@ -223,7 +219,8 @@
min: 60,
isDisabled: false,
rejecterId: '',
userNames: ''
userNames: '',
isLoading: false
}
},
@@ -249,8 +246,8 @@
}
}).then(res => {
if (res.code === 0) {
// this.tableData1 = res.data.executedList.records
// this.total1 = res.data.executedList.total
this.tableData1 = res.data.executedList.records
this.total1 = res.data.executedList.total
this.memberInfo = res.data
}
})
@@ -268,7 +265,7 @@
},
sendMsg () {
this.instance.post(`/app/whchatmomentstask/remindExamine?id=${this.params.id}`).then(res => {
this.instance.post(`/app/whchatmomentstask/remindSend?id=${this.params.id}`).then(res => {
if (res.code === 0) {
this.$message.success('提醒成功')
this.getInfo(this.params.id)
@@ -292,6 +289,7 @@
},
getInfo (id) {
this.isLoading = true
this.instance.post(`/app/whchatmomentstask/queryDetailById?id=${id}`).then(res => {
if (res.code === 0) {
this.info = res.data
@@ -327,6 +325,7 @@
}
}
}
this.isLoading = false
})
},
@@ -352,7 +351,7 @@
cancel (isRefresh) {
this.$emit('change', {
type: 'list',
type: 'List',
isRefresh: !!isRefresh
})
}