2023-12-12 13:36:08 +08:00
|
|
|
<template>
|
2024-01-22 09:18:46 +08:00
|
|
|
<div class="app-container" id="assetAttributeAllocation">
|
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-01-19 10:22:39 +08:00
|
|
|
v-model="bindingName"
|
2024-03-22 10:48:22 +08:00
|
|
|
placeholder="请输入资产属性"
|
2024-03-11 14:57:03 +08:00
|
|
|
clearable maxlength="50"
|
2023-12-12 13:36:08 +08:00
|
|
|
size="small"
|
2024-01-19 10:22:39 +08:00
|
|
|
@input="getTree"
|
2023-12-12 13:36:08 +08:00
|
|
|
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">
|
2024-01-19 10:22:39 +08:00
|
|
|
<el-form-item label="关键字" prop="typeName">
|
2023-12-12 13:36:08 +08:00
|
|
|
<el-input
|
2024-01-19 10:22:39 +08:00
|
|
|
v-model="queryParams.typeName"
|
2023-12-12 13:36:08 +08:00
|
|
|
placeholder="请输入关键字"
|
2024-03-11 14:57:03 +08:00
|
|
|
clearable maxlength="50"
|
2023-12-12 13:36:08 +08:00
|
|
|
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
|
|
|
|
2024-01-19 10:22:39 +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"
|
2024-01-19 10:22:39 +08:00
|
|
|
@click="handleAllDelete"
|
|
|
|
|
>批量解绑</el-button>
|
|
|
|
|
</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>
|
2024-01-10 16:29:46 +08:00
|
|
|
</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>
|
2024-01-10 16:29:46 +08:00
|
|
|
</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" />
|
2024-03-22 09:07:07 +08:00
|
|
|
<el-table-column label="图片" align="center" key="photoName" prop="photoName" width="120" >
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span @click="openImg(scope.row.photoUrl)" style="color: #02A7F0;"> {{ scope.row.photoName }} </span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="文档资料" align="center" key="documentName" prop="documentName" width="120"/>
|
|
|
|
|
|
2023-12-16 23:00:28 +08:00
|
|
|
<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)"
|
2024-01-19 10:22:39 +08:00
|
|
|
>解绑</el-button>
|
2023-12-12 13:36:08 +08:00
|
|
|
|
|
|
|
|
</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>
|
2024-03-22 09:07:07 +08:00
|
|
|
<el-dialog :visible.sync="dialogVisible">
|
|
|
|
|
<img width="100%" height="650px" :src="dialogImageUrl" alt="">
|
|
|
|
|
</el-dialog>
|
2023-12-12 13:36:08 +08:00
|
|
|
</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 {
|
2024-01-22 09:18:46 +08:00
|
|
|
name: "AssetAttributeAllocation",
|
2023-12-12 13:36:08 +08:00
|
|
|
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,
|
2024-01-19 10:22:39 +08:00
|
|
|
chosenPropName: null,
|
|
|
|
|
bindingName: 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,
|
2024-01-19 10:22:39 +08:00
|
|
|
|
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 },
|
|
|
|
|
{ key: 6, label: `创建时间`, visible: true }
|
|
|
|
|
],
|
2024-03-22 09:07:07 +08:00
|
|
|
dialogImageUrl: '',
|
|
|
|
|
dialogVisible: false,
|
|
|
|
|
uploadUrl: process.env.VUE_APP_BASE_API + "/system", // 上传的图片服务器地址
|
2023-12-12 13:36:08 +08:00
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
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() {
|
2024-01-19 10:22:39 +08:00
|
|
|
getProLists({bindingName:this.bindingName}).then(response => {
|
2023-12-16 23:00:28 +08:00
|
|
|
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;
|
2024-01-19 10:22:39 +08:00
|
|
|
this.chosenPropName = data.propName;
|
2023-12-16 23:00:28 +08:00
|
|
|
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) {
|
2024-01-19 10:22:39 +08:00
|
|
|
this.ids = selection.map(item => item.typeId);
|
|
|
|
|
this.single = selection.length!=1
|
|
|
|
|
this.multiple = !selection.length
|
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,
|
2024-01-19 10:22:39 +08:00
|
|
|
typeIds:this.ids.join("@"),
|
|
|
|
|
propName:this.chosenPropName,
|
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
|
|
|
},
|
2024-03-22 09:07:07 +08:00
|
|
|
//图片查看
|
|
|
|
|
openImg(url){
|
|
|
|
|
this.dialogImageUrl = this.uploadUrl + url;
|
|
|
|
|
this.dialogVisible = true;
|
|
|
|
|
},
|
2023-12-12 13:36:08 +08:00
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
handleDelete(row) {
|
2024-01-19 10:22:39 +08:00
|
|
|
const typeIds = row.typeId;
|
2023-12-16 23:00:28 +08:00
|
|
|
this.$modal.confirm('是否确认解绑数据项?').then(function() {
|
|
|
|
|
return UnbindPropInfo(typeIds);
|
2023-12-12 13:36:08 +08:00
|
|
|
}).then(() => {
|
|
|
|
|
this.getList();
|
2024-01-19 10:22:39 +08:00
|
|
|
this.$modal.msgSuccess("解绑成功");
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
},
|
|
|
|
|
/** 批量删除按钮操作 */
|
|
|
|
|
handleAllDelete(){
|
|
|
|
|
const typeIds = this.ids.join('@');
|
|
|
|
|
this.$modal.confirm('是否确认解绑所选择的数据项?').then(function() {
|
|
|
|
|
return UnbindPropInfo(typeIds);
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$modal.msgSuccess("解绑成功");
|
2023-12-12 13:36:08 +08:00
|
|
|
}).catch(() => {});
|
|
|
|
|
},
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
handleExport() {
|
2024-01-10 16:29:46 +08:00
|
|
|
// 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>
|