代码导入
This commit is contained in:
364
src/views/system/terminalUser/index.vue
Normal file
364
src/views/system/terminalUser/index.vue
Normal file
@@ -0,0 +1,364 @@
|
||||
<template>
|
||||
<div class="system-terminal-user">
|
||||
<el-card v-show="showSearch" style="margin-bottom: 10px">
|
||||
<el-form @submit.native.prevent :model="queryParams" ref="queryForm" :inline="true" size="mini" label-width="68px" style="margin-bottom: -18px">
|
||||
<el-form-item :label="$t('user.index.098976-10')" prop="userName">
|
||||
<el-input v-model="queryParams.userName" :placeholder="$t('user.index.098976-2')" clearable @keyup.enter.native="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('user.index.098976-13')" prop="phonenumber">
|
||||
<el-input v-model="queryParams.phonenumber" :placeholder="$t('user.index.098976-18')" clearable @keyup.enter.native="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('status')" prop="status">
|
||||
<el-select v-model="queryParams.status" :placeholder="$t('user.index.098976-6')" clearable style="width: 100%">
|
||||
<el-option v-for="dict in dict.type.sys_normal_disable" :key="dict.value" :label="dict.label" :value="dict.value" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item style="float: right">
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">{{ $t('search') }}</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">{{ $t('reset') }}</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-card>
|
||||
|
||||
<el-card>
|
||||
<el-row :gutter="10" style="margin-bottom: 15px">
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="userList" :border="false">
|
||||
<el-table-column :label="$t('user.index.098976-10')" align="center" key="userName" prop="userName" v-if="columns[1].visible" :show-overflow-tooltip="true" min-width="200" />
|
||||
<el-table-column :label="$t('user.index.098976-11')" align="center" key="nickName" prop="nickName" v-if="columns[2].visible" :show-overflow-tooltip="true" min-width="200" />
|
||||
<el-table-column :label="$t('user.index.098976-13')" align="left" key="phonenumber" prop="phonenumber" v-if="columns[3].visible" width="120" />
|
||||
<el-table-column :label="$t('status')" align="center" key="status" v-if="columns[4].visible" width="90">
|
||||
<template slot-scope="scope">
|
||||
<el-switch v-model="scope.row.status" active-value="0" inactive-value="1" @change="handleStatusChange(scope.row)"></el-switch>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column :label="$t('creatTime')" align="center" prop="createTime" v-if="columns[6].visible" width="170">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.createTime) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column fixed="right" :label="$t('opation')" align="center" class-name="small-padding fixed-width" width="280">
|
||||
<template slot-scope="scope" v-if="scope.row.userId !== 1">
|
||||
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['system:user:edit']">{{ $t('update') }}</el-button>
|
||||
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['system:user:remove']">{{ $t('del') }}</el-button>
|
||||
<el-button size="mini" type="text" icon="el-icon-key" v-hasPermi="['system:user:resetPwd']" @click="handleResetPwd(scope.row)">{{ $t('user.index.098976-15') }}</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<pagination style="margin-bottom: 20px" v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
|
||||
</el-card>
|
||||
|
||||
<!-- 添加或修改用户配置对话框 -->
|
||||
<el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
|
||||
<div style="margin-top: -55px">
|
||||
<el-divider style="margin-top: -30px"></el-divider>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||
<el-form-item :label="$t('user.index.098976-11')" prop="nickName">
|
||||
<el-input v-model="form.nickName" :placeholder="$t('user.index.098976-16')" maxlength="30" />
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('user.index.098976-13')" prop="phonenumber">
|
||||
<el-input v-model="form.phonenumber" :placeholder="$t('user.index.098976-18')" maxlength="11" />
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('user.index.098976-19')" prop="email">
|
||||
<el-input v-model="form.email" :placeholder="$t('user.index.098976-20')" maxlength="50" />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="form.userId == undefined" :label="$t('user.index.098976-10')" prop="userName">
|
||||
<el-input v-model="form.userName" :placeholder="$t('user.index.098976-2')" maxlength="30" />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="form.userId == undefined" :label="$t('role.selectUser.093468-2')" prop="password">
|
||||
<el-input v-model="form.password" :placeholder="$t('user.index.098976-22')" type="password" maxlength="20" show-password />
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('status')" prop="status">
|
||||
<el-radio-group v-model="form.status">
|
||||
<el-radio v-for="dict in dict.type.sys_normal_disable" :key="dict.value" :label="dict.value">{{ dict.label }}</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('role.selectUser.093468-3')" prop="roleIds">
|
||||
<el-select v-model="form.roleIds" multiple :placeholder="$t('role.selectUser.093468-4')" style="width: 100%" :disabled="this.form.userId != undefined">
|
||||
<el-option v-for="item in roleOptions" :key="item.roleId" :label="item.roleName" :value="item.roleId" :disabled="item.status == 1"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('remark')">
|
||||
<el-input v-model="form.remark" type="textarea" :placeholder="$t('plzInput')"></el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">{{ $t('confirm') }}</el-button>
|
||||
<el-button @click="cancel">{{ $t('cancel') }}</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { terminalUserList, getUser, delUser, addUser, updateUser, resetUserPwd, changeUserStatus, deptsTreeSelect, getRole } from '@/api/system/user';
|
||||
import { getToken } from '@/utils/auth';
|
||||
import Treeselect from '@riophae/vue-treeselect';
|
||||
import '@riophae/vue-treeselect/dist/vue-treeselect.css';
|
||||
|
||||
export default {
|
||||
name: 'User',
|
||||
dicts: ['sys_normal_disable', 'sys_user_sex'],
|
||||
components: { Treeselect },
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 用户表格数据
|
||||
userList: null,
|
||||
// 弹出层标题
|
||||
title: '',
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 默认密码
|
||||
initPassword: undefined,
|
||||
// 角色选项
|
||||
roleOptions: [],
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
userName: undefined,
|
||||
phonenumber: undefined,
|
||||
status: undefined,
|
||||
deptId: undefined,
|
||||
},
|
||||
//用户类型
|
||||
options: [
|
||||
{
|
||||
value: true,
|
||||
label: this.$t('user.index.098976-28'),
|
||||
},
|
||||
{
|
||||
value: false,
|
||||
label: this.$t('user.index.098976-29'),
|
||||
},
|
||||
],
|
||||
|
||||
// 列信息
|
||||
columns: [
|
||||
{ key: 0, label: this.$t('user.index.098976-30'), visible: true },
|
||||
{ key: 1, label: this.$t('user.index.098976-10'), visible: true },
|
||||
{ key: 2, label: this.$t('user.index.098976-11'), visible: true },
|
||||
{ key: 3, label: this.$t('user.index.098976-29'), visible: true },
|
||||
{ key: 4, label: this.$t('user.index.098976-13'), visible: true },
|
||||
{ key: 5, label: this.$t('status'), visible: true },
|
||||
{ key: 6, label: this.$t('creatTime'), visible: true },
|
||||
],
|
||||
// 表单校验
|
||||
rules: {
|
||||
userName: [
|
||||
{ required: true, message: this.$t('user.index.098976-31'), trigger: 'blur' },
|
||||
{ min: 2, max: 20, message: this.$t('user.index.098976-32'), trigger: 'blur' },
|
||||
],
|
||||
nickName: [{ required: true, message: this.$t('user.index.098976-33'), trigger: 'blur' }],
|
||||
password: [
|
||||
{ required: true, message: this.$t('user.index.098976-34'), trigger: 'blur' },
|
||||
{ min: 5, max: 20, message: this.$t('user.index.098976-35'), trigger: 'blur' },
|
||||
],
|
||||
roleIds: [{ required: true, message: this.$t('user.index.098976-36'), trigger: 'change' }],
|
||||
status: [{ required: true }],
|
||||
email: [
|
||||
{
|
||||
type: 'email',
|
||||
message: this.$t('user.index.098976-37'),
|
||||
trigger: ['blur', 'change'],
|
||||
},
|
||||
],
|
||||
phonenumber: [
|
||||
{ required: true, message: this.$t('user.index.098976-38'), trigger: 'blur' },
|
||||
{
|
||||
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
|
||||
message: this.$t('user.index.098976-39'),
|
||||
trigger: 'blur',
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
// 根据名称筛选机构树
|
||||
deptName(val) {
|
||||
this.$refs.tree.filter(val);
|
||||
},
|
||||
},
|
||||
created() {
|
||||
const deptId = this.$route.params && this.$route.params.deptId;
|
||||
if (deptId) {
|
||||
this.queryParams.deptId = deptId;
|
||||
this.getList();
|
||||
} else {
|
||||
this.getList();
|
||||
}
|
||||
this.getConfigKey('sys.user.initPassword').then((response) => {
|
||||
this.initPassword = response.msg;
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
/** 查询用户列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
this.form.deptId = this.queryParams.deptId;
|
||||
terminalUserList(this.addDateRange(this.queryParams, this.dateRange)).then((response) => {
|
||||
this.userList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 用户状态修改
|
||||
handleStatusChange(row) {
|
||||
let text = row.status === '0' ? this.$t('simulate.index.111543-54') : this.$t('simulate.index.111543-55');
|
||||
this.$modal
|
||||
.confirm(this.$t('user.index.098976-40') + text + '""' + row.userName + this.$t('user.index.098976-41'))
|
||||
.then(function () {
|
||||
return changeUserStatus(row.userId, row.status);
|
||||
})
|
||||
.then(() => {
|
||||
this.$modal.msgSuccess(text + this.$t('success'));
|
||||
})
|
||||
.catch(function () {
|
||||
row.status = row.status === '0' ? '1' : '0';
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
userId: undefined,
|
||||
deptId: undefined,
|
||||
userName: undefined,
|
||||
nickName: undefined,
|
||||
password: undefined,
|
||||
phonenumber: undefined,
|
||||
email: undefined,
|
||||
sex: undefined,
|
||||
status: '0',
|
||||
remark: undefined,
|
||||
postIds: [],
|
||||
roleIds: [],
|
||||
};
|
||||
this.resetForm('form');
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.dateRange = [];
|
||||
this.resetForm('queryForm');
|
||||
this.queryParams.deptId = undefined;
|
||||
this.$refs.tree.setCurrentKey(null);
|
||||
this.handleQuery();
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
getUser().then((response) => {
|
||||
this.roleOptions = response.roles;
|
||||
this.open = true;
|
||||
this.title = this.$t('user.index.098976-42');
|
||||
this.form.deptId = this.queryParams.deptId;
|
||||
this.form.password = this.initPassword;
|
||||
});
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const userId = row.userId || this.ids;
|
||||
getUser(userId).then((response) => {
|
||||
this.idEditDept = row.deptId;
|
||||
this.form = response.data;
|
||||
this.roleOptions = response.roles;
|
||||
this.$set(this.form, 'postIds', response.postIds);
|
||||
this.$set(this.form, 'roleIds', response.roleIds);
|
||||
this.open = true;
|
||||
this.title = this.$t('user.index.098976-43');
|
||||
this.form.password = '';
|
||||
});
|
||||
},
|
||||
// 根据机构查询角色列表
|
||||
getRoleList(node) {
|
||||
this.form.deptId = node.id;
|
||||
if (this.form.deptId != undefined && this.form.deptId != null) {
|
||||
const deptId = this.form.deptId;
|
||||
getRole(deptId).then((response) => {
|
||||
this.roleOptions = response.roles;
|
||||
});
|
||||
}
|
||||
},
|
||||
/** 重置密码按钮操作 */
|
||||
handleResetPwd(row) {
|
||||
this.$prompt(this.$t('user.index.098976-44') + row.userName + this.$t('user.index.098976-45'), this.$t('user.index.098976-46'), {
|
||||
confirmButtonText: this.$t('confirm'),
|
||||
cancelButtonText: this.$t('cancel'),
|
||||
closeOnClickModal: false,
|
||||
inputPattern: /^.{5,20}$/,
|
||||
inputErrorMessage: this.$t('user.index.098976-35'),
|
||||
})
|
||||
.then(({ value }) => {
|
||||
resetUserPwd(row.userId, value).then((response) => {
|
||||
this.$modal.msgSuccess(this.$t('user.index.098976-47') + value);
|
||||
});
|
||||
})
|
||||
.catch(() => {});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm: function () {
|
||||
this.$refs['form'].validate((valid) => {
|
||||
if (valid) {
|
||||
if (this.form.userId != undefined) {
|
||||
updateUser(this.form).then((response) => {
|
||||
this.$modal.msgSuccess(this.$t('updateSuccess'));
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addUser(this.form).then((response) => {
|
||||
this.$modal.msgSuccess(this.$t('addSuccess'));
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const userIds = row.userId || this.ids;
|
||||
this.$modal
|
||||
.confirm(this.$t('user.index.098976-48', [userIds]))
|
||||
.then(function () {
|
||||
return delUser(userIds);
|
||||
})
|
||||
.then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess(this.$t('delSuccess'));
|
||||
})
|
||||
.catch(() => {});
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.system-terminal-user {
|
||||
padding: 20px;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user