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

530 lines
19 KiB
Vue

<template>
<div class="app-container" id="assetAttributeAllocation">
<el-row :gutter="20">
<!--部门数据-->
<el-col :span="4" :xs="24">
<div class="head-container">
<el-input
v-model="bindingName"
placeholder="请输入资产属性"
clearable
maxlength="50"
size="small"
@input="getTree"
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>
<!-- <div style="margin:30px;">
<el-button >取 消</el-button>
<el-button type="primary">确 定</el-button>
</div> -->
</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="typeName">
<el-input
v-model="queryParams.typeName"
placeholder="请输入关键字"
clearable
maxlength="50"
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"
@click="handleSave"
>保存</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleAllDelete"
>
批量解绑
</el-button>
</el-col>
<!-- <el-col :span="1.5">
<el-button
type="info"
plain
icon="el-icon-upload2"
size="mini"
@click="handleImport"
>导入</el-button>
</el-col> -->
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
>导出</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
:columns="columns"
></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="equipmentList"
border
@selection-change="handleSelectionChange"
>
<el-table-column
type="selection"
width="55"
align="center"
/>
<el-table-column
label="名称"
align="center"
key="typeName"
prop="typeName"
/>
<el-table-column
label="计量单位"
align="center"
key="unitName"
prop="unitName"
show-overflow-tooltip
/>
<el-table-column
label="租赁价格"
align="center"
key="nickName"
prop="leasePrice"
show-overflow-tooltip
/>
<el-table-column
label="原值"
align="center"
key="buyPrice"
prop="dept.buyPrice"
show-overflow-tooltip
/>
<el-table-column
label="丢失赔偿价"
align="center"
key="payPrice"
prop="payPrice"
/>
<el-table-column
label="库管员"
align="center"
key="keeperUserName"
prop="keeperUserName"
/>
<el-table-column
label="图片"
align="center"
key="photoName"
prop="photoName"
show-overflow-tooltip
width="160"
>
<template slot-scope="scope">
<span
@click="openImg(scope.row.photoUrl)"
style="color: #02a7f0; cursor: pointer"
>{{ scope.row.photoName }}</span
>
</template>
</el-table-column>
<el-table-column
label="文档资料"
align="center"
key="documentName"
prop="documentName"
/>
<el-table-column
label="资产属性"
align="center"
key="propName"
prop="propName"
/>
<el-table-column
label="备注信息"
align="center"
key="remark"
prop="remark"
/>
<el-table-column label="操作" align="center">
<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>
<el-dialog :visible.sync="dialogVisible">
<img width="100%" height="650px" :src="dialogImageUrl" alt="" />
</el-dialog>
</div>
</template>
<script>
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'
export default {
name: 'AssetAttributeAllocation',
dicts: ['sys_normal_disable', 'sys_user_sex'],
components: { Treeselect },
data() {
return {
// 遮罩层
loading: false,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 用户表格数据
equipmentList: null,
chosenPropId: null,
chosenPropName: null,
bindingName: null,
// 弹出层标题
title: '',
// 部门树选项
deptOptions: undefined,
// 是否显示弹出层
open: false,
// 部门名称
deptName: undefined,
// 默认密码
initPassword: undefined,
// 日期范围
dateRange: [],
// 岗位选项
postOptions: [],
// 角色选项
roleOptions: [],
// 表单参数
form: {},
defaultProps: {
children: 'children',
label: 'propName',
},
// 用户导入参数
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,
},
// 列信息
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 },
],
dialogImageUrl: '',
dialogVisible: false,
uploadUrl: process.env.VUE_APP_BASE_API + '/system', // 上传的图片服务器地址
}
},
watch: {
// 根据名称筛选部门树
deptName(val) {
this.$refs.tree.filter(val)
},
},
created() {
this.getList()
this.getTree()
},
methods: {
/** 查询列表 */
getList() {
this.loading = true
getMaTypeList(this.queryParams).then((response) => {
this.equipmentList = response.rows
this.total = response.total
this.loading = false
})
},
/** 查询部门下拉树结构 */
getTree() {
getProLists({ bindingName: this.bindingName }).then(
(response) => {
this.deptOptions = this.handleTree(
response.rows,
'propId',
)
// console.log(this.deptOptions)
},
)
},
// 筛选节点
filterNode(value, data) {
if (!value) return true
return data.label.indexOf(value) !== -1
},
// 节点单击事件
handleNodeClick(data) {
console.log(data)
this.chosenPropId = data.propId
this.chosenPropName = data.propName
this.queryParams.propId = data.propId
this.handleQuery()
},
// 取消按钮
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) {
this.ids = selection.map((item) => item.typeId)
this.single = selection.length != 1
this.multiple = !selection.length
console.log(this.ids)
},
/** 保存按钮操作 */
handleSave() {
console.log(this.chosenPropId)
console.log(this.ids, 'ids')
if (this.chosenPropId && this.ids.length > 0) {
let param = {
propId: this.chosenPropId,
typeIds: this.ids.join('@'),
propName: this.chosenPropName,
}
savePropInfo(param).then((response) => {
if (response.code == 200) {
this.$message({
message: '操作成功',
type: 'success',
})
this.getList()
}
})
} else {
this.$message({
message: '请先选择资产属性,勾选设备类型,再保存!',
type: 'warning',
})
}
},
//图片查看
openImg(url) {
this.dialogImageUrl = this.uploadUrl + url
this.dialogVisible = true
},
/** 删除按钮操作 */
handleDelete(row) {
const typeIds = row.typeId
this.$modal
.confirm('是否确认解绑数据项?')
.then(function () {
return UnbindPropInfo(typeIds)
})
.then(() => {
this.getList()
this.$modal.msgSuccess('解绑成功')
})
.catch(() => {})
},
/** 批量删除按钮操作 */
handleAllDelete() {
const typeIds = this.ids.join('@')
this.$modal
.confirm('是否确认解绑所选择的数据项?')
.then(function () {
return UnbindPropInfo(typeIds)
})
.then(() => {
this.getList()
this.$modal.msgSuccess('解绑成功')
})
.catch(() => {})
},
/** 导出按钮操作 */
handleExport() {
this.download(
'base/maPropInfo/exportConfig',
{
...this.queryParams,
dataCondition: this.ids,
},
`资产属性配置_${new Date().getTime()}.xlsx`,
)
},
/** 导入按钮操作 */
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>