1
continuous-integration/drone/push Build is running Details

main
wangxiaoshuang 2025-08-29 17:15:14 +08:00
parent 1625b5c417
commit 8b9c93c3b9
1 changed files with 7 additions and 2 deletions

View File

@ -107,7 +107,12 @@
<el-select ref="userType" v-model="from.IdentityUserIdList" size="small" placeholder="Please select"
multiple style="width: 100%">
<template v-for="user of GAUserList">
<el-option :key="user.Id" :label="user.UserName" :value="user.Id" />
<el-option :key="user.Id" :label="user.UserName" :value="user.Id">
<span>{{ user.UserName }}</span>
<i style=" color: #F56C6C;float:right;margin-top: 10px;" class="el-icon-warning"
v-if="user.IsGACurrentHospitalDisabled || user.IsGARoleDisabled || user.IsUserDisabled"
:title="$t('system:hospital:group:tip:userDisabled')" />
</el-option>
</template>
</el-select>
</el-form-item>
@ -119,7 +124,7 @@
<el-button @click="handleCancel" size="small">{{ $t('common:button:cancel') }}</el-button>
<el-button type="primary" size="small" @click="handleSave" :loading="loading">{{
$t('common:button:save')
}}</el-button>
}}</el-button>
</span>
</el-dialog>
</div>