7 changed files with 1462 additions and 68 deletions
@ -0,0 +1,53 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
// 查询整改通知书列表
|
||||
|
export function listRectification(query) { |
||||
|
return request({ |
||||
|
url: '/warn/rectification/list', |
||||
|
method: 'post', |
||||
|
data: query |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 查询整改通知书详细
|
||||
|
export function getRectification(id) { |
||||
|
return request({ |
||||
|
url: '/warn/rectification/' + id, |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 新增整改通知书
|
||||
|
export function addRectification(data) { |
||||
|
return request({ |
||||
|
url: '/warn/rectification', |
||||
|
method: 'post', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 修改整改通知书
|
||||
|
export function updateRectification(data) { |
||||
|
return request({ |
||||
|
url: '/warn/rectification', |
||||
|
method: 'put', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 删除整改通知书
|
||||
|
export function delRectification(id) { |
||||
|
return request({ |
||||
|
url: '/warn/rectification/' + id, |
||||
|
method: 'delete' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 导出整改通知书
|
||||
|
export function exportRectification(query) { |
||||
|
return request({ |
||||
|
url: '/warn/rectification/export', |
||||
|
method: 'get', |
||||
|
params: query |
||||
|
}) |
||||
|
} |
@ -0,0 +1,53 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
// 查询责任单位列表
|
||||
|
export function listZrdw(query) { |
||||
|
return request({ |
||||
|
url: '/warn/zrdw/list', |
||||
|
method: 'post', |
||||
|
data: query |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 查询责任单位详细
|
||||
|
export function getZrdw(id) { |
||||
|
return request({ |
||||
|
url: '/warn/zrdw/' + id, |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 新增责任单位
|
||||
|
export function addZrdw(data) { |
||||
|
return request({ |
||||
|
url: '/warn/zrdw', |
||||
|
method: 'post', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 修改责任单位
|
||||
|
export function updateZrdw(data) { |
||||
|
return request({ |
||||
|
url: '/warn/zrdw', |
||||
|
method: 'put', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 删除责任单位
|
||||
|
export function delZrdw(id) { |
||||
|
return request({ |
||||
|
url: '/warn/zrdw/' + id, |
||||
|
method: 'delete' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 导出责任单位
|
||||
|
export function exportZrdw(query) { |
||||
|
return request({ |
||||
|
url: '/warn/zrdw/export', |
||||
|
method: 'get', |
||||
|
params: query |
||||
|
}) |
||||
|
} |
@ -0,0 +1,482 @@ |
|||||
|
<template> |
||||
|
<div> |
||||
|
<div style="text-align: right; margin-bottom: 10px"> |
||||
|
<el-button |
||||
|
type="primary" |
||||
|
icon="el-icon-plus" |
||||
|
size="mini" |
||||
|
@click="handleAdd" |
||||
|
v-hasPermi="['warn:rectification:add']" |
||||
|
>新增整改通知书</el-button |
||||
|
> |
||||
|
</div> |
||||
|
|
||||
|
<el-table v-loading="loading" border :data="rectificationList"> |
||||
|
<el-table-column |
||||
|
label="序号" |
||||
|
type="index" |
||||
|
width="50" |
||||
|
align="center" |
||||
|
fixed |
||||
|
/> |
||||
|
<!-- <el-table-column |
||||
|
label="监管id" |
||||
|
align="center" |
||||
|
prop="inspectionId" |
||||
|
min-width="120" |
||||
|
/> --> |
||||
|
<el-table-column |
||||
|
label="发文单位" |
||||
|
align="center" |
||||
|
prop="issuingUnit" |
||||
|
min-width="120" |
||||
|
/> |
||||
|
<el-table-column |
||||
|
label="文号" |
||||
|
align="center" |
||||
|
prop="documentNumber" |
||||
|
min-width="120" |
||||
|
/> |
||||
|
<el-table-column |
||||
|
label="通知生效时间" |
||||
|
align="center" |
||||
|
prop="noticeBegainTime" |
||||
|
min-width="120" |
||||
|
> |
||||
|
<template slot-scope="scope"> |
||||
|
<span>{{ |
||||
|
parseTime(scope.row.noticeBegainTime, "{y}-{m}-{d}") |
||||
|
}}</span> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column |
||||
|
label="整改通知书" |
||||
|
align="center" |
||||
|
prop="rectificationAttachment" |
||||
|
min-width="120" |
||||
|
> |
||||
|
<template slot-scope="scope"> |
||||
|
<div |
||||
|
v-for="(item, index) in JSON.parse( |
||||
|
scope.row.rectificationAttachment |
||||
|
)" |
||||
|
:key="item + index" |
||||
|
> |
||||
|
<i class="el-icon-document"></i> |
||||
|
{{ item.name }} |
||||
|
<i |
||||
|
class="el-icon-download" |
||||
|
@click="downloadFile(scope.row.rectificationAttachment, index)" |
||||
|
style="cursor: pointer" |
||||
|
></i> |
||||
|
</div> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column |
||||
|
label="责任单位" |
||||
|
align="center" |
||||
|
prop="aa" |
||||
|
min-width="120" |
||||
|
/> |
||||
|
<el-table-column |
||||
|
label="整改完成情况" |
||||
|
align="center" |
||||
|
prop="bbb" |
||||
|
min-width="120" |
||||
|
/> |
||||
|
<el-table-column |
||||
|
label="整改相关附件" |
||||
|
align="center" |
||||
|
prop="ccc" |
||||
|
min-width="120" |
||||
|
/> |
||||
|
<el-table-column |
||||
|
label="信用修复状态" |
||||
|
align="center" |
||||
|
prop="dddd" |
||||
|
min-width="120" |
||||
|
/> |
||||
|
<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="['warn:rectification:edit']" |
||||
|
>修改</el-button |
||||
|
> |
||||
|
<el-button |
||||
|
size="mini" |
||||
|
type="text" |
||||
|
icon="el-icon-delete" |
||||
|
@click="handleDelete(scope.row)" |
||||
|
v-hasPermi="['warn:rectification: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="110px"> |
||||
|
<!-- <el-form-item label="监管id" prop="inspectionId"> |
||||
|
<el-input v-model="form.inspectionId" placeholder="请输入监管id" /> |
||||
|
</el-form-item> --> |
||||
|
<el-form-item label="发文单位" prop="issuingUnit"> |
||||
|
<el-input v-model="form.issuingUnit" placeholder="请输入发文单位" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="文号" prop="documentNumber"> |
||||
|
<el-input v-model="form.documentNumber" placeholder="请输入文号" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="通知生效时间" prop="noticeBegainTime"> |
||||
|
<el-date-picker |
||||
|
clearable |
||||
|
size="small" |
||||
|
style="width: 100%" |
||||
|
v-model="form.noticeBegainTime" |
||||
|
type="date" |
||||
|
value-format="yyyy-MM-dd" |
||||
|
placeholder="选择通知生效时间" |
||||
|
> |
||||
|
</el-date-picker> |
||||
|
</el-form-item> |
||||
|
|
||||
|
<el-form-item label="整改通知书" prop="rectificationAttachment"> |
||||
|
<!-- <el-input v-model="form.rectificationAttachment" placeholder="请输入整改通知书" /> --> |
||||
|
<el-upload |
||||
|
class="upload-demo" |
||||
|
action="thinking/common/upload" |
||||
|
:headers="headers" |
||||
|
:on-preview="handlePreview" |
||||
|
:on-remove="(file) => handleOpinionRemove(file, 'fileList1')" |
||||
|
:before-remove="beforeRemove" |
||||
|
multiple |
||||
|
:on-exceed="handleExceed" |
||||
|
:on-success=" |
||||
|
(_, fileList) => submitOpinionUpload(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/pdf/word/excel文件等,不超过100M |
||||
|
</div> |
||||
|
</el-upload> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
<responsibleUnit /> |
||||
|
<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 { |
||||
|
listRectification, |
||||
|
getRectification, |
||||
|
delRectification, |
||||
|
addRectification, |
||||
|
updateRectification, |
||||
|
exportRectification, |
||||
|
} from "@/api/warn/rectification"; |
||||
|
import { getToken } from "@/utils/auth"; |
||||
|
import { getFileStream } from "@/api/system/upload"; |
||||
|
import responsibleUnit from "./responsibleUnit.vue"; |
||||
|
|
||||
|
export default { |
||||
|
name: "Rectification", |
||||
|
props: ["inspectionId"], |
||||
|
components: { |
||||
|
responsibleUnit, |
||||
|
}, |
||||
|
data() { |
||||
|
return { |
||||
|
// 遮罩层 |
||||
|
loading: true, |
||||
|
// 选中数组 |
||||
|
ids: [], |
||||
|
// 非单个禁用 |
||||
|
single: true, |
||||
|
// 非多个禁用 |
||||
|
multiple: true, |
||||
|
// 显示搜索条件 |
||||
|
showSearch: true, |
||||
|
// 总条数 |
||||
|
total: 0, |
||||
|
// 整改通知书表格数据 |
||||
|
rectificationList: [], |
||||
|
// 弹出层标题 |
||||
|
title: "", |
||||
|
// 是否显示弹出层 |
||||
|
open: false, |
||||
|
// 查询参数 |
||||
|
queryParams: { |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
ids: null, |
||||
|
data: { |
||||
|
inspectionId: null, |
||||
|
issuingUnit: null, |
||||
|
documentNumber: null, |
||||
|
noticeBegainTime: null, |
||||
|
rectificationAttachment: null, |
||||
|
createUid: null, |
||||
|
updateUid: null, |
||||
|
owerDept: null, |
||||
|
}, |
||||
|
// 排序方式 |
||||
|
params: { |
||||
|
// 按哪个字段排序 |
||||
|
orderBy: "create_time", |
||||
|
// desc降序,升序asc |
||||
|
sortBy: "desc", |
||||
|
}, |
||||
|
}, |
||||
|
// 表单参数 |
||||
|
form: {}, |
||||
|
// 表单校验 |
||||
|
rules: {}, |
||||
|
// 请求头 |
||||
|
headers: { |
||||
|
jianwei: "jwtech " + getToken(), |
||||
|
}, |
||||
|
fileList1: [], |
||||
|
}; |
||||
|
}, |
||||
|
created() { |
||||
|
this.getList(); |
||||
|
}, |
||||
|
methods: { |
||||
|
/** 查询整改通知书列表 */ |
||||
|
getList() { |
||||
|
this.loading = true; |
||||
|
listRectification(this.queryParams).then((response) => { |
||||
|
this.rectificationList = response.records; |
||||
|
this.total = response.total; |
||||
|
this.loading = false; |
||||
|
}); |
||||
|
}, |
||||
|
// 取消按钮 |
||||
|
cancel() { |
||||
|
this.open = false; |
||||
|
this.reset(); |
||||
|
}, |
||||
|
// 表单重置 |
||||
|
reset() { |
||||
|
this.form = { |
||||
|
id: null, |
||||
|
inspectionId: null, |
||||
|
issuingUnit: null, |
||||
|
documentNumber: null, |
||||
|
noticeBegainTime: null, |
||||
|
rectificationAttachment: null, |
||||
|
createTime: null, |
||||
|
createUid: null, |
||||
|
updateUid: null, |
||||
|
updateTime: null, |
||||
|
owerDept: null, |
||||
|
remark: null, |
||||
|
}; |
||||
|
this.resetForm("form"); |
||||
|
}, |
||||
|
// 查询表单重置 |
||||
|
resetQueryForm() { |
||||
|
this.queryParams = { |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
data: { |
||||
|
id: null, |
||||
|
inspectionId: null, |
||||
|
issuingUnit: null, |
||||
|
documentNumber: null, |
||||
|
noticeBegainTime: null, |
||||
|
rectificationAttachment: null, |
||||
|
createTime: null, |
||||
|
createUid: null, |
||||
|
updateUid: null, |
||||
|
updateTime: null, |
||||
|
owerDept: null, |
||||
|
remark: 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; |
||||
|
getRectification(id).then((response) => { |
||||
|
this.form = response.data; |
||||
|
if (this.form.rectificationAttachment) { |
||||
|
this.fileList1 = JSON.parse(this.form.rectificationAttachment); |
||||
|
} |
||||
|
this.open = true; |
||||
|
this.title = "修改整改通知书"; |
||||
|
}); |
||||
|
}, |
||||
|
/** 提交按钮 */ |
||||
|
submitForm() { |
||||
|
this.$refs["form"].validate((valid) => { |
||||
|
if (valid) { |
||||
|
this.form.rectificationAttachment = JSON.stringify(this.fileList1); |
||||
|
if (this.form.id != null) { |
||||
|
updateRectification(this.form).then((response) => { |
||||
|
if (response.code === 200) { |
||||
|
this.msgSuccess("修改成功"); |
||||
|
this.open = false; |
||||
|
this.getList(); |
||||
|
} |
||||
|
}); |
||||
|
} else { |
||||
|
this.form.inspectionId = this.inspectionId; |
||||
|
addRectification(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 delRectification(ids); |
||||
|
}) |
||||
|
.then(() => { |
||||
|
this.getList(); |
||||
|
this.msgSuccess("删除成功"); |
||||
|
}) |
||||
|
.catch(function () {}); |
||||
|
} else { |
||||
|
this.$message.warning("请选择要删除的数据!!"); |
||||
|
} |
||||
|
}, |
||||
|
// 上传意见附件 |
||||
|
submitOpinionUpload(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]); |
||||
|
}, |
||||
|
handleOpinionRemove(file, name) { |
||||
|
// console.log(file, fileList1); |
||||
|
let index = this[name].findIndex((item) => item.uid === file.uid); |
||||
|
// 删除文件 |
||||
|
this[name].splice(index, 1); |
||||
|
}, |
||||
|
// 表格中下载 |
||||
|
downloadFile(fileList, index) { |
||||
|
console.log(fileList); |
||||
|
let file = JSON.parse(fileList)[index]; |
||||
|
this.handlePreview(file); |
||||
|
}, |
||||
|
// 点击预览的文件进行下载 |
||||
|
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}?`); |
||||
|
}, |
||||
|
}, |
||||
|
}; |
||||
|
</script> |
||||
|
<style lang="scss" scoped> |
||||
|
@import "@/assets/css/dialog.scss"; |
||||
|
//::v-deep { |
||||
|
// .el-dialog { |
||||
|
// margin-top: 10vh !important; |
||||
|
// } |
||||
|
//} |
||||
|
</style> |
@ -0,0 +1,427 @@ |
|||||
|
<template> |
||||
|
<div class="app-container"> |
||||
|
<!-- <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="['warn:zrdw:add']" |
||||
|
>新增</el-button |
||||
|
> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="success" |
||||
|
icon="el-icon-edit" |
||||
|
size="mini" |
||||
|
:disabled="single" |
||||
|
@click="handleUpdate" |
||||
|
v-hasPermi="['warn:zrdw:edit']" |
||||
|
>修改</el-button |
||||
|
> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="danger" |
||||
|
icon="el-icon-delete" |
||||
|
size="mini" |
||||
|
:disabled="multiple" |
||||
|
@click="handleDelete" |
||||
|
v-hasPermi="['warn:zrdw:remove']" |
||||
|
>删除</el-button |
||||
|
> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="warning" |
||||
|
icon="el-icon-download" |
||||
|
size="mini" |
||||
|
@click="handleExport" |
||||
|
v-hasPermi="['warn:zrdw:export']" |
||||
|
>导出</el-button |
||||
|
> |
||||
|
</el-col> |
||||
|
<right-toolbar |
||||
|
:showSearch.sync="showSearch" |
||||
|
@queryTable="getList" |
||||
|
></right-toolbar> |
||||
|
</el-row> --> |
||||
|
|
||||
|
<el-table |
||||
|
v-loading="loading" |
||||
|
:data="zrdwList" |
||||
|
@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="监管id" |
||||
|
align="center" |
||||
|
prop="inspectionId" |
||||
|
min-width="120" |
||||
|
/> |
||||
|
<el-table-column |
||||
|
label="单位id" |
||||
|
align="center" |
||||
|
prop="unitId" |
||||
|
min-width="120" |
||||
|
/> |
||||
|
<el-table-column |
||||
|
label="整改情况" |
||||
|
align="center" |
||||
|
prop="rectificationSituation" |
||||
|
min-width="120" |
||||
|
/> |
||||
|
<el-table-column |
||||
|
label="附件" |
||||
|
align="center" |
||||
|
prop="attachment" |
||||
|
min-width="120" |
||||
|
/> |
||||
|
<el-table-column |
||||
|
label="附件" |
||||
|
align="center" |
||||
|
prop="createUid" |
||||
|
min-width="120" |
||||
|
/> |
||||
|
<el-table-column |
||||
|
label="附件" |
||||
|
align="center" |
||||
|
prop="updateUid" |
||||
|
min-width="120" |
||||
|
/> |
||||
|
<el-table-column |
||||
|
label="附件" |
||||
|
align="center" |
||||
|
prop="owerDept" |
||||
|
min-width="120" |
||||
|
/> |
||||
|
<el-table-column |
||||
|
label="附件" |
||||
|
align="center" |
||||
|
prop="remark" |
||||
|
min-width="120" |
||||
|
/> |
||||
|
<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="['warn:zrdw:edit']" |
||||
|
>修改</el-button |
||||
|
> |
||||
|
<el-button |
||||
|
size="mini" |
||||
|
type="text" |
||||
|
icon="el-icon-delete" |
||||
|
@click="handleDelete(scope.row)" |
||||
|
v-hasPermi="['warn:zrdw: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="80px"> |
||||
|
<el-form-item label="监管id" prop="inspectionId"> |
||||
|
<el-input v-model="form.inspectionId" placeholder="请输入监管id" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="单位id" prop="unitId"> |
||||
|
<el-input v-model="form.unitId" placeholder="请输入单位id" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="整改情况" prop="rectificationSituation"> |
||||
|
<el-input |
||||
|
v-model="form.rectificationSituation" |
||||
|
placeholder="请输入整改情况" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="附件" prop="attachment"> |
||||
|
<el-input v-model="form.attachment" placeholder="请输入附件" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="附件" prop="createUid"> |
||||
|
<el-input v-model="form.createUid" placeholder="请输入附件" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="附件" prop="updateUid"> |
||||
|
<el-input v-model="form.updateUid" placeholder="请输入附件" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="附件" prop="owerDept"> |
||||
|
<el-input v-model="form.owerDept" placeholder="请输入附件" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="附件" prop="remark"> |
||||
|
<el-input v-model="form.remark" placeholder="请输入附件" /> |
||||
|
</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 { |
||||
|
listZrdw, |
||||
|
getZrdw, |
||||
|
delZrdw, |
||||
|
addZrdw, |
||||
|
updateZrdw, |
||||
|
exportZrdw, |
||||
|
} from "@/api/warn/zrdw"; |
||||
|
|
||||
|
export default { |
||||
|
name: "Zrdw", |
||||
|
data() { |
||||
|
return { |
||||
|
// 遮罩层 |
||||
|
loading: true, |
||||
|
// 选中数组 |
||||
|
ids: [], |
||||
|
// 非单个禁用 |
||||
|
single: true, |
||||
|
// 非多个禁用 |
||||
|
multiple: true, |
||||
|
// 显示搜索条件 |
||||
|
showSearch: true, |
||||
|
// 总条数 |
||||
|
total: 0, |
||||
|
// 责任单位表格数据 |
||||
|
zrdwList: [], |
||||
|
// 弹出层标题 |
||||
|
title: "", |
||||
|
// 是否显示弹出层 |
||||
|
open: false, |
||||
|
// 查询参数 |
||||
|
queryParams: { |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
ids: null, |
||||
|
data: { |
||||
|
inspectionId: null, |
||||
|
unitId: null, |
||||
|
rectificationSituation: null, |
||||
|
attachment: null, |
||||
|
createUid: null, |
||||
|
updateUid: null, |
||||
|
owerDept: null, |
||||
|
}, |
||||
|
// 排序方式 |
||||
|
params: { |
||||
|
// 按哪个字段排序 |
||||
|
orderBy: "create_time", |
||||
|
// desc降序,升序asc |
||||
|
sortBy: "desc", |
||||
|
}, |
||||
|
}, |
||||
|
// 表单参数 |
||||
|
form: {}, |
||||
|
// 表单校验 |
||||
|
rules: {}, |
||||
|
}; |
||||
|
}, |
||||
|
created() { |
||||
|
this.getList(); |
||||
|
}, |
||||
|
methods: { |
||||
|
/** 查询责任单位列表 */ |
||||
|
getList() { |
||||
|
this.loading = true; |
||||
|
listZrdw(this.queryParams).then((response) => { |
||||
|
this.zrdwList = response.records; |
||||
|
this.total = response.total; |
||||
|
this.loading = false; |
||||
|
}); |
||||
|
}, |
||||
|
// 取消按钮 |
||||
|
cancel() { |
||||
|
this.open = false; |
||||
|
this.reset(); |
||||
|
}, |
||||
|
// 表单重置 |
||||
|
reset() { |
||||
|
this.form = { |
||||
|
id: null, |
||||
|
inspectionId: null, |
||||
|
unitId: null, |
||||
|
rectificationSituation: null, |
||||
|
attachment: null, |
||||
|
createUid: null, |
||||
|
updateUid: null, |
||||
|
createTime: null, |
||||
|
updateTime: null, |
||||
|
owerDept: null, |
||||
|
remark: null, |
||||
|
}; |
||||
|
this.resetForm("form"); |
||||
|
}, |
||||
|
// 查询表单重置 |
||||
|
resetQueryForm() { |
||||
|
this.queryParams = { |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
data: { |
||||
|
id: null, |
||||
|
inspectionId: null, |
||||
|
unitId: null, |
||||
|
rectificationSituation: null, |
||||
|
attachment: null, |
||||
|
createUid: null, |
||||
|
updateUid: null, |
||||
|
createTime: null, |
||||
|
updateTime: null, |
||||
|
owerDept: null, |
||||
|
remark: 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; |
||||
|
getZrdw(id).then((response) => { |
||||
|
this.form = response.data; |
||||
|
this.open = true; |
||||
|
this.title = "修改责任单位"; |
||||
|
}); |
||||
|
}, |
||||
|
/** 提交按钮 */ |
||||
|
submitForm() { |
||||
|
this.$refs["form"].validate((valid) => { |
||||
|
if (valid) { |
||||
|
if (this.form.id != null) { |
||||
|
updateZrdw(this.form).then((response) => { |
||||
|
if (response.code === 200) { |
||||
|
this.msgSuccess("修改成功"); |
||||
|
this.open = false; |
||||
|
this.getList(); |
||||
|
} |
||||
|
}); |
||||
|
} else { |
||||
|
addZrdw(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 delZrdw(ids); |
||||
|
}) |
||||
|
.then(() => { |
||||
|
this.getList(); |
||||
|
this.msgSuccess("删除成功"); |
||||
|
}) |
||||
|
.catch(function () {}); |
||||
|
} else { |
||||
|
this.$message.warning("请选择要删除的数据!!"); |
||||
|
} |
||||
|
}, |
||||
|
/** 导出按钮操作 */ |
||||
|
handleExport() { |
||||
|
const queryParams = this.queryParams; |
||||
|
let message = "是否确认导出所有的数据项?"; |
||||
|
if (this.ids) { |
||||
|
message = "是否确认导出选中的数据项?"; |
||||
|
queryParams.ids = this.ids; |
||||
|
} |
||||
|
this.$confirm(message, "警告", { |
||||
|
confirmButtonText: "确定", |
||||
|
cancelButtonText: "取消", |
||||
|
type: "warning", |
||||
|
}) |
||||
|
.then(function () { |
||||
|
return exportZrdw(queryParams); |
||||
|
}) |
||||
|
.then((response) => { |
||||
|
this.downloadFile(response, true, response.msg); |
||||
|
// this.download(response.msg); |
||||
|
}) |
||||
|
.catch(function () {}); |
||||
|
}, |
||||
|
}, |
||||
|
}; |
||||
|
</script> |
||||
|
<style lang="scss" scoped> |
||||
|
@import "@/assets/css/dialog.scss"; |
||||
|
//::v-deep { |
||||
|
// .el-dialog { |
||||
|
// margin-top: 10vh !important; |
||||
|
// } |
||||
|
//} |
||||
|
</style> |
Loading…
Reference in new issue