|
@@ -57,7 +57,7 @@
|
|
|
<el-input
|
|
|
clearable
|
|
|
placeholder="客户名称"
|
|
|
- v-model="parmValue.xiugai1"
|
|
|
+ v-model="parmValue.companyName"
|
|
|
maxlength="40"
|
|
|
:size="searchSize"
|
|
|
@blur="
|
|
@@ -118,10 +118,10 @@ export default {
|
|
|
loading: false,
|
|
|
//请求参数集合
|
|
|
parmValue: {
|
|
|
- xiugai1:"", //客户名称
|
|
|
+ companyName:"", //客户名称
|
|
|
start_date: "", //起始时间
|
|
|
end_date: "", // 结束时间
|
|
|
-
|
|
|
+ is_export:0,//是否导出0/1
|
|
|
page: 1, // 页码
|
|
|
size: 15, // 每页显示条数
|
|
|
|
|
@@ -145,7 +145,7 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
|
-
|
|
|
+ alert("未采反信息:接口暂无数据,以此提示")
|
|
|
this.searchList();
|
|
|
},
|
|
|
|
|
@@ -162,13 +162,14 @@ export default {
|
|
|
return;
|
|
|
this.loading = true;
|
|
|
|
|
|
- const res = await asyncRequest.list(this.parmValue);
|
|
|
+ const res = await asyncRequest.reportconsultinfobidssumnot(this.parmValue);
|
|
|
if (res && res.code === 0 && res.data) {
|
|
|
this.tableData = res.data.list;
|
|
|
this.pageInfo.total = Number(res.data.count);
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
await this.logout();
|
|
|
} else {
|
|
|
+ this.$message.warning(res.message)
|
|
|
this.tableData = [];
|
|
|
this.pageInfo.total = 0;
|
|
|
}
|
|
@@ -178,10 +179,12 @@ export default {
|
|
|
//重置
|
|
|
restSearch() {
|
|
|
this.parmValue = {
|
|
|
+ companyName:"", //客户名称
|
|
|
start_date: "", //新建起始时间
|
|
|
end_date: "", // 新建结束时间
|
|
|
page: 1, // 页码
|
|
|
size: 15, // 每页显示条数
|
|
|
+ is_export:0//是否导出0/1
|
|
|
};
|
|
|
// 表格 - 分页
|
|
|
this.pageInfo = {
|
|
@@ -207,26 +210,18 @@ export default {
|
|
|
},
|
|
|
//导出文件
|
|
|
async download() {
|
|
|
- if(this.changeList.length<=0){
|
|
|
- this.$message.warning("请选择有效数据")
|
|
|
- return;
|
|
|
- }
|
|
|
- let model = {
|
|
|
- cgdNos:[]
|
|
|
- }
|
|
|
- this.changeList.forEach(item => {
|
|
|
- model.cgdNos.push(item.cgdNo)
|
|
|
- });
|
|
|
-
|
|
|
- // const res = await asyncRequest.exportcgdlist(model)
|
|
|
-
|
|
|
-
|
|
|
+ // if(this.changeList.length<=0){
|
|
|
+ // this.$message.warning("请选择有效数据")
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
+ let model = JSON.parse(JSON.stringify(this.parmValue))
|
|
|
+ model.is_export = 1;
|
|
|
if (!this.loading) {
|
|
|
this.loading = true;
|
|
|
let httpType = `aplication/zip`;
|
|
|
axios({
|
|
|
method: "post",
|
|
|
- url: this.fileUrl + "admin/exportcgdlist",
|
|
|
+ url: this.fileUrl + "admin/reportconsultinfobidssumnot",
|
|
|
responseType: "blob",
|
|
|
data: model,
|
|
|
headers: {
|
|
@@ -249,7 +244,7 @@ export default {
|
|
|
let link = document.createElement("a");
|
|
|
link.style.display = "none";
|
|
|
link.href = url;
|
|
|
- let excelName = "采购单.zip";
|
|
|
+ let excelName = "已采反报价.zip";
|
|
|
link.setAttribute("download", excelName);
|
|
|
document.body.appendChild(link);
|
|
|
link.click();
|