You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

620 lines
17 KiB

1 year ago
<template>
<div class="app-container">
<!-- 面包屑 -->
<el-breadcrumb separator="/" style="margin-bottom: 20px">
<el-breadcrumb-item
v-for="(item, index) in routeList"
:key="item + index"
:to="{ path: item.path }"
>
{{ item.routeName }}
</el-breadcrumb-item>
</el-breadcrumb>
1 year ago
<el-form
:model="queryParams"
ref="queryForm"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="水闸编码" prop="wagaCode">
<el-input
v-model="queryParams.data.wagaCode"
placeholder="请输入水闸编码"
clearable
size="small"
@keyup.enter.native="handleQuery"
>
<el-button
type="primary"
slot="append"
icon="el-icon-search"
size="small"
@click="handleQuery"
></el-button>
</el-input>
1 year ago
</el-form-item>
1 year ago
<el-form-item>
<!-- <el-button
1 year ago
type="cyan"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>搜索</el-button
> -->
1 year ago
<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"
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['sz:dagl:add']"
>上传档案</el-button
1 year ago
>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['sz:dagl:edit']"
>修改档案</el-button
1 year ago
>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['sz:dagl:remove']"
>删除</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="daglList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" fixed />
<el-table-column
label="序号"
type="index"
width="50"
align="center"
fixed
/>
<el-table-column
label="水闸编码"
align="center"
prop="wagaCode"
min-width="120"
/>
<el-table-column
label="水闸名称"
1 year ago
align="center"
prop="wagaName"
1 year ago
min-width="120"
/>
<el-table-column
label="水闸类型"
1 year ago
align="center"
prop="wagaType"
:formatter="wagaTypeFormat"
1 year ago
min-width="120"
/>
<el-table-column
label="工程规模"
1 year ago
align="center"
prop="engScal"
:formatter="projectScaleFormat"
1 year ago
min-width="120"
/>
<el-table-column
label="水闸主管部门"
1 year ago
align="center"
prop="unit"
1 year ago
min-width="120"
/>
<el-table-column
label="所在行政区划"
1 year ago
align="center"
prop="adcd"
:formatter="$formatAdcd"
1 year ago
min-width="120"
/>
1 year ago
<el-table-column
label="水闸调度规程"
1 year ago
align="center"
prop="regulationsAttachment"
1 year ago
min-width="120"
>
<template slot-scope="scope">
<div
v-for="(item, index) in JSON.parse(scope.row.regulationsAttachment)"
:key="item + index"
>
<i class="el-icon-document"></i>
{{ item.name }}
<i
class="el-icon-download"
@click="downloadFile(scope.row.regulationsAttachment, index)"
style="cursor: pointer"
></i>
</div>
</template>
</el-table-column>
1 year ago
<el-table-column
label="年度调度运用计划"
align="center"
prop="planAttachment"
min-width="150"
>
<template slot-scope="scope">
<div
v-for="(item, index) in JSON.parse(scope.row.planAttachment)"
:key="item + index"
>
<i class="el-icon-document"></i>
{{ item.name }}
<i
class="el-icon-download"
@click="downloadFile(scope.row.planAttachment, index)"
style="cursor: pointer"
></i>
</div>
</template>
</el-table-column>
1 year ago
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
width="180"
fixed="right"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['sz:dagl:edit']"
>修改档案</el-button
1 year ago
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['sz:dagl:remove']"
>删除</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-dialog
:title="title"
:visible.sync="open"
width="1200px"
append-to-body
:close-on-click-modal="false"
>
<el-form ref="form" :model="form" :rules="rules" label-width="124px">
<el-form-item label="水闸名称" prop="wagaCode">
11 months ago
<linkSluice :form="form" v-if="open" />
<!-- <el-select
v-model="form.wagaCode"
placeholder="请选择水闸名称"
style="width: 100%"
>
<el-option
v-for="dict in wagaNameOptions"
:key="dict.id"
:label="dict.wagaName"
:value="dict.wagaCode"
></el-option>
11 months ago
</el-select> -->
1 year ago
</el-form-item>
<el-form-item label="水闸调度规程" prop="regulationsAttachment">
11 months ago
<myUpload :fileList="fileList1" />
<!-- <el-upload
class="upload-demo"
action="thinking/common/upload"
:headers="headers"
:on-preview="handlePreview"
:on-remove="(file) => handleRemove(file, 'fileList1')"
:before-remove="beforeRemove"
multiple
:on-exceed="handleExceed"
:on-success="(_, fileList) => submitUpload(fileList, 'fileList1')"
:file-list="fileList1"
>
<el-button size="small" type="primary" plain>
<i class="el-icon-upload el-icon--right"></i>
点击上传
</el-button>
<div slot="tip" class="el-upload__tip">
支持jpg/png文件等不超过100M
</div>
11 months ago
</el-upload> -->
1 year ago
</el-form-item>
<el-form-item label="年度调度运用计划" prop="planAttachment">
11 months ago
<myUpload :fileList="fileList2" />
<!-- <el-upload
class="upload-demo"
action="thinking/common/upload"
:headers="headers"
:on-preview="handlePreview"
:on-remove="(file) => handleRemove(file, 'fileList2')"
:before-remove="beforeRemove"
multiple
:on-exceed="handleExceed"
:on-success="(_, fileList) => submitUpload(fileList, 'fileList2')"
:file-list="fileList2"
>
<el-button size="small" type="primary" plain>
<i class="el-icon-upload el-icon--right"></i>
点击上传
</el-button>
<div slot="tip" class="el-upload__tip">
支持jpg/png文件等不超过100M
</div>
11 months ago
</el-upload> -->
1 year ago
</el-form-item>
</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>
<script>
import {
listDagl,
getDagl,
delDagl,
addDagl,
updateDagl,
exportDagl,
} from "@/api/yg/dagl";
import { listJbxx } from "@/api/yg/jbxx";
import { getToken } from "@/utils/auth";
import { getFileStream } from "@/api/system/upload";
11 months ago
import linkSluice from "@/components/linkNameSelect/linkSluice.vue";
1 year ago
export default {
name: "Dagl",
11 months ago
components: {
linkSluice,
},
1 year ago
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 水闸档案管理表格数据
daglList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 水闸类型字典
wagaTypeOptions: [],
// 工程规模字典
projectScaleOptions: [],
1 year ago
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
ids: null,
data: {
wagaCode: null,
regulationsAttachment: null,
planAttachment: null,
createUid: null,
updateUid: null,
owerDept: null,
relation: null,
},
// 排序方式
params: {
// 按哪个字段排序
orderBy: "create_time",
// desc降序,升序asc
sortBy: "desc",
},
},
// 表单参数
form: {},
// 表单校验
rules: {},
wagaNameOptions: [],
// 请求头
headers: {
shuili: "water " + getToken(),
},
fileList1: [],
fileList2: [],
// 面包屑,路由信息
routeList: [
{
path: "/sluice/managementGuarantee/archivesManagement",
routeName: "档案管理",
},
],
1 year ago
};
},
created() {
this.getList();
listJbxx({ data: {} }).then((res) => {
// console.log(111, res);
this.wagaNameOptions = res.records;
});
this.getDicts("engineering_scale").then((response) => {
this.projectScaleOptions = response.data;
});
this.getDicts("sluice_type").then((response) => {
this.wagaTypeOptions = response.data;
});
1 year ago
},
methods: {
/** 查询水闸档案管理列表 */
getList() {
this.loading = true;
listDagl(this.queryParams).then((response) => {
this.daglList = response.records;
this.total = response.total;
this.loading = false;
});
},
// 工程规模字典翻译
projectScaleFormat(row, column) {
return this.selectDictLabel(this.projectScaleOptions, row.engScal);
},
// 水闸类型字典翻译
wagaTypeFormat(row, column) {
return this.selectDictLabel(this.wagaTypeOptions, row.wagaType);
},
1 year ago
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
11 months ago
this.fileList1 = [];
this.fileList2 = [];
1 year ago
this.form = {
id: null,
wagaCode: null,
regulationsAttachment: null,
planAttachment: null,
createUid: null,
createTime: null,
updateUid: null,
updateTime: null,
remark: null,
owerDept: null,
relation: null,
};
this.resetForm("form");
},
// 查询表单重置
resetQueryForm() {
this.queryParams = {
pageNum: 1,
pageSize: 10,
data: {
id: null,
wagaCode: null,
regulationsAttachment: null,
planAttachment: null,
createUid: null,
createTime: null,
updateUid: null,
updateTime: null,
remark: null,
owerDept: null,
relation: null,
},
// 排序方式
params: {
// 按哪个字段排序
orderBy: "create_time",
// desc降序,升序asc
sortBy: "desc",
},
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetQueryForm();
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.id);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加水闸档案管理";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids;
getDagl(id).then((response) => {
this.form = response.data;
if (this.form.regulationsAttachment) {
this.fileList1 = JSON.parse(this.form.regulationsAttachment);
}
if (this.form.planAttachment) {
this.fileList2 = JSON.parse(this.form.planAttachment);
}
1 year ago
this.open = true;
this.title = "修改水闸档案管理";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate((valid) => {
if (valid) {
this.form.regulationsAttachment = JSON.stringify(this.fileList1);
this.form.planAttachment = JSON.stringify(this.fileList2);
1 year ago
if (this.form.id != null) {
updateDagl(this.form).then((response) => {
if (response.code === 200) {
this.msgSuccess("修改成功");
this.open = false;
this.getList();
}
});
} else {
addDagl(this.form).then((response) => {
if (response.code === 200) {
this.msgSuccess("新增成功");
this.open = false;
this.getList();
}
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
if (ids) {
this.$confirm("是否删除选中的数据?", "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(function () {
return delDagl(ids);
})
.then(() => {
this.getList();
this.msgSuccess("删除成功");
})
.catch(function () {});
} else {
this.$message.warning("请选择要删除的数据!!");
}
},
// 上传意见附件
submitUpload(fileList, name) {
console.log(name, fileList);
this[name].push({
name: fileList.name,
fileName: fileList.response.fileName,
url: fileList.response.url,
uid: fileList.uid,
});
console.log(name, this[name]);
},
handleRemove(file, name) {
// console.log(file, fileList1);
let index = this[name].findIndex((item) => item.uid === file.uid);
// 删除文件
this[name].splice(index, 1);
},
downloadFile(item, index) {
let file = JSON.parse(item)[index];
this.handlePreview(file);
},
downloadFile2(info, index) {
console.log(info);
this.handlePreview(info);
},
// 点击预览的文件进行下载
handlePreview(file) {
// console.log(file);
getFileStream({ fileName: file.fileName }).then((res) => {
const blob = new Blob([res], {
// type类型后端返回来的数据中会有,根据自己实际进行修改
// 表格下载为 application/xlsx,压缩包为 application/zip等,
type: "application/xlsx",
}); //excel,pdf等
const href = URL.createObjectURL(blob); //创建新的URL表示指定的blob对象
const a = document.createElement("a"); //创建a标签
a.style.display = "none";
a.href = href; // 指定下载链接
a.download = file.name; //指定下载文件名
a.click(); //触发下载
URL.revokeObjectURL(a.href); //释放URL对象
});
},
handleExceed(files, fileList) {
this.$message.warning(
`当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${
files.length + fileList.length
} 个文件`
);
},
beforeRemove(file, fileList) {
return this.$confirm(`确定移除 ${file.name}`);
1 year ago
},
},
};
</script>
<style lang="scss" scoped>
@import "@/assets/css/dialog.scss";
// ::v-deep {
// .el-dialog {
// margin-top: 2vh !important;
// }
// }
</style>