diff --git a/src/main/resources/views/platform/zhgh/welfare/selectionSituation/index.html b/src/main/resources/views/platform/zhgh/welfare/selectionSituation/index.html index db21314..5f11e2c 100644 --- a/src/main/resources/views/platform/zhgh/welfare/selectionSituation/index.html +++ b/src/main/resources/views/platform/zhgh/welfare/selectionSituation/index.html @@ -126,7 +126,7 @@ layout("/layouts/platform.html"){ - + @@ -186,6 +186,19 @@ layout("/layouts/platform.html"){ }, provideMode() { return this.projectOptions.find((item) => item.id === this.pageForm.projectId).provideMode + }, + // 根据表格勾选状态和选择情况筛选项,明确展示本次提醒的实际发送范围。 + reminderModeText() { + if (this.selectedRows.length > 0) { + return "按表格勾选人员发送" + } + if (this.pageForm.isSelect === false) { + return "仅向当前筛选范围内未选择人员发送" + } + if (this.pageForm.isSelect === true) { + return "仅向当前筛选范围内已选择人员发送" + } + return "向当前筛选范围内全部人员发送(包含已选择和未选择人员)" } }, methods: {