devicesmgt/sgzb-ui/src/views/store/tools/keeper.vue

512 lines
15 KiB
Vue
Raw Normal View History

2023-12-12 13:36:08 +08:00
<template>
2024-01-22 09:18:46 +08:00
<div class="app-container" id="keeper">
2023-12-12 13:36:08 +08:00
<el-row :gutter="20">
<!--部门数据-->
<el-col :span="4" :xs="24">
<div class="head-container">
<el-input
2024-04-25 16:00:19 +08:00
v-model="userName"
placeholder="请输入人员名称"
clearable
maxlength="50"
size="small"
@input="getTree"
prefix-icon="el-icon-search"
style="margin-bottom: 20px"
2023-12-12 13:36:08 +08:00
/>
</div>
<div class="head-container">
<el-tree
2024-04-25 16:00:19 +08:00
:data="treeOptions"
:props="defaultProps"
:expand-on-click-node="false"
:filter-node-method="filterNode"
ref="tree"
node-key="id"
default-expand-all
highlight-current
@node-click="handleNodeClick"
2023-12-12 13:36:08 +08:00
/>
</div>
2023-12-20 20:29:06 +08:00
<!-- <div style="margin:30px;">
2023-12-12 13:36:08 +08:00
<el-button > </el-button>
<el-button type="primary"> </el-button>
2023-12-20 20:29:06 +08:00
</div> -->
2023-12-12 13:36:08 +08:00
</el-col>
<!--用户数据-->
<el-col :span="20" :xs="24">
2024-04-25 16:00:19 +08:00
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="类型名称" prop="typeName">
2023-12-12 13:36:08 +08:00
<el-input
2024-04-25 16:00:19 +08:00
v-model="queryParams.typeName"
placeholder="请输入类型名称"
clearable
maxlength="50"
style="width: 240px"
@keyup.enter.native="handleQuery"
2023-12-12 13:36:08 +08:00
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">查询</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
2024-04-25 16:00:19 +08:00
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleSave">保存</el-button>
2023-12-12 13:36:08 +08:00
</el-col>
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
<!-- type="success"-->
<!-- plain-->
<!-- icon="el-icon-edit"-->
<!-- size="mini"-->
<!-- :disabled="single"-->
<!-- @click="handleUpdate"-->
<!-- v-hasPermi="['system:user:edit']"-->
<!-- >修改</el-button>-->
<!-- </el-col>-->
<el-col :span="1.5">
2024-04-25 16:00:19 +08:00
<el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete">
解绑
</el-button>
2023-12-12 13:36:08 +08:00
</el-col>
2023-12-19 04:26:18 +08:00
<!-- <el-col :span="1.5">
2023-12-12 13:36:08 +08:00
<el-button
type="info"
plain
icon="el-icon-upload2"
size="mini"
@click="handleImport"
v-hasPermi="['system:user:import']"
>导入</el-button>
</el-col> -->
2023-12-12 13:36:08 +08:00
<el-col :span="1.5">
2024-04-25 16:00:19 +08:00
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport">导出</el-button>
</el-col>
2023-12-12 13:36:08 +08:00
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
</el-row>
2023-12-16 23:00:28 +08:00
<el-table v-loading="loading" :data="equipmentList" @selection-change="handleSelectionChange">
2023-12-12 13:36:08 +08:00
<el-table-column type="selection" width="50" align="center" />
2023-12-19 04:26:18 +08:00
<el-table-column label="序号" align="center" type="index" width="100" />
2023-12-12 13:36:08 +08:00
<el-table-column
2024-04-25 16:00:19 +08:00
label="种类名称"
align="center"
key="kindName"
prop="kindName"
v-if="columns[1].visible"
:show-overflow-tooltip="true"
/>
<el-table-column
label="类型名称"
align="center"
key="typeName"
prop="typeName"
v-if="columns[2].visible"
:show-overflow-tooltip="true"
/>
<el-table-column
label="规格型号"
align="center"
key="modelName"
prop="modelName"
v-if="columns[3].visible"
:show-overflow-tooltip="true"
/>
<el-table-column
label="库管员"
align="center"
key="userName"
prop="userName"
v-if="columns[4].visible"
width="200"
/>
<el-table-column label="操作" align="center" width="160" class-name="small-padding fixed-width">
2023-12-12 13:36:08 +08:00
<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']"-->
<!-- >修改</el-button>-->
2024-04-25 16:00:19 +08:00
<el-button size="mini" type="danger" icon="el-icon-delete" @click="handleDelete(scope.row)">
解绑
</el-button>
2023-12-12 13:36:08 +08:00
</template>
</el-table-column>
</el-table>
<pagination
2024-04-25 16:00:19 +08:00
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
2023-12-12 13:36:08 +08:00
/>
</el-col>
</el-row>
</div>
</template>
<script>
2024-04-25 16:00:19 +08:00
import {
listUser,
getUser,
delUser,
addUser,
updateUser,
resetUserPwd,
changeUserStatus,
deptTreeSelect,
} from '@/api/system/user'
import { warehouseKeeperInfoAll, getMaUserList, addHouseKeeper, delHouseKeeper } from '@/api/store/tools'
2023-12-16 23:00:28 +08:00
2024-04-25 16:00:19 +08:00
import { getToken } from '@/utils/auth'
import Treeselect from '@riophae/vue-treeselect'
import '@riophae/vue-treeselect/dist/vue-treeselect.css'
2023-12-12 13:36:08 +08:00
export default {
2024-04-25 16:00:19 +08:00
name: 'Keeper',
2023-12-12 13:36:08 +08:00
dicts: ['sys_normal_disable', 'sys_user_sex'],
components: { Treeselect },
data() {
return {
// 遮罩层
loading: true,
2023-12-19 04:26:18 +08:00
userName: undefined,
2023-12-12 13:36:08 +08:00
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 用户表格数据
2023-12-16 23:00:28 +08:00
equipmentList: null,
2023-12-12 13:36:08 +08:00
// 弹出层标题
2024-04-25 16:00:19 +08:00
title: '',
2023-12-12 13:36:08 +08:00
// 部门树选项
2023-12-16 23:00:28 +08:00
treeOptions: undefined,
2023-12-12 13:36:08 +08:00
// 是否显示弹出层
open: false,
// 部门名称
deptName: undefined,
// 默认密码
initPassword: undefined,
// 日期范围
dateRange: [],
// 岗位选项
postOptions: [],
// 角色选项
roleOptions: [],
// 表单参数
form: {},
2023-12-19 04:26:18 +08:00
//选中库管员Id
2024-04-25 16:00:19 +08:00
chosenUserId: '',
2023-12-12 13:36:08 +08:00
defaultProps: {
2024-04-25 16:00:19 +08:00
children: 'children',
label: 'userName',
2023-12-12 13:36:08 +08:00
},
// 用户导入参数
upload: {
// 是否显示弹出层(用户导入)
open: false,
// 弹出层标题(用户导入)
2024-04-25 16:00:19 +08:00
title: '',
2023-12-12 13:36:08 +08:00
// 是否禁用上传
isUploading: false,
// 是否更新已经存在的用户数据
updateSupport: 0,
// 设置上传的请求头部
2024-04-25 16:00:19 +08:00
headers: { Authorization: 'Bearer ' + getToken() },
2023-12-12 13:36:08 +08:00
// 上传的地址
2024-04-25 16:00:19 +08:00
url: process.env.VUE_APP_BASE_API + '/system/user/importData',
2023-12-12 13:36:08 +08:00
},
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
userName: undefined,
phonenumber: undefined,
status: undefined,
2024-04-25 16:00:19 +08:00
deptId: undefined,
2023-12-12 13:36:08 +08:00
},
// 列信息
columns: [
{ key: 0, label: `用户编号`, visible: true },
{ key: 1, label: `用户名称`, visible: true },
{ key: 2, label: `用户昵称`, visible: true },
{ key: 3, label: `部门`, visible: true },
{ key: 4, label: `手机号码`, visible: true },
{ key: 5, label: `状态`, visible: true },
2024-04-25 16:00:19 +08:00
{ key: 6, label: `创建时间`, visible: true },
2023-12-12 13:36:08 +08:00
],
// 表单校验
rules: {
userName: [
2024-04-25 16:00:19 +08:00
{ required: true, message: '用户名称不能为空', trigger: 'blur' },
{ min: 2, max: 20, message: '用户名称长度必须介于 2 和 20 之间', trigger: 'blur' },
2023-12-12 13:36:08 +08:00
],
2024-04-25 16:00:19 +08:00
nickName: [{ required: true, message: '用户昵称不能为空', trigger: 'blur' }],
2023-12-12 13:36:08 +08:00
password: [
2024-04-25 16:00:19 +08:00
{ required: true, message: '用户密码不能为空', trigger: 'blur' },
{ min: 5, max: 20, message: '用户密码长度必须介于 5 和 20 之间', trigger: 'blur' },
2023-12-12 13:36:08 +08:00
],
email: [
{
2024-04-25 16:00:19 +08:00
type: 'email',
message: '请输入正确的邮箱地址',
trigger: ['blur', 'change'],
},
2023-12-12 13:36:08 +08:00
],
phonenumber: [
{
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
2024-04-25 16:00:19 +08:00
message: '请输入正确的手机号码',
trigger: 'blur',
},
],
},
}
2023-12-12 13:36:08 +08:00
},
watch: {
// 根据名称筛选部门树
deptName(val) {
2024-04-25 16:00:19 +08:00
this.$refs.tree.filter(val)
},
2023-12-12 13:36:08 +08:00
},
created() {
2024-04-25 16:00:19 +08:00
this.getList()
this.getTree()
2023-12-12 13:36:08 +08:00
},
methods: {
2023-12-19 04:26:18 +08:00
/** 查询列表 */
2023-12-12 13:36:08 +08:00
getList() {
2024-04-25 16:00:19 +08:00
this.loading = true
console.log(this.queryParams)
2023-12-16 23:00:28 +08:00
warehouseKeeperInfoAll(this.queryParams).then(response => {
2024-04-25 16:00:19 +08:00
this.equipmentList = response.rows
this.total = response.total
this.loading = false
})
2023-12-12 13:36:08 +08:00
},
2023-12-19 04:26:18 +08:00
/** 查询下拉树结构 */
2023-12-16 23:00:28 +08:00
getTree() {
2024-04-25 16:00:19 +08:00
getMaUserList({ userName: this.userName }).then(response => {
this.treeOptions = this.handleTree(response.data, 'userId')
})
2023-12-12 13:36:08 +08:00
},
// 筛选节点
filterNode(value, data) {
2024-04-25 16:00:19 +08:00
if (!value) return true
return data.label.indexOf(value) !== -1
2023-12-12 13:36:08 +08:00
},
// 节点单击事件
handleNodeClick(data) {
2024-04-25 16:00:19 +08:00
this.chosenUserId = data.userId
this.queryParams.userId = data.userId
this.handleQuery()
2023-12-12 13:36:08 +08:00
},
// 用户状态修改
handleStatusChange(row) {
2024-04-25 16:00:19 +08:00
let text = row.status === '0' ? '启用' : '停用'
this.$modal
.confirm('确认要"' + text + '""' + row.userName + '"用户吗?')
.then(function () {
return changeUserStatus(row.userId, row.status)
})
.then(() => {
this.$modal.msgSuccess(text + '成功')
})
.catch(function () {
row.status = row.status === '0' ? '1' : '0'
})
2023-12-12 13:36:08 +08:00
},
// 取消按钮
cancel() {
2024-04-25 16:00:19 +08:00
this.open = false
this.reset()
2023-12-12 13:36:08 +08:00
},
// 表单重置
reset() {
this.form = {
userId: undefined,
deptId: undefined,
userName: undefined,
nickName: undefined,
password: undefined,
phonenumber: undefined,
email: undefined,
sex: undefined,
2024-04-25 16:00:19 +08:00
status: '0',
2023-12-12 13:36:08 +08:00
remark: undefined,
postIds: [],
2024-04-25 16:00:19 +08:00
roleIds: [],
}
this.resetForm('form')
2023-12-12 13:36:08 +08:00
},
/** 搜索按钮操作 */
handleQuery() {
2024-04-25 16:00:19 +08:00
this.queryParams.pageNum = 1
this.getList()
2023-12-12 13:36:08 +08:00
},
/** 重置按钮操作 */
resetQuery() {
2024-04-25 16:00:19 +08:00
this.dateRange = []
this.resetForm('queryForm')
this.queryParams.deptId = undefined
this.$refs.tree.setCurrentKey(null)
this.handleQuery()
2023-12-12 13:36:08 +08:00
},
// 多选框选中数据
handleSelectionChange(selection) {
2024-04-25 16:00:19 +08:00
this.ids = selection.map(item => item.modelId)
this.single = selection.length != 1
this.multiple = !selection.length
2023-12-12 13:36:08 +08:00
},
/** 新增按钮操作 */
2023-12-19 04:26:18 +08:00
handleSave() {
console.log(this.chosenUserId)
2024-04-25 16:00:19 +08:00
console.log(this.ids, 'ids')
if (this.chosenUserId && this.ids.length > 0) {
2023-12-19 04:26:18 +08:00
let param = {
2024-04-25 16:00:19 +08:00
userId: this.chosenUserId,
typeIds: this.ids.join('@'),
2023-12-19 04:26:18 +08:00
}
console.log(param)
addHouseKeeper(param).then(response => {
2024-04-25 16:00:19 +08:00
if (response.code == 200) {
this.$message({
message: '操作成功',
type: 'success',
})
this.getList()
}
})
} else {
2023-12-19 04:26:18 +08:00
this.$message({
2024-04-25 16:00:19 +08:00
message: '请先选择库管员,勾选设备类型后,再保存!',
type: 'warning',
})
2023-12-19 04:26:18 +08:00
}
},
2024-04-25 16:00:19 +08:00
/** 删除按钮操作 */
handleDelete(row) {
2023-12-19 04:26:18 +08:00
let param = {
2024-04-25 16:00:19 +08:00
type: '1',
typeIds: row?.modelId + '',
2023-12-19 04:26:18 +08:00
}
2024-04-25 16:00:19 +08:00
if (this.ids.length >= 1) {
2023-12-19 04:26:18 +08:00
param = {
2024-04-25 16:00:19 +08:00
type: '2',
typeIds: this.ids.join('@'),
2023-12-19 04:26:18 +08:00
}
}
console.log(param)
2024-04-25 16:00:19 +08:00
this.$modal
.confirm('是否确认解绑数据项?')
.then(function () {
return delHouseKeeper(param)
})
.then(() => {
this.getList()
this.$modal.msgSuccess('解绑成功')
})
.catch(() => {})
2023-12-12 13:36:08 +08:00
},
/** 修改按钮操作 */
handleUpdate(row) {
2024-04-25 16:00:19 +08:00
this.reset()
const userId = row.userId || this.ids
2023-12-12 13:36:08 +08:00
getUser(userId).then(response => {
2024-04-25 16:00:19 +08:00
this.form = response.data
this.postOptions = response.posts
this.roleOptions = response.roles
this.$set(this.form, 'postIds', response.postIds)
this.$set(this.form, 'roleIds', response.roleIds)
this.open = true
this.title = '修改用户'
this.form.password = ''
})
2023-12-12 13:36:08 +08:00
},
/** 提交按钮 */
2024-04-25 16:00:19 +08:00
submitForm: function () {
this.$refs['form'].validate(valid => {
2023-12-12 13:36:08 +08:00
if (valid) {
if (this.form.userId != undefined) {
updateUser(this.form).then(response => {
2024-04-25 16:00:19 +08:00
this.$modal.msgSuccess('修改成功')
this.open = false
this.getList()
})
2023-12-12 13:36:08 +08:00
} else {
addUser(this.form).then(response => {
2024-04-25 16:00:19 +08:00
this.$modal.msgSuccess('新增成功')
this.open = false
this.getList()
})
2023-12-12 13:36:08 +08:00
}
}
2024-04-25 16:00:19 +08:00
})
2023-12-12 13:36:08 +08:00
},
2024-04-25 16:00:19 +08:00
2023-12-12 13:36:08 +08:00
/** 导出按钮操作 */
handleExport() {
// this.download('system/user/export', {
// ...this.queryParams
// }, `user_${new Date().getTime()}.xlsx`)
2023-12-12 13:36:08 +08:00
},
/** 导入按钮操作 */
handleImport() {
2024-04-25 16:00:19 +08:00
this.upload.title = '用户导入'
this.upload.open = true
2023-12-12 13:36:08 +08:00
},
/** 下载模板操作 */
importTemplate() {
2024-04-25 16:00:19 +08:00
this.download('system/user/importTemplate', {}, `user_template_${new Date().getTime()}.xlsx`)
2023-12-12 13:36:08 +08:00
},
// 文件上传中处理
handleFileUploadProgress(event, file, fileList) {
2024-04-25 16:00:19 +08:00
this.upload.isUploading = true
2023-12-12 13:36:08 +08:00
},
// 文件上传成功处理
handleFileSuccess(response, file, fileList) {
2024-04-25 16:00:19 +08:00
this.upload.open = false
this.upload.isUploading = false
this.$refs.upload.clearFiles()
this.$alert(
"<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" +
response.msg +
'</div>',
'导入结果',
{ dangerouslyUseHTMLString: true }
)
this.getList()
2023-12-12 13:36:08 +08:00
},
// 提交上传文件
submitFileForm() {
2024-04-25 16:00:19 +08:00
this.$refs.upload.submit()
},
},
}
2023-12-12 13:36:08 +08:00
</script>
2024-01-12 10:07:35 +08:00
<style lang="scss" scoped>
::v-deep.el-table .fixed-width .el-button--mini {
width: 60px !important;
margin-bottom: 10px;
}
2024-04-25 16:00:19 +08:00
</style>