1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<template>
<div class="hallDirectorPage H100">
<div class="head_box">
<h6>支行人员管理</h6>
<h4>支行人员管理</h4>
</div>
<div class="content_box">
<div class="form_box h778px" >
<el-form :inline="true" :model="form" class="search-form" onsubmit="return false;">
<el-form-item label="">
<el-input size="mini" placeholder="请输入账号/姓名" v-model="form.name" @keyup.enter.native="Search" clearable></el-input>
</el-form-item>
<el-form-item>
<el-button size="mini" type="primary" class="btn_form_search" @click="Search">查询</el-button>
</el-form-item>
</el-form>
<div class="scrool">
<el-table style="width:100%;" :data="tableData">
<el-table-column label="账号" show-overflow-tooltip prop="username" ></el-table-column>
<el-table-column label="角色" show-overflow-tooltip prop="roleName" ></el-table-column>
<el-table-column label="姓名" show-overflow-tooltip prop="name" ></el-table-column>
<el-table-column label="员工号" show-overflow-tooltip prop="code" ></el-table-column>
<el-table-column label="电话" show-overflow-tooltip prop="mobile" ></el-table-column>
<el-table-column label="归属网点" show-overflow-tooltip prop="bankBranchName" ></el-table-column>
<el-table-column label="状态" prop="status" >
<template slot-scope="scope">
<div class="statusBox">
<span class="active" :style="{'backgroundColor':(scope.row.status ? 'rgba(82,196,26,1)' :'rgba(0,0,0,0.25)')}"></span>
<span class="openKey">{{scope.row.status ? '启用':'禁用'}}</span>
</div>
</template>
</el-table-column>
<el-table-column label="操作" header-align="center" align="center" width="190">
<template slot-scope="scope">
<el-button-group>
<el-button title="" type="text" size="mini" @click="resetStatus(scope.row)">{{scope.row.status ? '禁用':'启用'}}</el-button>
</el-button-group>
</template>
</el-table-column>
</el-table>
</div>
<el-pagination small background
@current-change="handleCurrentChange"
:current-page="page.currentPage"
:page-size="page.pageSize"
layout="prev, pager, next"
:total="page.total">
</el-pagination>
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
bankBranchId: '',
logid: '',
form:{
name: '',
},
page: {
currentPage: 1, //当前页
pageSize: null, //每页条数
total: null, //总条数
},
tableData: [],
}
},
computed: {},
mounted() {
this.initData();
},
components: {},
methods: {
initData () {
this.bankBranchId = localStorage.getItem('bankBranchId');
this.logid = localStorage.getItem('userId');
this.onSearch();
},
// 获得数据接口
getTableData(param) {
let vm = this;
vm.$https({
url : "employee/selectOwnEmpList",
method: 'get',
authType: this.backToken
},param).then((res)=>{
let data = res.data;
vm.page.pageSize = data.size;
vm.page.total = data.total;
vm.tableData = data.records;
}).catch(function(err){
console.log(err);
})
},
// 分页
handleCurrentChange(val) {
let _this = this;
_this.page.currentPage = val;
_this.onSearch();
},
onSearch() {
let _this = this;
let param = _this.getSearchQuery();
_this.getTableData(param)
},
Search(){
let _this = this;
_this.page.currentPage = 1;
let searchObj = {
"_index": 1,
"_size": _this.page.pageSize,
"employName": _this.form.name,
"currBankID": _this.bankBranchId,
};
this.getTableData(searchObj);
},
// // 获取当前查询参数
getSearchQuery() {
let _this = this;
let searchObj = {
"_index": _this.page.currentPage,
"_size": _this.page.pageSize,
"employName": _this.form.name,
"currBankID": _this.bankBranchId,
};
return searchObj;
},
// 修改状态
resetStatus(row) {
let _this = this;
if(row.id == _this.logid){
_this.$message({type: 'error', message: '不可修改自己状态'});
}else{
let tipTitle = row.status == true?'确定要禁用该用户吗?':'确定要启用该用户吗?';
this.$confirm(tipTitle, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
let url = '';
if (row.status == false) {
url = 'employee/enable?employeeId=' + row.id +'&currBankId='+_this.bankBranchId;
} else {
url = 'employee/disable?employeeId=' + row.id;
}
_this.$https({
method: 'put',
url: url,
authType: this.backToken
}).then((res) => {
if(res.status == 201 || res.status == 200){
this.$message({type: 'success', message: res.data.message});
_this.onSearch();
}else{
this.$message({type: 'error', message: res.data.message});
_this.onSearch();
}
}, (error) => {
this.$message({type: 'fail', message: "设置失败!" + error.response.data});
}
)
}).catch(() => {
this.$message({type: 'info', message: '已取消'});
});
}
},
}
}
</script>
<style lang="less">
@import '../../style/common';
.hallDirectorPage{
.content_box{
.input_box{
width: 100%;
min-width: 815px;
margin-bottom: 32px;
.el-input, .el-select{
max-width:272px;
height:32px;
background:rgba(255,255,255,1);
border-radius:4px;
.el-input__inner{
height:32px;
}
}
.btn_form_search,.btn_form_add{
height: 32px;
text-align: center;
padding: 0 15px;
}
}
.scrool {
width: 100%;
height: calc(100% - 100px);
overflow-x: hidden;
overflow-y: scroll;
.el-table {
.el-table__header-wrapper {
.el-table__header {
.has-gutter tr th {
background: rgba(250, 250, 250, 1);
}
}
}
.el-table__body-wrapper {
width: 100%;
table tbody tr td {
padding: 6px 0px;
}
}
}
}
}
}
</style>