|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
- <div>
|
|
|
- <div style="width: 100%">
|
|
|
+ <div v-loading="loading">
|
|
|
+ <div style="width: 100%" >
|
|
|
<el-row style="padding: 10px 0 0 0px">
|
|
|
<el-col :span="6" style="width: 363px">
|
|
|
<periodDatePickerActive
|
|
@@ -12,7 +12,7 @@
|
|
|
@timeReturned="time"
|
|
|
/>
|
|
|
</el-col>
|
|
|
- <el-col :span="4" style="width: 66px; float: right">
|
|
|
+ <!-- <el-col :span="4" style="width: 66px; float: right">
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
style="margin-left: 30px"
|
|
@@ -22,7 +22,7 @@
|
|
|
>
|
|
|
导出
|
|
|
</el-button>
|
|
|
- </el-col>
|
|
|
+ </el-col> -->
|
|
|
<el-col :span="3" style="width: 66px; float: right">
|
|
|
<el-button
|
|
|
:size="searchSize"
|
|
@@ -236,71 +236,71 @@ export default {
|
|
|
this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
|
|
|
},
|
|
|
//导出文件
|
|
|
- async download() {
|
|
|
- if (this.changeList.length <= 0) {
|
|
|
- this.$message.warning("请选择有效数据");
|
|
|
- return;
|
|
|
- }
|
|
|
- let model = {
|
|
|
- cgdNos: [],
|
|
|
- };
|
|
|
- this.changeList.forEach((item) => {
|
|
|
- model.cgdNos.push(item.cgdNo);
|
|
|
- });
|
|
|
+ // 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)
|
|
|
+ // // const res = await asyncRequest.exportcgdlist(model)
|
|
|
|
|
|
- if (!this.loading) {
|
|
|
- this.loading = true;
|
|
|
- let httpType = `aplication/zip`;
|
|
|
- axios({
|
|
|
- method: "post",
|
|
|
- url: this.fileUrl + "admin/exportcgdlist",
|
|
|
- responseType: "blob",
|
|
|
- data: model,
|
|
|
- headers: {
|
|
|
- // 'Content-Type': 'multipart/form-data',
|
|
|
- // Accept: "application/vnd.ms-excel"
|
|
|
- Accept: httpType,
|
|
|
- },
|
|
|
- })
|
|
|
- .then((res) => {
|
|
|
- // console.log(res)
|
|
|
- // console.log(this.fileUrl)
|
|
|
- // return;
|
|
|
- if (res && res.status == 200 && res.data) {
|
|
|
- let url = window.URL.createObjectURL(
|
|
|
- new Blob([res.data], {
|
|
|
- // type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
|
|
|
- type: httpType,
|
|
|
- })
|
|
|
- );
|
|
|
- let link = document.createElement("a");
|
|
|
- link.style.display = "none";
|
|
|
- link.href = url;
|
|
|
- let excelName = "采购单.zip";
|
|
|
- link.setAttribute("download", excelName);
|
|
|
- document.body.appendChild(link);
|
|
|
- link.click();
|
|
|
- link.remove();
|
|
|
- window.URL.revokeObjectURL(url); //释放掉blob对象
|
|
|
- this.$message.success(`导出成功!`);
|
|
|
- setTimeout(() => {
|
|
|
- this.loading = false;
|
|
|
- }, 500);
|
|
|
- } else {
|
|
|
- this.$message.error(res.data.message);
|
|
|
- setTimeout(() => {
|
|
|
- this.loading = false;
|
|
|
- }, 500);
|
|
|
- }
|
|
|
- })
|
|
|
- .catch((error) => {
|
|
|
- console.log(error);
|
|
|
- this.loading = false;
|
|
|
- });
|
|
|
- }
|
|
|
- },
|
|
|
+ // if (!this.loading) {
|
|
|
+ // this.loading = true;
|
|
|
+ // let httpType = `aplication/zip`;
|
|
|
+ // axios({
|
|
|
+ // method: "post",
|
|
|
+ // url: this.fileUrl + "admin/exportcgdlist",
|
|
|
+ // responseType: "blob",
|
|
|
+ // data: model,
|
|
|
+ // headers: {
|
|
|
+ // // 'Content-Type': 'multipart/form-data',
|
|
|
+ // // Accept: "application/vnd.ms-excel"
|
|
|
+ // Accept: httpType,
|
|
|
+ // },
|
|
|
+ // })
|
|
|
+ // .then((res) => {
|
|
|
+ // // console.log(res)
|
|
|
+ // // console.log(this.fileUrl)
|
|
|
+ // // return;
|
|
|
+ // if (res && res.status == 200 && res.data) {
|
|
|
+ // let url = window.URL.createObjectURL(
|
|
|
+ // new Blob([res.data], {
|
|
|
+ // // type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
|
|
|
+ // type: httpType,
|
|
|
+ // })
|
|
|
+ // );
|
|
|
+ // let link = document.createElement("a");
|
|
|
+ // link.style.display = "none";
|
|
|
+ // link.href = url;
|
|
|
+ // let excelName = "采购单.zip";
|
|
|
+ // link.setAttribute("download", excelName);
|
|
|
+ // document.body.appendChild(link);
|
|
|
+ // link.click();
|
|
|
+ // link.remove();
|
|
|
+ // window.URL.revokeObjectURL(url); //释放掉blob对象
|
|
|
+ // this.$message.success(`导出成功!`);
|
|
|
+ // setTimeout(() => {
|
|
|
+ // this.loading = false;
|
|
|
+ // }, 500);
|
|
|
+ // } else {
|
|
|
+ // this.$message.error(res.data.message);
|
|
|
+ // setTimeout(() => {
|
|
|
+ // this.loading = false;
|
|
|
+ // }, 500);
|
|
|
+ // }
|
|
|
+ // })
|
|
|
+ // .catch((error) => {
|
|
|
+ // console.log(error);
|
|
|
+ // this.loading = false;
|
|
|
+ // });
|
|
|
+ // }
|
|
|
+ // },
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
@@ -308,5 +308,9 @@ export default {
|
|
|
.purchaseOrder {
|
|
|
// text-align: right;
|
|
|
}
|
|
|
+/deep/ .el-pagination{
|
|
|
+ float: right;
|
|
|
+ margin-top: 10px;
|
|
|
+}
|
|
|
</style>
|
|
|
|