This commit is contained in:
@jyuhsin
2025-01-08 17:38:53 +08:00
parent 47de7ed721
commit 9e65417d6e
3 changed files with 19 additions and 0 deletions
@@ -106,6 +106,12 @@ layout("/layouts/platform.html"){
<el-table-column label="所属单位" prop="unitname" show-overflow-tooltip></el-table-column>
<el-table-column label="性别" prop="sex"></el-table-column>
<el-table-column label="联系方式" prop="mobile"></el-table-column>
<el-table-column label="是否已发送邀请" prop="sendMsg">
<template slot-scope="{row}">
<span class="text-success" v-if="row.sendMsg === true"></span>
<span v-else></span>
</template>
</el-table-column>
<el-table-column label="是否同意邀请" prop="invite">
<template slot-scope="{row}">
<span class="text-success" v-if="row.invite === true && row.status === 5"></span>
@@ -175,6 +181,7 @@ layout("/layouts/platform.html"){
if(resp.code === 0) {
this.$message.success(resp.msg)
this.doSearch()
this.inviteUserDialog = false
} else {
this.$message.warning(resp.msg)
}