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

426 lines
13 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="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
v-model="bindingName"
2024-03-22 10:48:22 +08:00
placeholder="请输入资产属性"
2024-04-25 16:00:19 +08:00
clearable
maxlength="50"
2023-12-12 13:36:08 +08:00
size="small"
@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">
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
v-model="queryParams.typeName"
2023-12-12 13:36:08 +08:00
placeholder="请输入关键字"
2024-04-25 16:00:19 +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">
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>
2024-04-25 16:00:19 +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="handleAllDelete"
2024-04-25 16:00:19 +08:00
>
批量解绑
</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>
</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" />
2024-04-25 16:00:19 +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" />
2023-12-16 23:00:28 +08:00
<el-table-column label="库管员" align="center" key="keeperUserName" prop="keeperUserName" width="120" />
2024-04-25 16:00:19 +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>
2024-03-22 09:07:07 +08:00
</template>
</el-table-column>
2024-04-25 16:00:19 +08:00
<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
2024-04-25 16:00:19 +08:00
<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">
2024-04-25 16:00:19 +08:00
<el-button size="mini" type="text" 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"
2023-12-12 13:36:08 +08:00
: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">
2024-04-25 16:00:19 +08:00
<img width="100%" height="650px" :src="dialogImageUrl" alt="" />
2024-03-22 09:07:07 +08:00
</el-dialog>
2023-12-12 13:36:08 +08:00
</div>
</template>
<script>
2024-04-25 16:00:19 +08:00
import { getToken } from '@/utils/auth'
import { getProLists, getMaTypeList, savePropInfo, UnbindPropInfo } from '@/api/base/base'
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: '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,
chosenPropName: null,
bindingName: 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
// 部门树选项
deptOptions: undefined,
// 是否显示弹出层
open: false,
// 部门名称
deptName: undefined,
// 默认密码
initPassword: undefined,
// 日期范围
dateRange: [],
// 岗位选项
postOptions: [],
// 角色选项
roleOptions: [],
// 表单参数
form: {},
defaultProps: {
2024-04-25 16:00:19 +08:00
children: 'children',
label: 'propName',
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,
},
// 列信息
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
],
2024-03-22 09:07:07 +08:00
dialogImageUrl: '',
dialogVisible: false,
2024-04-25 16:00:19 +08:00
uploadUrl: process.env.VUE_APP_BASE_API + '/system', // 上传的图片服务器地址
}
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-16 23:00:28 +08:00
/** 查询列表 */
2023-12-12 13:36:08 +08:00
getList() {
2024-04-25 16:00:19 +08:00
this.loading = true
2023-12-16 23:00:28 +08:00
getMaTypeList(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-16 23:00:28 +08:00
getTree() {
2024-04-25 16:00:19 +08:00
getProLists({ bindingName: this.bindingName }).then(response => {
this.deptOptions = this.handleTree(response.rows, 'propId')
2023-12-16 23:00:28 +08:00
// console.log(this.deptOptions)
2024-04-25 16:00:19 +08:00
})
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) {
2023-12-16 23:00:28 +08:00
console.log(data)
2024-04-25 16:00:19 +08:00
this.chosenPropId = data.propId
this.chosenPropName = data.propName
this.queryParams.propId = data.propId
this.handleQuery()
2023-12-12 13:36:08 +08:00
},
2024-04-25 16:00:19 +08:00
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.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)
2024-04-25 16:00:19 +08:00
console.log(this.ids, 'ids')
if (this.chosenPropId && this.ids.length > 0) {
2023-12-19 04:26:18 +08:00
let param = {
2024-04-25 16:00:19 +08:00
propId: this.chosenPropId,
typeIds: this.ids.join('@'),
propName: this.chosenPropName,
2023-12-19 04:26:18 +08:00
}
savePropInfo(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-16 23:00:28 +08:00
}
2023-12-12 13:36:08 +08:00
},
2024-03-22 09:07:07 +08:00
//图片查看
2024-04-25 16:00:19 +08:00
openImg(url) {
this.dialogImageUrl = this.uploadUrl + url
this.dialogVisible = true
2024-03-22 09:07:07 +08:00
},
2023-12-12 13:36:08 +08:00
/** 删除按钮操作 */
handleDelete(row) {
2024-04-25 16:00:19 +08:00
const typeIds = row.typeId
this.$modal
.confirm('是否确认解绑数据项?')
.then(function () {
return UnbindPropInfo(typeIds)
})
.then(() => {
this.getList()
this.$modal.msgSuccess('解绑成功')
})
.catch(() => {})
},
/** 批量删除按钮操作 */
2024-04-25 16:00:19 +08:00
handleAllDelete() {
const typeIds = this.ids.join('@')
this.$modal
.confirm('是否确认解绑所选择的数据项?')
.then(function () {
return UnbindPropInfo(typeIds)
})
.then(() => {
this.getList()
this.$modal.msgSuccess('解绑成功')
})
.catch(() => {})
2023-12-12 13:36:08 +08:00
},
/** 导出按钮操作 */
handleExport() {
2024-04-25 16:00:19 +08:00
this.download(
'base/maPropInfo/exportConfig',
{
...this.queryParams,
dataCondition: this.ids,
},
`资产属性配置_${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>