|
|
@@ -35,7 +35,6 @@
|
|
35
|
35
|
title="点击下载模板"
|
|
36
|
36
|
style="line-height: 32px;color: #409EFF;font-size: 14px;">点击下载用户模板</a>
|
|
37
|
37
|
<el-table v-loading="loading" :data="dataLists" border stripe @selection-change="changeSelects">
|
|
38
|
|
- <!-- <el-table-column type="selection" width="40" /> -->
|
|
39
|
38
|
<el-table-column prop="F_UserCode" label="工号" align="center" min-width="" />
|
|
40
|
39
|
<el-table-column prop="F_UserName" label="姓名" align="center" min-width="" />
|
|
41
|
40
|
<el-table-column prop="F_DeptName" label="科室" align="center" min-width="" />
|
|
|
@@ -43,17 +42,18 @@
|
|
43
|
42
|
<el-table-column prop="F_Title" label="职称" align="center" min-width="" />
|
|
44
|
43
|
<el-table-column prop="F_Job" label="职务" align="center" min-width="" />
|
|
45
|
44
|
<el-table-column prop="F_Telephone" label="电话" align="center" min-width="" />
|
|
46
|
|
- <el-table-column label="启用禁用状态" align="center" min-width="">
|
|
|
45
|
+ <el-table-column label="用户账号状态" align="center" min-width="">
|
|
47
|
46
|
<template slot-scope="scope">
|
|
48
|
47
|
<span v-if="scope.row.F_EnableFlag==0" style="color: #F56C6C;">禁用</span>
|
|
49
|
48
|
<span v-if="scope.row.F_EnableFlag==1" style="color: #67C23A;">启用</span>
|
|
|
49
|
+ <span v-if="scope.row.F_EnableFlag==2" style="color: #F56C6C;">锁定</span>
|
|
50
|
50
|
</template>
|
|
51
|
51
|
</el-table-column>
|
|
52
|
52
|
<el-table-column label="操作" width="200" align="center" class-name="oparate_btn" fixed="right">
|
|
53
|
53
|
<template slot-scope="scope">
|
|
54
|
54
|
<el-button v-if="scope.row.F_EnableFlag==1" type="danger" plain @click="onOff(scope.row.F_UserId)">禁用
|
|
55
|
55
|
</el-button>
|
|
56
|
|
- <el-button v-if="scope.row.F_EnableFlag==0" type="success" plain @click="onOpen(scope.row.F_UserId)">启用
|
|
|
56
|
+ <el-button v-if="scope.row.F_EnableFlag==0 || scope.row.F_EnableFlag==2" type="success" plain @click="onOpen(scope.row.F_UserId)">启用
|
|
57
|
57
|
</el-button>
|
|
58
|
58
|
<el-button
|
|
59
|
59
|
v-permission="'edit_userManage'"
|