poShipmentTable.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <template>
  2. <el-row v-loading="loading">
  3. <el-col :span="8" style="width: 824px">
  4. <period-date-picker
  5. :start="parmValue.start"
  6. :end="parmValue.end"
  7. :type="1"
  8. :width="'145px'"
  9. :placeholder="'发货'"
  10. :size="searchSize"
  11. @timeReturned="timeReturned($event)"
  12. />
  13. </el-col>
  14. <el-col :span="4" class="fr" style="width: 300px">
  15. <el-button
  16. type="primary"
  17. class="fr ml10"
  18. icon="el-icon-download"
  19. :size="searchSize"
  20. @click="Export()"
  21. >导出</el-button
  22. >
  23. <el-button
  24. type="warning"
  25. class="fr ml10"
  26. :size="searchSize"
  27. @click="restSearch"
  28. >
  29. 重置
  30. </el-button>
  31. </el-col>
  32. </el-row>
  33. </template>
  34. <script>
  35. import { baseApi2 } from "@/config";
  36. export default {
  37. name: "poShipmentTable ",
  38. data() {
  39. return {
  40. searchSize: "small",
  41. size: "mini",
  42. loading: false,
  43. parmValue: {
  44. start: "",
  45. end: "",
  46. },
  47. };
  48. },
  49. methods: {
  50. async timeReturned(e) {
  51. if (e.startTime !== "") {
  52. this.parmValue.start = e.startTime;
  53. } else {
  54. this.parmValue.start = "";
  55. }
  56. if (e.endTime !== "") {
  57. this.parmValue.end = e.endTime;
  58. } else {
  59. this.parmValue.end = "";
  60. }
  61. },
  62. restSearch() {
  63. this.parmValue = {
  64. start: "",
  65. end: "",
  66. };
  67. },
  68. async timeVerification() {
  69. return new Promise(async (resolve, reject) => {
  70. if (this.parmValue.start === "" && this.parmValue.end === "") {
  71. resolve({ ok: false, msg: "请选择时间区间!" });
  72. } else if (
  73. (this.parmValue.start === "" && this.parmValue.end !== "") ||
  74. (this.parmValue.start !== "" && this.parmValue.end === "")
  75. ) {
  76. resolve({ ok: false, msg: "时间区间不完整!" });
  77. } else {
  78. resolve({ ok: true, msg: "ok" });
  79. }
  80. });
  81. },
  82. /**
  83. * 批量导出开票信息
  84. */
  85. async Export() {
  86. if (!this.loading) {
  87. this.timeVerification().then(async (r) => {
  88. if (!r.ok) {
  89. this.$message.warning(r.msg);
  90. } else {
  91. this.loading = true;
  92. let url = "fhreport";
  93. let httpType = `aplication/zip`;
  94. let title =
  95. this.parmValue.start !== ""
  96. ? `采购单发货数据时间${this.parmValue.start}至${this.parmValue.end}`
  97. : "";
  98. axios({
  99. method: "post",
  100. url: baseApi2 + url,
  101. responseType: "blob",
  102. data: this.parmValue,
  103. headers: {
  104. Accept: httpType,
  105. },
  106. })
  107. .then((res) => {
  108. if (res && res.status == 200 && res.data) {
  109. let blob = new Blob([res.data], {
  110. type: httpType,
  111. });
  112. let url = window.URL.createObjectURL(blob);
  113. let aLink = document.createElement("a");
  114. aLink.style.display = "none";
  115. aLink.href = url;
  116. aLink.setAttribute("download", `${title}.zip`);
  117. document.body.appendChild(aLink);
  118. aLink.click();
  119. document.body.removeChild(aLink); //下载完成移除元素
  120. window.URL.revokeObjectURL(url); //释放掉blob对象
  121. this.$message.success(`${title}信息导出成功!`);
  122. setTimeout(() => {
  123. this.loading = false;
  124. }, 500);
  125. } else {
  126. this.$message.error(res.data.message);
  127. setTimeout(() => {
  128. this.loading = false;
  129. }, 500);
  130. }
  131. })
  132. .catch((error) => {
  133. console.log(error);
  134. this.loading = false;
  135. });
  136. }
  137. });
  138. }
  139. },
  140. },
  141. };
  142. </script>
  143. <style>
  144. </style>