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.
 
 
 
 
 

529 lines
14 KiB

<template>
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item
label="资格预审文件获取开始时间"
prop="fileGainTime"
label-width="180px"
>
<el-date-picker
clearable
size="small"
style="width: 200px"
v-model="queryParams.fileGainTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择资格预审文件获取开始时间"
>
</el-date-picker>
</el-form-item>
<el-form-item>
<el-button
type="cyan"
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"
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['earlyStage:bidPrequ: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="['earlyStage:bidPrequ: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="['earlyStage:bidPrequ:remove']"
>删除</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="bidPrequList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="序号" type="index" width="50" align="center" />
<el-table-column
label="招标项目名称"
align="center"
prop="bidProjectName"
/>
<el-table-column
label="资格预审文件获取开始时间"
align="center"
prop="fileGainTime"
width="180"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.fileGainTime, "{y}-{m}-{d}") }}</span>
</template>
</el-table-column>
<el-table-column
label="发布日期"
align="center"
prop="reportTime"
width="180"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.reportTime, "{y}-{m}-{d}") }}</span>
</template>
</el-table-column>
<el-table-column
label="公告内容附件"
align="center"
prop="noticeAtttachment"
width="180"
>
<template slot-scope="scope">
<div
v-for="(item, index) in JSON.parse(scope.row.noticeAtttachment)"
:key="item + index"
>
<i class="el-icon-document"></i>
{{ item.name }}
<i
class="el-icon-download"
@click="downloadFile(scope)"
style="cursor: pointer"
></i>
</div>
</template>
</el-table-column>
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
width="180"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['earlyStage:bidPrequ:edit']"
>修改</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['earlyStage:bidPrequ: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="700px"
append-to-body
@close="close"
>
<el-form ref="form" :model="form" :rules="rules" label-width="180px">
<el-form-item label="招标项目名称" prop="bidProjectName">
<el-input
v-model="form.bidProjectName"
placeholder="请输入招标项目名称"
/>
</el-form-item>
<el-form-item label="资格预审文件获取开始时间" prop="fileGainTime">
<el-date-picker
clearable
size="small"
style="width: 100%"
v-model="form.fileGainTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择资格预审文件获取开始时间"
>
</el-date-picker>
</el-form-item>
<el-form-item label="发布日期" prop="reportTime">
<el-date-picker
clearable
size="small"
style="width: 100%"
v-model="form.reportTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择发布日期"
>
</el-date-picker>
</el-form-item>
<el-form-item label="公告内容附件" prop="noticeAtttachment">
<!-- <el-input
v-model="form.noticeAtttachment"
placeholder="请输入公告内容附件"
/> -->
<el-upload
class="upload-demo"
action="http://127.0.0.1/thinking/common/upload"
:headers="headers"
:on-preview="handleNoticePreview"
:on-remove="handleNoticeRemove"
:before-remove="beforeNoticeRemove"
multiple
:on-exceed="handleNoticeExceed"
:on-success="submitNoticeUpload"
:file-list="noticeFileList"
>
<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>
<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 {
listBidPrequ,
getBidPrequ,
delBidPrequ,
addBidPrequ,
updateBidPrequ,
exportBidPrequ,
} from "@/api/earlyStage/bidPrequ";
import { getToken } from "@/utils/auth";
import { getFileStream } from "@/api/system/upload";
export default {
name: "BidPrequ",
props: ["proNo"],
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 资格预审公告表格数据
bidPrequList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
ids: null,
data: {
bidProjectName: null,
fileGainTime: null,
reportTime: null,
noticeAtttachment: null,
projectCode: null,
proNo: null,
createUid: null,
createTime: null,
updateUid: null,
updateTime: null,
owerDept: null,
remark: null,
},
},
// 表单参数
form: {},
// 表单校验
rules: {},
// 公告附件
noticeFileList: [],
// 请求头
headers: {
jianwei: "jwtech " + getToken(),
},
};
},
created() {
this.getList();
},
// 父组件 利用axios请求得到的值 传送到子组件,要监听,否则初始渲染时为空
watch: {
proNo: function (n, o) {
this.proNo = n;
this.getList();
},
},
methods: {
/** 查询资格预审公告列表 */
getList() {
this.loading = true;
this.queryParams.data.proNo = this.proNo;
listBidPrequ(this.queryParams).then((response) => {
this.bidPrequList = response.records;
this.total = response.total;
this.loading = false;
});
},
// 表单重置
reset() {
this.form = {
id: null,
bidProjectName: null,
fileGainTime: null,
reportTime: null,
noticeAtttachment: null,
projectCode: null,
proNo: null,
createUid: null,
createTime: null,
updateUid: null,
updateTime: null,
owerDept: null,
remark: null,
};
this.resetForm("form");
this.noticeFileList = [];
},
// 查询表单重置
resetQueryForm() {
this.queryParams = {
pageNum: 1,
pageSize: 10,
data: {
id: null,
bidProjectName: null,
fileGainTime: null,
reportTime: null,
noticeAtttachment: null,
projectCode: null,
proNo: null,
createUid: null,
createTime: null,
updateUid: null,
updateTime: null,
owerDept: null,
remark: null,
},
};
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.open = true;
this.title = "添加资格预审公告";
},
/** 修改按钮操作 */
handleUpdate(row) {
const id = row.id || this.ids;
getBidPrequ(id).then((response) => {
this.form = response.data;
// 公告附件信息
console.log("response.data", response.data);
if (response.data.noticeAtttachment) {
this.noticeFileList = JSON.parse(response.data.noticeAtttachment);
}
this.open = true;
this.title = "修改资格预审公告";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate((valid) => {
// 公告附件
this.form.noticeAtttachment = JSON.stringify(this.noticeFileList);
if (valid) {
if (this.form.id != null) {
updateBidPrequ(this.form).then((response) => {
if (response.code === 200) {
this.msgSuccess("修改成功");
this.open = false;
this.getList();
}
});
} else {
this.form.proNo = this.proNo;
addBidPrequ(this.form).then((response) => {
if (response.code === 200) {
this.msgSuccess("新增成功");
this.open = false;
this.getList();
}
});
}
}
});
},
// 取消按钮
cancel() {
this.open = false;
},
// 关闭弹窗
close() {
this.reset();
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
if (ids) {
this.$confirm("是否删除选中的数据?", "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(function () {
return delBidPrequ(ids);
})
.then(() => {
this.getList();
this.msgSuccess("删除成功");
})
.catch(function () {});
} else {
this.$message.warning("请选择要删除的数据!!");
}
},
submitNoticeUpload(_, fileList) {
console.log("fileList", fileList);
this.noticeFileList.push({
name: fileList.name,
fileName: fileList.response.fileName,
url: fileList.response.url,
uid: fileList.uid,
});
},
handleNoticeRemove(file, fileList) {
// console.log(file, fileList);
let index = this.noticeFileList.findIndex(
(item) => item.uid === file.uid
);
// 删除文件
this.noticeFileList.splice(index, 1);
},
// 表格中下载
downloadFile(scope) {
// console.log(scope);
let file = JSON.parse(scope.row.noticeAtttachment)[0];
this.handleNoticePreview(file);
},
// 点击预览下载文件
handleNoticePreview(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对象
});
},
handleNoticeExceed(files, fileList) {
this.$message.warning(
`当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${
files.length + fileList.length
} 个文件`
);
},
beforeNoticeRemove(file, fileList) {
return this.$confirm(`确定移除 ${file.name}`);
},
},
};
</script>
<style lang="scss" scoped>
::v-deep {
.el-dialog {
margin-top: 2vh !important;
height: 90%;
overflow-y: auto;
}
}
</style>