Skip to content

Commit

Permalink
fix(admin): 暂时关闭群体邮件发送
Browse files Browse the repository at this point in the history
  • Loading branch information
Hacker233 committed May 13, 2024
1 parent 38e5f0d commit 840b9ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/views/admin/userManage/uerList/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
<el-form-item>
<el-button type="primary" @click="onSubmit">查询</el-button>
<el-button @click="resetForm">重置</el-button>
<el-tooltip :disabled="multipleSelection.length > 0" effect="light" content="请先选择用户">
<!-- <el-tooltip :disabled="multipleSelection.length > 0" effect="light" content="请先选择用户">
<el-button :disabled="multipleSelection.length <= 0" @click="sendEmailToSelectedUsers"
>发送邮件</el-button
>
</el-tooltip>
<el-button @click="sendEmailToAllUsers">发送全体邮件</el-button>
<el-button @click="sendEmailToAllUsers">发送全体邮件</el-button> -->
</el-form-item>
</el-form>

Expand Down Expand Up @@ -169,7 +169,7 @@
};
// 发送邮件至选中的用户
const sendEmailToSelectedUsers = () => {};
// const sendEmailToSelectedUsers = () => {};
// 当选择项发生变化时会触发该事件
const multipleSelection = ref<any>([]);
Expand All @@ -179,7 +179,7 @@
};
// 给所有用户发送邮件
const sendEmailToAllUsers = () => {};
// const sendEmailToAllUsers = () => {};
// 获取用户列表
const page = ref<number>(1);
Expand Down

0 comments on commit 840b9ed

Please sign in to comment.