bonus-ui/src/views/material/ma/whHouse/index.vue

478 lines
12 KiB
Vue
Raw Normal View History

2024-10-24 17:59:57 +08:00
<template>
2024-11-15 19:07:10 +08:00
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item prop="keyWord">
2024-10-24 17:59:57 +08:00
<el-input
2024-11-15 19:07:10 +08:00
v-model="queryParams.keyWord"
placeholder="请输入关键词"
clearable
@keyup.enter.native="handleQuery"
maxlength="20"
/>
</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="handleAdd"
v-hasPermi="['machinery:type:add']"
>新增</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"
></right-toolbar>
</el-row>
<!-- <el-row :gutter="10" class="mb8">
2024-10-24 17:59:57 +08:00
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['bracelet:construction:export']"
>导出数据</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row> -->
2024-11-15 19:07:10 +08:00
<el-table
v-loading="loading"
:data="houseList"
ref="multipleTable"
row-key="teamId"
>
<!-- <el-table-column type="selection" width="55" align="center" :reserve-selection="true" /> -->
<el-table-column label="序号" align="center" width="80" type="index">
<template slot-scope="scope">
<span>{{
(queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1
}}</span>
</template>
</el-table-column>
<el-table-column
label="仓库名称"
align="center"
prop="houseName"
sortable
2024-10-24 17:59:57 +08:00
/>
2024-11-15 19:07:10 +08:00
<el-table-column
label="实物库"
align="center"
prop="physicalName"
sortable
/>
<el-table-column
label="地理位置"
align="center"
prop="geoLocation"
sortable
/>
<el-table-column label="所属组织" align="center" prop="deptName" sortable>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark" sortable>
</el-table-column>
<el-table-column label="操作" align="center" width="180">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['machinery:type:edit']"
>
编辑
</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['machinery:type:del']"
>
删除
</el-button>
</template>
</el-table-column>
</el-table>
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
<!-- 新增或修改弹窗 -->
<el-dialog
:title="title"
:visible.sync="showHouse"
width="600px"
append-to-body
>
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
<el-row :gutter="24">
<el-col :span="20">
<el-form-item label="仓库名称" prop="houseName">
<el-input
v-model="form.houseName"
placeholder="请输入仓库名称"
maxlength="20"
2024-10-24 17:59:57 +08:00
/>
2024-11-15 19:07:10 +08:00
</el-form-item>
</el-col>
</el-row>
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
<el-row :gutter="24">
<el-col :span="20">
<el-form-item label="地理位置" prop="geoLocation">
<el-input
v-model="form.geoLocation"
placeholder="请输入地理位置"
maxlength="20"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="24">
<el-col :span="20">
<el-form-item label="实物库" prop="physicalName">
<el-input
v-model="form.physicalName"
placeholder="请输入实物库"
maxlength="20"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
<el-row :gutter="24">
<el-col :span="20">
<el-form-item label="所属组织" prop="deptId">
<treeselect
v-model="form.deptId"
:searchable="false"
:disable-branch-nodes="true"
:options="deptOptions"
:show-count="true"
placeholder="请选择所属组织"
/>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="24">
<el-col :span="20">
<el-form-item label="备注" prop="remark">
<el-input
type="textarea"
:rows="5"
placeholder="请输入备注"
v-model="form.remark"
maxlength="50"
show-word-limit
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
2024-10-24 17:59:57 +08:00
<script>
2024-11-15 19:07:10 +08:00
import {
getListHouse,
getHouseDetail,
editHouse,
addHouse,
delHouse,
} from "@/api/ma/whHouse";
import { downloadFile } from "@/utils/download";
import { deptTreeSelect } from "@/api/system/user";
import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
export default {
name: "whHouse",
data() {
return {
// 遮罩层
loading: false,
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
loadingTwo: false,
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
// 是否显示项目部Id
showName: false,
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
// 是否显示施工预警信息
showWarn: false,
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
// 显示搜索条件
showSearch: true,
showHouse: false,
// 部门树选项
deptOptions: undefined,
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
// 总条数
total: 0,
totalTwo: 0,
// 施工记录表格数据
houseList: [],
maxLength: 100, //已选列表上限,防止数据过多请求报错
keeperDataRange: [],
// 班组人员表格数据
teamList: [],
teamTempList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
keyWord: undefined,
},
// 查询参数
queryTeam: {
pageNum: 1,
pageSize: 10,
name: undefined,
sex: undefined,
teamId: undefined,
},
// 表单参数
form: {},
// 表单校验
rules: {
houseName: [
{
required: true,
message: "仓库名称不能为空",
trigger: "blur",
},
],
geoLocation: [
{
required: false,
message: "地理位置不能为空",
trigger: "blur",
},
],
physicalName: [
{
required: false,
message: "实物库不能为空",
trigger: "blur",
},
],
leasePrice: [
{
required: true,
message: "请选择所属组织",
trigger: "change",
},
],
remark: [
{
required: false,
message: "备注不能为空",
trigger: "blur",
},
],
},
};
},
created() {
this.getDeptTree();
this.getList();
},
components: { Treeselect },
methods: {
2024-10-24 17:59:57 +08:00
/** 查询部门下拉树结构 */
getDeptTree() {
2024-11-15 19:07:10 +08:00
deptTreeSelect().then((response) => {
this.deptOptions = this.filterTree(response.data);
});
2024-10-24 17:59:57 +08:00
},
filterTree(nodes) {
2024-11-15 19:07:10 +08:00
return nodes.map((node) => {
if (node.children) {
node.children = this.filterTree(node.children);
}
return node;
});
2024-10-24 17:59:57 +08:00
},
2024-11-15 19:07:10 +08:00
/** 查询岗位列表 */
getList() {
this.loading = true;
getListHouse(this.queryParams).then((response) => {
this.houseList = response.rows;
this.total = response.total;
this.loading = false;
});
},
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.showHouse = true;
this.title = "新增";
},
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
handleUpdate(row) {
this.reset();
const houseId = row.houseId;
getHouseDetail(houseId).then((response) => {
this.form = response.data;
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
this.showHouse = true;
this.title = "修改";
});
},
// 表单重置
reset() {
this.form = {};
this.resetForm("form");
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.queryParams.keyWord = null;
this.handleQuery();
},
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
//** 提交按钮 */
submitForm() {
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.houseId != undefined) {
editHouse(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.showHouse = false;
this.getList();
2024-10-24 17:59:57 +08:00
});
2024-11-15 19:07:10 +08:00
} else {
addHouse(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.showHouse = false;
this.getList();
});
}
}
});
},
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
// 取消按钮
cancel() {
this.showHouse = false;
this.reset();
},
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
/** 删除按钮操作 */
handleDelete(row) {
const houseIds = row.houseId;
this.$modal
.confirm("是否确认删除数据项?")
.then(function () {
return delHouse(houseIds);
})
.then(() => {
this.$modal.msgSuccess("删除成功");
this.getList();
})
.catch(() => {});
},
handleExport() {
this.download(
"/material/wh_house_info/export",
{
...this.queryParams,
2024-10-24 17:59:57 +08:00
},
2024-11-15 19:07:10 +08:00
`仓库管理_${new Date().getTime()}.xlsx`
);
},
2024-10-24 17:59:57 +08:00
2024-11-15 19:07:10 +08:00
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
},
};
</script>
2024-10-24 17:59:57 +08:00
<style lang="scss" scoped>
2024-11-15 19:07:10 +08:00
.uploadImg {
padding-top: 20px;
display: flex;
align-items: center;
justify-content: center;
}
.deviceCode {
margin-top: 10px;
padding-bottom: 20px;
font-size: 18px;
}
::v-deep.el-table .fixed-width .el-button--mini {
width: 60px !important;
margin-bottom: 10px;
}
//隐藏图片上传框的css
::v-deep.disabled {
.el-upload--picture-card {
display: none;
2024-10-24 17:59:57 +08:00
}
2024-11-15 19:07:10 +08:00
}
</style>