|
|
|
|
@ -70,7 +70,10 @@
|
|
|
|
|
<el-radio-group v-model="form.user_id">
|
|
|
|
|
<div v-for="group in pickUsers" :key="group.id">
|
|
|
|
|
<div class="group-name">{{ group.name }}</div>
|
|
|
|
|
<el-radio v-for="user in group.users" :label="user.id">{{ user.name }}</el-radio>
|
|
|
|
|
<el-radio v-for="user in group.users" :label="user.id">
|
|
|
|
|
{{ user.name }}
|
|
|
|
|
<el-switch style="margin-left: 6px;" :value="smsUsers.indexOf(user.id) !== -1" :width="34" active-icon-class="el-icon-message" @input="e => smsUserChange(e, user.id)"></el-switch>
|
|
|
|
|
</el-radio>
|
|
|
|
|
</div>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</div>
|
|
|
|
|
|