devicesmgt/sgzb-ui/src/views/base/assetAttributeAllocation/index.vue

409 lines
12 KiB
Vue
Raw Normal View History

2023-12-12 13:36:08 +08:00
<template>
<div class="app-container">
<el-row :gutter="20">
<!--部门数据-->
<el-col :span="4" :xs="24">
<div class="head-container">
<el-input
v-model="deptName"
placeholder="请输入部门名称"
clearable
size="small"
prefix-icon="el-icon-search"
style="margin-bottom: 20px"
/>
</div>
<div class="head-container">
<el-tree
:data="deptOptions"
:props="defaultProps"
:expand-on-click-node="false"
:filter-node-method="filterNode"
ref="tree"
node-key="id"
default-expand-all
highlight-current
@node-click="handleNodeClick"
/>
</div>
2023-12-16 23:00:28 +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-16 23:00:28 +08:00
</div> -->
2023-12-12 13:36:08 +08:00
</el-col>
<!--用户数据-->
<el-col :span="20" :xs="24">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="关键字" prop="userName">
<el-input
v-model="queryParams.userName"
placeholder="请输入关键字"
clearable
style="width: 240px"
@keyup.enter.native="handleQuery"
/>
</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">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
2023-12-16 23:00:28 +08:00
@click="handleSave"
2023-12-12 13:36:08 +08:00
>保存</el-button>
</el-col>
2023-12-16 23:00:28 +08:00
<!-- <el-col :span="1.5">
2023-12-12 13:36:08 +08:00
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
>删除</el-button>
2023-12-16 23:00:28 +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"
>导入</el-button>
</el-col> -->
2023-12-12 13:36:08 +08:00
<el-col :span="1.5">
<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-16 23:00:28 +08:00
<el-table-column label="名称" align="center" key="typeName" prop="typeName"/>
<el-table-column label="计量单位" align="center" key="unitName" prop="unitName" :show-overflow-tooltip="true" />
<el-table-column label="租赁价格" align="center" key="nickName" prop="leasePrice" :show-overflow-tooltip="true" />
<el-table-column label="原值" align="center" key="buyPrice" prop="dept.buyPrice" :show-overflow-tooltip="true" />
<el-table-column label="丢失赔偿价" align="center" key="payPrice" prop="payPrice" width="120" />
<el-table-column label="库管员" align="center" key="keeperUserName" prop="keeperUserName" width="120" />
<el-table-column label="图片" align="center" key="photoName" prop="photoName" width="120" />
<el-table-column label="文档资料" align="center" key="documentName" prop="documentName" width="120" />
<el-table-column label="资产属性" align="center" key="propName" prop="propName" width="120" />
<el-table-column label="备注信息" align="center" key="remark" prop="remark" width="120" />
2023-12-12 13:36:08 +08:00
<el-table-column
label="操作"
align="center"
width="160"
class-name="small-padding fixed-width"
>
<template slot-scope="scope" v-if="scope.row.userId !== 1">
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</el-col>
</el-row>
</div>
</template>
<script>
import { getToken } from "@/utils/auth";
2023-12-16 23:00:28 +08:00
import { getProLists,getMaTypeList,savePropInfo,UnbindPropInfo } from "@/api/base/base";
2023-12-12 13:36:08 +08:00
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 {
// 遮罩层
2023-12-16 23:00:28 +08:00
loading: false,
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,
chosenPropId: null,
2023-12-12 13:36:08 +08:00
// 弹出层标题
title: "",
// 部门树选项
deptOptions: undefined,
// 是否显示弹出层
open: false,
// 部门名称
deptName: undefined,
// 默认密码
initPassword: undefined,
// 日期范围
dateRange: [],
// 岗位选项
postOptions: [],
// 角色选项
roleOptions: [],
// 表单参数
form: {},
defaultProps: {
children: "children",
2023-12-16 23:00:28 +08:00
label: "propName"
2023-12-12 13:36:08 +08:00
},
// 用户导入参数
upload: {
// 是否显示弹出层(用户导入)
open: false,
// 弹出层标题(用户导入)
title: "",
// 是否禁用上传
isUploading: false,
// 是否更新已经存在的用户数据
updateSupport: 0,
// 设置上传的请求头部
headers: { Authorization: "Bearer " + getToken() },
// 上传的地址
url: process.env.VUE_APP_BASE_API + "/system/user/importData"
},
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
userName: undefined,
phonenumber: undefined,
status: undefined,
deptId: undefined
},
// 列信息
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 },
{ key: 6, label: `创建时间`, visible: true }
],
// 表单校验
rules: {
userName: [
{ required: true, message: "用户名称不能为空", trigger: "blur" },
{ min: 2, max: 20, message: '用户名称长度必须介于 2 和 20 之间', trigger: 'blur' }
],
nickName: [
{ required: true, message: "用户昵称不能为空", trigger: "blur" }
],
password: [
{ required: true, message: "用户密码不能为空", trigger: "blur" },
{ min: 5, max: 20, message: '用户密码长度必须介于 5 和 20 之间', trigger: 'blur' }
],
email: [
{
type: "email",
message: "请输入正确的邮箱地址",
trigger: ["blur", "change"]
}
],
phonenumber: [
{
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
message: "请输入正确的手机号码",
trigger: "blur"
}
]
}
};
},
watch: {
// 根据名称筛选部门树
deptName(val) {
this.$refs.tree.filter(val);
}
},
created() {
this.getList();
2023-12-16 23:00:28 +08:00
this.getTree();
2023-12-12 13:36:08 +08:00
},
methods: {
2023-12-16 23:00:28 +08:00
/** 查询列表 */
2023-12-12 13:36:08 +08:00
getList() {
this.loading = true;
2023-12-16 23:00:28 +08:00
getMaTypeList(this.queryParams).then(response => {
this.equipmentList = response.rows;
2023-12-12 13:36:08 +08:00
this.total = response.total;
this.loading = false;
}
);
},
/** 查询部门下拉树结构 */
2023-12-16 23:00:28 +08:00
getTree() {
getProLists().then(response => {
this.deptOptions = this.handleTree(response.rows, "propId");
// console.log(this.deptOptions)
2023-12-12 13:36:08 +08:00
});
},
// 筛选节点
filterNode(value, data) {
if (!value) return true;
return data.label.indexOf(value) !== -1;
},
// 节点单击事件
handleNodeClick(data) {
2023-12-16 23:00:28 +08:00
console.log(data)
this.chosenPropId = data.propId;
this.queryParams.propId = data.propId;
2023-12-12 13:36:08 +08:00
this.handleQuery();
},
2023-12-16 23:00:28 +08:00
2023-12-12 13:36:08 +08:00
// 取消按钮
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();
},
// 多选框选中数据
handleSelectionChange(selection) {
2023-12-20 20:29:06 +08:00
this.ids = selection.map(item => item);
2023-12-16 23:00:28 +08:00
console.log(this.ids)
2023-12-12 13:36:08 +08:00
},
2023-12-16 23:00:28 +08:00
/** 保存按钮操作 */
handleSave() {
console.log(this.chosenPropId)
console.log(this.ids,'ids')
2023-12-19 04:26:18 +08:00
if(this.chosenPropId && this.ids.length>0){
let param = {
propId:this.chosenPropId,
2023-12-20 20:29:06 +08:00
typeId:this.ids[0].typeId,
propName:this.ids[0].propName,
2023-12-19 04:26:18 +08:00
}
savePropInfo(param).then(response => {
if(response.code == 200){
this.$message({
message: '操作成功',
type: 'success'
})
this.getList();
}
});
}else {
this.$message({
message: '请先选择资产属性,勾选设备类型,再保存!',
type: 'warning'
})
2023-12-16 23:00:28 +08:00
}
2023-12-19 04:26:18 +08:00
2023-12-12 13:36:08 +08:00
},
/** 删除按钮操作 */
handleDelete(row) {
2023-12-16 23:00:28 +08:00
const typeIds = row.typeId || this.ids;
this.$modal.confirm('是否确认解绑数据项?').then(function() {
return UnbindPropInfo(typeIds);
2023-12-12 13:36:08 +08:00
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
// this.download('system/user/export', {
// ...this.queryParams
// }, `user_${new Date().getTime()}.xlsx`)
2023-12-12 13:36:08 +08:00
},
/** 导入按钮操作 */
handleImport() {
this.upload.title = "用户导入";
this.upload.open = true;
},
/** 下载模板操作 */
importTemplate() {
this.download('system/user/importTemplate', {
}, `user_template_${new Date().getTime()}.xlsx`)
},
// 文件上传中处理
handleFileUploadProgress(event, file, fileList) {
this.upload.isUploading = true;
},
// 文件上传成功处理
handleFileSuccess(response, file, fileList) {
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();
},
// 提交上传文件
submitFileForm() {
this.$refs.upload.submit();
}
}
};
</script>