| | |
| | | </div> |
| | | |
| | | <div style="width: calc(100% - 300px)"> |
| | | <div class="bodyTopButtonGroup"> |
| | | <div class="bodyTopButtonGroup" style="justify-content: space-between"> |
| | | <el-button v-waves type="primary" icon="el-icon-circle-plus-outline" @click="add('add')">新增</el-button> |
| | | <el-button v-waves type="success" icon="el-icon-download" @click="$router.push('./../systemSetting/dataImport?fileCode=3')">导入</el-button> |
| | | </div> |
| | | |
| | | <div class="bodyTopFormGroup"> |
| | |
| | | prop="usercode" |
| | | label="用户编码" |
| | | sortable="custom" |
| | | show-overflow-tooltip |
| | | /> |
| | | <el-table-column |
| | | prop="username" |
| | | label="用户名称" |
| | | sortable="custom" |
| | | show-overflow-tooltip |
| | | /> |
| | | <el-table-column |
| | | prop="storg_name" |
| | | label="所属组织" |
| | | show-overflow-tooltip |
| | | sortable="custom" |
| | | > |
| | | <template slot-scope="{row}"> |
| | |
| | | <el-table-column |
| | | prop="status" |
| | | label="状态" |
| | | show-overflow-tooltip |
| | | sortable="custom" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <el-tag v-if="row.status==='Y'" size="small" type="success">正常</el-tag> |
| | | <el-tag v-if="row.status==='N'" size="small" type="danger">停用</el-tag> |
| | | <el-tag v-if="row.status==='Y'" size="small" type="success">在职</el-tag> |
| | | <el-tag v-if="row.status==='N'" size="small" type="danger">离职</el-tag> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | |
| | | |
| | | <el-form-item required label="用户状态"> |
| | | <el-radio-group v-model="dialogForm.status" style="width: 200px;"> |
| | | <el-radio label="Y">正常</el-radio> |
| | | <el-radio label="N">停用</el-radio> |
| | | <el-radio label="Y">在职</el-radio> |
| | | <el-radio label="N">离职</el-radio> |
| | | </el-radio-group> |
| | | </el-form-item> |
| | | |