<template>
|
<div class="userList">
|
<header>
|
<div class="headerContent">
|
<div class="search">
|
<span>筛选条件:</span>
|
<el-input placeholder="请输入内容" v-model="search"></el-input>
|
<div class="findBtn">
|
<el-button type="primary" @click="getUserList">查询</el-button>
|
</div>
|
</div>
|
<div class="addUser">
|
<el-button class="addBtn" type="primary" @click="dialogCreate = true">添加用户</el-button>
|
<el-dialog :visible.sync="dialogCreate" title="新增账户" width="45%" v-if="dialogCreate"
|
:before-close="handleClose1">
|
<createUser :refresh="getUserList" />
|
</el-dialog>
|
</div>
|
</div>
|
</header>
|
<main>
|
<div class="mainContent">
|
<!-- 数据展示 -->
|
<el-table ref="multipleTable"
|
:header-cell-style="{background:'#06122c','font-size':'12px',color:'#4b9bb7','font-weight':'650','line-height':'45px'}"
|
:data="tableData" style="width: 100%" :row-class-name="tableRowClassName">
|
<el-table-column type="selection" min-width="5">
|
</el-table-column>
|
<el-table-column label="用户ID" min-width="5">
|
<template slot-scope="scope">{{ scope.row.id }}</template>
|
</el-table-column>
|
<el-table-column prop="nickName" label="用户名称" min-width="10">
|
</el-table-column>
|
<el-table-column prop="username" label="所属姓名" min-width="10">
|
</el-table-column>
|
<el-table-column prop="mobile" label="联系方式" min-width="10">
|
</el-table-column>
|
<el-table-column prop="note" label="所属角色" min-width="10">
|
</el-table-column>
|
<el-table-column prop="departName" label="所属部门" min-width="10">
|
</el-table-column>
|
<el-table-column prop="jobTitle" label="所属职务" min-width="10">
|
</el-table-column>
|
<el-table-column prop="createTime" label="创建时间" min-width="10">
|
</el-table-column>
|
<el-table-column prop="status" label="启用" min-width="5">
|
<template slot-scope="scope">
|
<el-switch class="switchStyle" v-model="scope.row.status" active-text="开" inactive-text="关"
|
active-color="#3fef9a" inactive-color="#000212" @change="handleChangeStatus(scope.row)">
|
</el-switch>
|
</template>
|
</el-table-column>
|
<el-table-column prop="operation" label="操作" min-width="15">
|
<template slot-scope="scope">
|
<div class="operation">
|
<!-- <span @click="handleChangeRole(scope.row)">修改角色</span> -->
|
<span @click="handleFind(scope.row)">查看</span>
|
<span class="line">|</span>
|
<!-- <span>修改密码</span> -->
|
<!-- <span>删除</span> -->
|
<span @click="handleUpdate(scope.row)">修改部门</span>
|
</div>
|
</template>
|
</el-table-column>
|
</el-table>
|
<!-- 查看修改页面 -->
|
<el-dialog :visible.sync="dialogUpdate" width="45%" v-if="dialogUpdate"
|
:before-close="handleClose2" :title="updateFlag ? '修改用户部门信息' :'查看用户信息'">
|
<updateUser :updateFlag="updateFlag" :userInfo=userInfo />
|
</el-dialog>
|
<!-- 分页 -->
|
<div class="pagination">
|
<el-pagination background :current-page="currentPage" layout="prev, pager, next" :total="totalNum"
|
:page-size="pageSize" @current-change="changeCurrentPage" @prev-click="handlePrev"
|
@next-click="handleNext">
|
</el-pagination>
|
</div>
|
</div>
|
</main>
|
</div>
|
</template>
|
<script>
|
import createUser from "./createUser"
|
import updateUser from "./updateUser"
|
import helper from "@/utils/mydate.js"
|
export default {
|
components: {
|
createUser, updateUser
|
},
|
data() {
|
return {
|
tableData: [],
|
search: "",
|
dialogCreate: false,
|
dialogUpdate: false,
|
updateFlag: false,
|
userInfo: '',
|
totalNum: 200,
|
pageSize: 10,
|
currentPage: 1,
|
}
|
},
|
created() {
|
this.getUserList();
|
},
|
methods: {
|
// 修改角色
|
handleChangeRole(obj) {
|
this.dialogUpdate = true
|
this.user = obj;
|
// console.log(obj)
|
},
|
// 修改用户状态
|
handleChangeStatus(obj) {
|
let { id, status } = obj;
|
status == true ? status = 1 : status = 0;
|
console.log(id, status);
|
this.$axios.post(`sccg/admin/updateStatus/` + id + '?status=' + status).then(res => {
|
console.log(res);
|
})
|
},
|
// 获取用户列表
|
getUserList() {
|
const that = this;
|
const { currentPage, pageSize, search } = this;
|
this.dialogCreate = false;
|
// 获取所有用户信息、用户查询(暂时支持电话号码)
|
this.$axios.get(`sccg/admin/list?mobile=${search}¤t=${currentPage}&pageSize=${pageSize}`).then(res => {
|
if (res.code === 200) {
|
res.data.records.forEach(item => {
|
item.createTime = helper(item.createTime);
|
item.status == 1 ? item.status = true : item.status = false;
|
})
|
that.totalNum = res.data.pages * pageSize;
|
that.tableData = res.data.records;
|
}
|
})
|
},
|
// 设置表格斑马纹
|
tableRowClassName({ row, rowIndex }) {
|
if ((rowIndex + 1) % 2 == 0) {
|
return 'warning-row';
|
} else {
|
return 'success-row';
|
}
|
return '';
|
},
|
// 查看用户信息(不可修改)
|
handleFind(rowData) {
|
this.dialogUpdate = true;
|
this.updateFlag = false;
|
this.userInfo = rowData;
|
},
|
// 修改用户部门信息
|
handleUpdate(rowData) {
|
this.dialogUpdate = true;
|
this.updateFlag = true;
|
this.userInfo = rowData
|
},
|
// 当前页改变触发事件
|
changeCurrentPage(page) {
|
this.currentPage = page;
|
this.getUserList();
|
},
|
// 上一页点击事件
|
handlePrev(page) {
|
this.currentPage = page;
|
this.getUserList();
|
},
|
// 下一页点击事件
|
handleNext(page) {
|
this.currentPage = page;
|
this.getUserList();
|
},
|
// 创建弹窗关闭
|
handleClose1(done) {
|
const that = this;
|
this.$confirm('确认关闭?')
|
.then(_ => {
|
that.dialogCreate = false;
|
done();
|
})
|
.catch(_ => { });
|
},
|
// 查看弹窗关闭
|
handleClose2(done) {
|
const that = this;
|
this.$confirm('确认关闭?')
|
.then(_ => {
|
this.dialogUpdate = false;
|
done();
|
})
|
.catch(_ => { });
|
}
|
// 用户查询(暂时支持电话号码)
|
// handlePhone() {
|
// const { search, getUserList } = this;
|
// if (search == '') {
|
// getUserList();
|
// return;
|
// }
|
// this.handlePhoneSearch(search);
|
// },
|
// handlePhoneSearch(search){
|
// this.dialogCreate = false;
|
// const that = this;
|
// // 获取手机号用户信息
|
// this.$axios.get(`sccg/admin/list?mobile=${search}`).then(res => {
|
// if (res.code === 200) {
|
// res.data.records.forEach(item => {
|
// item.createTime = helper(item.createTime);
|
// item.status == 1 ? item.status = true : item.status = false;
|
// })
|
// that.totalNum = res.data.records.length;
|
// that.tableData = res.data.records.slice((that.currentPage - 1) * that.pageSize, that.currentPage * that.pageSize)
|
// }
|
// })
|
// }
|
}
|
}
|
</script>
|
<style lang="scss" scoped>
|
.userList {
|
text-align: left;
|
margin: 10px 20px;
|
color: #4b9bb7;
|
|
header {
|
background-color: #09152f;
|
border: 1pox solid #fff;
|
|
.headerContent {
|
padding: 0 40px;
|
display: flex;
|
line-height: 100px;
|
justify-content: space-between;
|
align-items: center;
|
|
.search {
|
display: flex;
|
justify-content: flex-start;
|
|
span {
|
flex: 1;
|
}
|
|
.el-input {
|
flex: 2;
|
color: #1d3f57;
|
|
&::v-deep .el-input__inner {
|
background-color: #09152f;
|
border: 1px solid #17324c;
|
}
|
}
|
|
}
|
|
.findBtn {
|
line-height: 100px;
|
margin-left: 15px;
|
display: flex;
|
align-items: center;
|
margin-top: -2px;
|
|
.el-button {
|
padding: 12px 25px;
|
border-radius: 20px;
|
}
|
}
|
|
.addBtn {
|
background-color: #eb5d01;
|
border: none;
|
border-radius: 20px;
|
padding: 12px 30px;
|
}
|
}
|
}
|
|
main {
|
background-color: #09152f;
|
margin-top: 20px;
|
padding-bottom: 50px;
|
border: 1pox solid #fff;
|
|
.mainTitle {
|
line-height: 60px;
|
}
|
|
.pagination {
|
margin-top: 50px;
|
display: flex;
|
line-height: 50px;
|
justify-content: center;
|
|
&::v-deep li,
|
&::v-deep .btn-prev,
|
&::v-deep .btn-next {
|
background-color: #071f39;
|
color: #4b9bb7;
|
}
|
}
|
|
.el-table {
|
color: #4b9bb7;
|
font-size: 10px;
|
|
&::v-deep .el-table__empty-block {
|
background-color: #09152f;
|
}
|
|
&::v-deep .el-table__empty-block {
|
color: #4b9bb7;
|
}
|
|
.operation {
|
display: flex;
|
|
.line {
|
padding: 0 5px;
|
}
|
|
span:hover {
|
cursor: pointer;
|
}
|
}
|
}
|
|
.el-table::v-deep .warning-row {
|
background: #06122c;
|
}
|
|
.el-table::v-deep .success-row {
|
background: #071f39;
|
}
|
|
&::v-deep .switchStyle .el-switch__label {
|
position: absolute;
|
display: none;
|
color: #fff;
|
}
|
|
&::v-deep .el-switch__core {
|
background-color: rgba(166, 166, 166, 1);
|
}
|
|
&::v-deep .switchStyle .el-switch__label--left {
|
z-index: 9;
|
left: 20px;
|
}
|
|
&::v-deep .switchStyle .el-switch__label--right {
|
z-index: 9;
|
left: 4px;
|
}
|
|
&::v-deep .switchStyle .el-switch__label.is-active {
|
display: block;
|
}
|
|
&::v-deep .switchStyle.el-switch .el-switch__core,
|
&::v-deep .el-switch .el-switch__label {
|
width: 50px !important;
|
}
|
}
|
|
&::v-deep .el-dialog__header,
|
&::v-deep .el-dialog__body {
|
background-color: #06122c;
|
}
|
&::v-deep .el-dialog__header{
|
display: flex;
|
align-items: center;
|
background-color: #fff;
|
padding: 20px;
|
line-height: 60px;
|
}
|
&::v-deep .el-dialog__title{
|
color: #4b9bb7;
|
}
|
&::v-deep .el-dialog__close{
|
width: 20px;
|
height: 20px;
|
// color: #fff;
|
}
|
&::v-deep .el-dialog__body{
|
padding: 0;
|
}
|
}
|
</style>
|