|
@@ -50,9 +50,9 @@
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
style="margin-left: 30px"
|
|
|
- @click="download"
|
|
|
:size="searchSize"
|
|
|
class="fr"
|
|
|
+ @click="download"
|
|
|
>
|
|
|
导出
|
|
|
</el-button>
|
|
@@ -71,9 +71,9 @@
|
|
|
<el-row style="padding: 10px 0 0 0">
|
|
|
<el-col :span="6" style="width: 240px; margin-right: 10px">
|
|
|
<el-input
|
|
|
+ v-model="parmValue.zxNo"
|
|
|
clearable
|
|
|
placeholder="竞价订单号"
|
|
|
- v-model="parmValue.zxNo"
|
|
|
maxlength="40"
|
|
|
:size="searchSize"
|
|
|
@blur="
|
|
@@ -81,15 +81,14 @@
|
|
|
parmValue.page = 1;
|
|
|
searchList();
|
|
|
"
|
|
|
- >
|
|
|
- </el-input>
|
|
|
+ />
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="6" style="width: 240px; margin-right: 10px">
|
|
|
<el-input
|
|
|
+ v-model="parmValue.supplier"
|
|
|
clearable
|
|
|
placeholder="供应商"
|
|
|
- v-model="parmValue.supplier"
|
|
|
maxlength="40"
|
|
|
:size="searchSize"
|
|
|
@blur="
|
|
@@ -97,15 +96,14 @@
|
|
|
parmValue.page = 1;
|
|
|
searchList();
|
|
|
"
|
|
|
- >
|
|
|
- </el-input>
|
|
|
+ />
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="6" style="width: 240px">
|
|
|
<el-input
|
|
|
+ v-model="parmValue.creater"
|
|
|
clearable
|
|
|
placeholder="采购员"
|
|
|
- v-model="parmValue.creater"
|
|
|
maxlength="40"
|
|
|
:size="searchSize"
|
|
|
@blur="
|
|
@@ -113,8 +111,7 @@
|
|
|
parmValue.page = 1;
|
|
|
searchList();
|
|
|
"
|
|
|
- >
|
|
|
- </el-input>
|
|
|
+ />
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="4" style="width: 66px; float: right">
|
|
@@ -123,48 +120,78 @@
|
|
|
</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="6" style="width: 240px; margin-top: 10px;margin-right:10px">
|
|
|
+ <el-input
|
|
|
+ v-model="parmValue.good_name"
|
|
|
+ :size="searchSize"
|
|
|
+ placeholder="商品名称"
|
|
|
+ @blur="
|
|
|
+ pageInfo.curr = 1;
|
|
|
+ parmValue.page = 1;
|
|
|
+ searchList();
|
|
|
+ "
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+
|
|
|
+ <el-col :span="6" style="width: 240px; margin-top: 10px">
|
|
|
+ <el-input
|
|
|
+ v-model="parmValue.apply_name"
|
|
|
+ :size="searchSize"
|
|
|
+ placeholder="业务员"
|
|
|
+ @blur="
|
|
|
+ pageInfo.curr = 1;
|
|
|
+ parmValue.page = 1;
|
|
|
+ searchList();
|
|
|
+ "
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
</div>
|
|
|
</template>
|
|
|
</ex-table>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import mixinPage from "@/mixins/elPaginationHandle";
|
|
|
-import resToken from "@/mixins/resToken";
|
|
|
-import urlConfig from "@/apis/url-config";
|
|
|
-import asyncRequest from "@/apis/service/reportQuery/purchaseReport";
|
|
|
-import periodDatePickerActive from "../period-date-picker/main.vue";
|
|
|
-import { table5 } from "./columns";
|
|
|
-import { mapGetters } from "vuex";
|
|
|
+import mixinPage from '@/mixins/elPaginationHandle'
|
|
|
+import resToken from '@/mixins/resToken'
|
|
|
+import urlConfig from '@/apis/url-config'
|
|
|
+import asyncRequest from '@/apis/service/reportQuery/purchaseReport'
|
|
|
+import periodDatePickerActive from '../period-date-picker/main.vue'
|
|
|
+import { table5 } from './columns'
|
|
|
+import { mapGetters } from 'vuex'
|
|
|
|
|
|
export default {
|
|
|
- name: "purchaseOrder",
|
|
|
- mixins: [mixinPage, resToken],
|
|
|
+ name: 'PurchaseOrder',
|
|
|
components: {
|
|
|
- periodDatePickerActive,
|
|
|
+ periodDatePickerActive
|
|
|
},
|
|
|
+ mixins: [mixinPage, resToken],
|
|
|
computed: {
|
|
|
- ...mapGetters(["tablebtnSize", "searchSize", "size"]),
|
|
|
+ ...mapGetters(['tablebtnSize', 'searchSize', 'size'])
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
- //选中数组
|
|
|
+ // 选中数组
|
|
|
changeList: [],
|
|
|
- //全局url
|
|
|
+ // 全局url
|
|
|
fileUrl: urlConfig.baseURL,
|
|
|
- //loading
|
|
|
+ // loading
|
|
|
loading: false,
|
|
|
- //请求参数集合
|
|
|
+ // 请求参数集合
|
|
|
parmValue: {
|
|
|
- zxNo: "", //竞价订单号
|
|
|
- start_date: "", //起始时间
|
|
|
- end_date: "", // 结束时间
|
|
|
- cbaddtime_start_date: "", //采购回复起始时间
|
|
|
- cbaddtime_end_date: "", //采购回复结束时间,
|
|
|
- supplier: "", //供应商名称
|
|
|
- creater: "", //采购员
|
|
|
+ apply_name: '',
|
|
|
+ good_name: '',
|
|
|
+ zxNo: '', // 竞价订单号
|
|
|
+ start_date: '', // 起始时间
|
|
|
+ end_date: '', // 结束时间
|
|
|
+ cbaddtime_start_date: '', // 采购回复起始时间
|
|
|
+ cbaddtime_end_date: '', // 采购回复结束时间,
|
|
|
+ supplier: '', // 供应商名称
|
|
|
+ creater: '', // 采购员
|
|
|
page: 1, // 页码
|
|
|
- size: 15, // 每页显示条数
|
|
|
+ size: 15 // 每页显示条数
|
|
|
// is_export:0//是否导出0/1
|
|
|
},
|
|
|
// 表格 - 数据集合
|
|
@@ -173,103 +200,105 @@ export default {
|
|
|
table: {
|
|
|
stripe: true,
|
|
|
border: true,
|
|
|
- _defaultHeader_: ["setcol"],
|
|
|
+ _defaultHeader_: ['setcol']
|
|
|
},
|
|
|
// 表格 - 分页
|
|
|
pageInfo: {
|
|
|
size: 15,
|
|
|
curr: 1,
|
|
|
- total: 0,
|
|
|
+ total: 0
|
|
|
},
|
|
|
// 表格表头 - 列参数
|
|
|
- table5: table5,
|
|
|
- };
|
|
|
+ table5: table5
|
|
|
+ }
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.searchList();
|
|
|
+ this.searchList()
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
- //初始化http请求
|
|
|
+ // 初始化http请求
|
|
|
async searchList() {
|
|
|
if (
|
|
|
- (this.parmValue.start_date !== "" && this.parmValue.end_date === "") ||
|
|
|
- (this.parmValue.start_date === "" && this.parmValue.end_date !== "")
|
|
|
+ (this.parmValue.start_date !== '' && this.parmValue.end_date === '') ||
|
|
|
+ (this.parmValue.start_date === '' && this.parmValue.end_date !== '')
|
|
|
) {
|
|
|
- this.$message.warning("时间区间不完整!");
|
|
|
- return;
|
|
|
+ this.$message.warning('时间区间不完整!')
|
|
|
+ return
|
|
|
}
|
|
|
// return;
|
|
|
- this.loading = true;
|
|
|
+ this.loading = true
|
|
|
|
|
|
- const res = await asyncRequest.reportconsultinfobidssum(this.parmValue);
|
|
|
+ const res = await asyncRequest.reportconsultinfobidssum(this.parmValue)
|
|
|
if (res && res.code === 0 && res.data) {
|
|
|
- console.log(res);
|
|
|
- this.tableData = res.data.list;
|
|
|
- this.pageInfo.total = Number(res.data.count);
|
|
|
+ console.log(res)
|
|
|
+ this.tableData = res.data.list
|
|
|
+ this.pageInfo.total = Number(res.data.count)
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
- await this.logout();
|
|
|
+ await this.logout()
|
|
|
} else {
|
|
|
- this.tableData = [];
|
|
|
- this.pageInfo.total = 0;
|
|
|
- this.$message.warning(res.message);
|
|
|
+ this.tableData = []
|
|
|
+ this.pageInfo.total = 0
|
|
|
+ this.$message.warning(res.message)
|
|
|
}
|
|
|
- this.loading = false;
|
|
|
+ this.loading = false
|
|
|
},
|
|
|
|
|
|
- //重置
|
|
|
+ // 重置
|
|
|
restSearch() {
|
|
|
this.parmValue = {
|
|
|
- zxNo: "", //竞价订单号
|
|
|
- start_date: "", //起始时间
|
|
|
- end_date: "", // 结束时间
|
|
|
+ zxNo: '', // 竞价订单号
|
|
|
+ start_date: '', // 起始时间
|
|
|
+ end_date: '', // 结束时间
|
|
|
page: 1, // 页码
|
|
|
size: 15, // 每页显示条数
|
|
|
+ apply_name: '',
|
|
|
+ good_name: ''
|
|
|
// is_export:0//是否导出0/1
|
|
|
- };
|
|
|
+ }
|
|
|
// 表格 - 分页
|
|
|
this.pageInfo = {
|
|
|
size: 15,
|
|
|
curr: 1,
|
|
|
- total: 0,
|
|
|
- };
|
|
|
- this.searchList();
|
|
|
+ total: 0
|
|
|
+ }
|
|
|
+ this.searchList()
|
|
|
},
|
|
|
|
|
|
// 时间函数
|
|
|
async time(e, isPurchase = false) {
|
|
|
- const startProp = isPurchase ? "cbaddtime_start_date" : "start_date";
|
|
|
- const endProp = isPurchase ? "cbaddtime_end_date" : "end_date";
|
|
|
+ const startProp = isPurchase ? 'cbaddtime_start_date' : 'start_date'
|
|
|
+ const endProp = isPurchase ? 'cbaddtime_end_date' : 'end_date'
|
|
|
|
|
|
- const baseName = isPurchase ? "采购回复" : "竞价";
|
|
|
+ const baseName = isPurchase ? '采购回复' : '竞价'
|
|
|
|
|
|
- this.parmValue[startProp] = e.startTime || "";
|
|
|
- this.parmValue[endProp] = e.endTime || "";
|
|
|
+ this.parmValue[startProp] = e.startTime || ''
|
|
|
+ this.parmValue[endProp] = e.endTime || ''
|
|
|
|
|
|
if (
|
|
|
- (this.parmValue[startProp] !== "" && this.parmValue[endProp] === "") ||
|
|
|
- (this.parmValue[startProp] === "" && this.parmValue[endProp] !== "")
|
|
|
+ (this.parmValue[startProp] !== '' && this.parmValue[endProp] === '') ||
|
|
|
+ (this.parmValue[startProp] === '' && this.parmValue[endProp] !== '')
|
|
|
) {
|
|
|
- this.$message.warning(`${baseName} 时间区间不完整!`);
|
|
|
- return;
|
|
|
+ this.$message.warning(`${baseName} 时间区间不完整!`)
|
|
|
+ return
|
|
|
}
|
|
|
|
|
|
// 表格 - 分页
|
|
|
// this.$set(this.pageInfo)
|
|
|
// this.$set(this.pageInfo, 'curr', '2');
|
|
|
- this.pageInfo.curr = 1;
|
|
|
+ this.pageInfo.curr = 1
|
|
|
// console.log(this.pageInfo.curr)
|
|
|
- this.parmValue.page = 1;
|
|
|
- await this.searchList();
|
|
|
+ this.parmValue.page = 1
|
|
|
+ await this.searchList()
|
|
|
},
|
|
|
|
|
|
- //选中触发函数
|
|
|
+ // 选中触发函数
|
|
|
selection_change(e) {
|
|
|
- const { list } = e;
|
|
|
- //选中的数组集合
|
|
|
- this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
|
|
|
+ const { list } = e
|
|
|
+ // 选中的数组集合
|
|
|
+ this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : []
|
|
|
},
|
|
|
- //导出文件
|
|
|
+ // 导出文件
|
|
|
async download() {
|
|
|
// model.is_export = 1;
|
|
|
if (!this.loading) {
|
|
@@ -277,94 +306,94 @@ export default {
|
|
|
start_date,
|
|
|
end_date,
|
|
|
cbaddtime_start_date,
|
|
|
- cbaddtime_end_date,
|
|
|
- } = this.parmValue;
|
|
|
+ cbaddtime_end_date
|
|
|
+ } = this.parmValue
|
|
|
if (
|
|
|
- start_date == "" &&
|
|
|
- end_date == "" &&
|
|
|
- cbaddtime_start_date == "" &&
|
|
|
- cbaddtime_end_date == ""
|
|
|
+ start_date == '' &&
|
|
|
+ end_date == '' &&
|
|
|
+ cbaddtime_start_date == '' &&
|
|
|
+ cbaddtime_end_date == ''
|
|
|
) {
|
|
|
- this.$message.warning("请选择时间区间!");
|
|
|
- return;
|
|
|
+ this.$message.warning('请选择时间区间!')
|
|
|
+ return
|
|
|
}
|
|
|
if (
|
|
|
- (start_date == "" && end_date != "") ||
|
|
|
- (start_date != "" && end_date == "") ||
|
|
|
- (cbaddtime_start_date == "" && cbaddtime_end_date != "") ||
|
|
|
- (cbaddtime_start_date != "" && cbaddtime_end_date == "")
|
|
|
+ (start_date == '' && end_date != '') ||
|
|
|
+ (start_date != '' && end_date == '') ||
|
|
|
+ (cbaddtime_start_date == '' && cbaddtime_end_date != '') ||
|
|
|
+ (cbaddtime_start_date != '' && cbaddtime_end_date == '')
|
|
|
) {
|
|
|
- this.$message.warning("时间区间不完成!");
|
|
|
- return;
|
|
|
+ this.$message.warning('时间区间不完成!')
|
|
|
+ return
|
|
|
}
|
|
|
- const num = 30 * 24 * 60 * 60 * 1000;
|
|
|
- if (start_date != "" && end_date != "") {
|
|
|
+ const num = 30 * 24 * 60 * 60 * 1000
|
|
|
+ if (start_date != '' && end_date != '') {
|
|
|
if (new Date(end_date).valueOf() - new Date(start_date).valueOf() > num) {
|
|
|
- this.$message.warning("竞价时间区间不能超过30天");
|
|
|
- return;
|
|
|
+ this.$message.warning('竞价时间区间不能超过30天')
|
|
|
+ return
|
|
|
}
|
|
|
}
|
|
|
- if (cbaddtime_start_date != "" && cbaddtime_end_date != "") {
|
|
|
+ if (cbaddtime_start_date != '' && cbaddtime_end_date != '') {
|
|
|
if (
|
|
|
new Date(cbaddtime_end_date).valueOf() -
|
|
|
new Date(cbaddtime_start_date).valueOf() >
|
|
|
num
|
|
|
) {
|
|
|
- this.$message.warning("回复时间区间不能超过30天");
|
|
|
- return;
|
|
|
+ this.$message.warning('回复时间区间不能超过30天')
|
|
|
+ return
|
|
|
}
|
|
|
}
|
|
|
- const model = JSON.parse(JSON.stringify(this.parmValue));
|
|
|
- this.loading = true;
|
|
|
- let httpType = `aplication/zip`;
|
|
|
+ const model = JSON.parse(JSON.stringify(this.parmValue))
|
|
|
+ this.loading = true
|
|
|
+ const httpType = `aplication/zip`
|
|
|
axios({
|
|
|
- method: "post",
|
|
|
- url: this.fileUrl + "admin/reportconsultinfobidssumexport",
|
|
|
- responseType: "blob",
|
|
|
+ method: 'post',
|
|
|
+ url: this.fileUrl + 'admin/reportconsultinfobidssumexport',
|
|
|
+ responseType: 'blob',
|
|
|
data: model,
|
|
|
headers: {
|
|
|
// 'Content-Type': 'multipart/form-data',
|
|
|
// Accept: "application/vnd.ms-excel"
|
|
|
- Accept: httpType,
|
|
|
- },
|
|
|
+ Accept: httpType
|
|
|
+ }
|
|
|
})
|
|
|
.then((res) => {
|
|
|
- const { status, data } = res;
|
|
|
+ const { status, data } = res
|
|
|
if (status && data) {
|
|
|
- let url = window.URL.createObjectURL(
|
|
|
+ const url = window.URL.createObjectURL(
|
|
|
new Blob([data], {
|
|
|
// type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
|
|
|
- type: httpType,
|
|
|
+ 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(`导出成功!`);
|
|
|
+ )
|
|
|
+ const link = document.createElement('a')
|
|
|
+ link.style.display = 'none'
|
|
|
+ link.href = url
|
|
|
+ const 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);
|
|
|
+ this.loading = false
|
|
|
+ }, 500)
|
|
|
} else {
|
|
|
- this.$message.error(res.data.message);
|
|
|
+ this.$message.error(res.data.message)
|
|
|
setTimeout(() => {
|
|
|
- this.loading = false;
|
|
|
- }, 500);
|
|
|
+ this.loading = false
|
|
|
+ }, 500)
|
|
|
}
|
|
|
})
|
|
|
.catch((error) => {
|
|
|
- console.log(error);
|
|
|
- this.loading = false;
|
|
|
- });
|
|
|
+ console.log(error)
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
}
|
|
|
- },
|
|
|
- },
|
|
|
-};
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
.purchaseOrder {
|