This commit is contained in:
BianLzhaoMin 2026-02-02 13:17:41 +08:00
parent a9fe9c94b9
commit dfc0b86fbc
1 changed files with 9 additions and 4 deletions

View File

@ -186,6 +186,15 @@
<el-row :gutter="24" v-if="isGenderSendGroup === 0"> <el-row :gutter="24" v-if="isGenderSendGroup === 0">
<el-col :span="24"> <el-col :span="24">
<el-form-item label="已选分组"> <el-form-item label="已选分组">
<div class="recipient-select">
<span class="selected-names">
{{
formData.groupList
.map((item) => item.groupName)
.join('、') || '暂未选择分组'
}}
</span>
</div>
<el-table <el-table
border border
style="margin-top: 10px" style="margin-top: 10px"
@ -217,10 +226,6 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div v-else class="recipient-select">
<span class="selected-names">暂未选择分组</span>
</div>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>