提醒发送

This commit is contained in:
shijingjing
2022-07-18 14:03:18 +08:00
parent 93ec989475
commit bec9b3d432
2 changed files with 11 additions and 5 deletions

View File

@@ -31,8 +31,8 @@
数据更新于<span>{{ info.remindTime }}</span>
</div>
<div class="pie_card">
<div v-if="info.executedCount != null" id="pieEcharts"></div>
<AiEmpty description="暂无数据" v-else />
<div v-show="info.executedCount != null" id="pieEcharts"></div>
<AiEmpty description="暂无数据" v-show="info.executedCount == null" />
<div class="pie_right">
<div>
计划送达居民群: <span>{{ info.planCount || 0 }}</span>
@@ -48,8 +48,7 @@
</div>
</div>
</div>
<!-- v-if="info.status == 4" -->
<div class="btn" @click="remindSend">提醒成员发送</div>
<div v-if="info.status == 4" class="btn" @click="remindSend">提醒成员发送</div>
</div>
</div>
@@ -187,6 +186,7 @@ export default {
if (res?.data) {
this.tableData = res.data.executedList;
}
this.getPieEcharts()
});
},