table5.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. <template>
  2. <div>
  3. <ex-table
  4. v-loading="loading"
  5. :table="table"
  6. :data="tableData"
  7. :columns="table5"
  8. :page="pageInfo"
  9. :size="size"
  10. @page-curr-change="handlePageChange"
  11. @page-size-change="handleSizeChange"
  12. @screen-reset="
  13. pageInfo.curr = 1;
  14. parmValue.page = 1;
  15. searchList();
  16. "
  17. @screen-submit="
  18. pageInfo.curr = 1;
  19. parmValue.page = 1;
  20. searchList();
  21. "
  22. @selection="selection_change"
  23. >
  24. <template #table-header="{}">
  25. <div style="width: 100%">
  26. <el-row style="padding: 0 0 0 80px">
  27. <el-col :span="6" style="width: 363px;">
  28. <periodDatePickerActive
  29. :start="parmValue.start_date"
  30. :end="parmValue.end_date"
  31. :placeholder="'咨询'"
  32. :width="'165px'"
  33. :size="searchSize"
  34. @timeReturned="time"
  35. />
  36. </el-col>
  37. <el-col :span="4" style="width: 66px; float: right">
  38. <el-button type="primary" style="margin-left:30px;" @click="download" :size="searchSize" class="fr">
  39. 导出
  40. </el-button>
  41. </el-col>
  42. <el-col :span="3" style="width: 66px; float: right">
  43. <el-button
  44. :size="searchSize"
  45. type="primary"
  46. style="float: right; margin-left: 5px"
  47. @click="searchList"
  48. >
  49. 刷新
  50. </el-button>
  51. </el-col>
  52. </el-row>
  53. <el-row style="padding: 10px 0 0 0">
  54. <el-col :span="6" style="width: 240px">
  55. <el-input
  56. clearable
  57. placeholder="咨询订单号"
  58. v-model="parmValue.zxNo"
  59. maxlength="40"
  60. :size="searchSize"
  61. @blur="
  62. pageInfo.curr = 1;
  63. parmValue.page = 1;
  64. searchList();
  65. "
  66. >
  67. </el-input>
  68. </el-col>
  69. <el-col :span="4" style="width: 66px; float: right">
  70. <el-button
  71. type="warning"
  72. class="fr"
  73. :size="searchSize"
  74. @click="restSearch"
  75. >
  76. 重置
  77. </el-button>
  78. </el-col>
  79. </el-row>
  80. </div>
  81. </template>
  82. </ex-table>
  83. </div>
  84. </template>
  85. <script>
  86. import mixinPage from "@/mixins/elPaginationHandle";
  87. import resToken from "@/mixins/resToken";
  88. import urlConfig from "@/apis/url-config";
  89. import asyncRequest from "@/apis/service/reportQuery/purchaseReport";
  90. import periodDatePickerActive from "../period-date-picker/main.vue";
  91. import { table5} from "./columns";
  92. import { mapGetters } from "vuex";
  93. export default {
  94. name: "purchaseOrder",
  95. mixins: [mixinPage, resToken],
  96. components: {
  97. periodDatePickerActive
  98. },
  99. computed: {
  100. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  101. },
  102. data() {
  103. return {
  104. //选中数组
  105. changeList: [],
  106. //全局url
  107. fileUrl: urlConfig.baseURL,
  108. //loading
  109. loading: false,
  110. //请求参数集合
  111. parmValue: {
  112. zxNo:"", //咨询订单号
  113. start_date: "", //起始时间
  114. end_date: "", // 结束时间
  115. page: 1, // 页码
  116. size: 15, // 每页显示条数
  117. is_export:0//是否导出
  118. },
  119. // 表格 - 数据集合
  120. tableData: [],
  121. // 表格 - 参数
  122. table: {
  123. stripe: true,
  124. border: true,
  125. _defaultHeader_: ["setcol"],
  126. },
  127. // 表格 - 分页
  128. pageInfo: {
  129. size: 15,
  130. curr: 1,
  131. total: 0,
  132. },
  133. // 表格表头 - 列参数
  134. table5: table5,
  135. };
  136. },
  137. mounted() {
  138. this.searchList();
  139. },
  140. methods: {
  141. //初始化http请求
  142. async searchList() {
  143. if (
  144. (this.parmValue.start_date !== "" && this.parmValue.end_date === "") ||
  145. (this.parmValue.start_date === "" && this.parmValue.end_date !== "")
  146. ) {
  147. this.$message.warning("时间区间不完整!");
  148. return;
  149. }
  150. // return;
  151. this.loading = true;
  152. const res = await asyncRequest.reportconsultinfobidssum(this.parmValue);
  153. if (res && res.code === 0 && res.data) {
  154. console.log(res)
  155. this.tableData = res.data.list;
  156. this.pageInfo.total = Number(res.data.total);
  157. } else if (res && res.code >= 100 && res.code <= 104) {
  158. await this.logout();
  159. } else {
  160. this.tableData = [];
  161. this.pageInfo.total = 0;
  162. this.$message.warning(res.message)
  163. }
  164. this.loading = false;
  165. },
  166. //重置
  167. restSearch() {
  168. this.parmValue = {
  169. zxNo:"", //咨询订单号
  170. start_date: "", //起始时间
  171. end_date: "", // 结束时间
  172. page: 1, // 页码
  173. size: 15, // 每页显示条数
  174. is_export:0//是否导出
  175. };
  176. // 表格 - 分页
  177. this.pageInfo = {
  178. size: 15,
  179. curr: 1,
  180. total: 0,
  181. };
  182. this.searchList();
  183. },
  184. // 时间函数
  185. async time(e) {
  186. this.parmValue.start_date = e.startTime || "";
  187. this.parmValue.end_date = e.endTime || "";
  188. await this.searchList();
  189. },
  190. //选中触发函数
  191. selection_change(e) {
  192. const { list } = e;
  193. //选中的数组集合
  194. this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
  195. },
  196. //导出文件
  197. async download() {
  198. if(this.changeList.length<=0){
  199. this.$message.warning("请选择有效数据")
  200. return;
  201. }
  202. let model = {
  203. cgdNos:[]
  204. }
  205. this.changeList.forEach(item => {
  206. model.cgdNos.push(item.cgdNo)
  207. });
  208. // const res = await asyncRequest.exportcgdlist(model)
  209. if (!this.loading) {
  210. this.loading = true;
  211. let httpType = `aplication/zip`;
  212. axios({
  213. method: "post",
  214. url: this.fileUrl + "admin/exportcgdlist",
  215. responseType: "blob",
  216. data: model,
  217. headers: {
  218. // 'Content-Type': 'multipart/form-data',
  219. // Accept: "application/vnd.ms-excel"
  220. Accept: httpType,
  221. },
  222. })
  223. .then((res) => {
  224. // console.log(res)
  225. // console.log(this.fileUrl)
  226. // return;
  227. if (res && res.status == 200 && res.data) {
  228. let url = window.URL.createObjectURL(
  229. new Blob([res.data], {
  230. // type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
  231. type: httpType
  232. })
  233. );
  234. let link = document.createElement("a");
  235. link.style.display = "none";
  236. link.href = url;
  237. let excelName = "采购单.zip";
  238. link.setAttribute("download", excelName);
  239. document.body.appendChild(link);
  240. link.click();
  241. link.remove();
  242. window.URL.revokeObjectURL(url); //释放掉blob对象
  243. this.$message.success(`导出成功!`);
  244. setTimeout(() => {
  245. this.loading = false;
  246. }, 500);
  247. } else {
  248. this.$message.error(res.data.message);
  249. setTimeout(() => {
  250. this.loading = false;
  251. }, 500);
  252. }
  253. })
  254. .catch((error) => {
  255. console.log(error);
  256. this.loading = false;
  257. });
  258. }
  259. },
  260. },
  261. };
  262. </script>
  263. <style lang="scss" scoped>
  264. .purchaseOrder {
  265. // text-align: right;
  266. }
  267. </style>