table5.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  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. }
  163. this.loading = false;
  164. },
  165. //重置
  166. restSearch() {
  167. this.parmValue = {
  168. zxNo:"", //咨询订单号
  169. start_date: "", //起始时间
  170. end_date: "", // 结束时间
  171. page: 1, // 页码
  172. size: 15, // 每页显示条数
  173. is_export:0//是否导出
  174. };
  175. // 表格 - 分页
  176. this.pageInfo = {
  177. size: 15,
  178. curr: 1,
  179. total: 0,
  180. };
  181. this.searchList();
  182. },
  183. // 时间函数
  184. async time(e) {
  185. this.parmValue.start_date = e.startTime || "";
  186. this.parmValue.end_date = e.endTime || "";
  187. await this.searchList();
  188. },
  189. //选中触发函数
  190. selection_change(e) {
  191. const { list } = e;
  192. //选中的数组集合
  193. this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
  194. },
  195. //导出文件
  196. async download() {
  197. if(this.changeList.length<=0){
  198. this.$message.warning("请选择有效数据")
  199. return;
  200. }
  201. let model = {
  202. cgdNos:[]
  203. }
  204. this.changeList.forEach(item => {
  205. model.cgdNos.push(item.cgdNo)
  206. });
  207. // const res = await asyncRequest.exportcgdlist(model)
  208. if (!this.loading) {
  209. this.loading = true;
  210. let httpType = `aplication/zip`;
  211. axios({
  212. method: "post",
  213. url: this.fileUrl + "admin/exportcgdlist",
  214. responseType: "blob",
  215. data: model,
  216. headers: {
  217. // 'Content-Type': 'multipart/form-data',
  218. // Accept: "application/vnd.ms-excel"
  219. Accept: httpType,
  220. },
  221. })
  222. .then((res) => {
  223. // console.log(res)
  224. // console.log(this.fileUrl)
  225. // return;
  226. if (res && res.status == 200 && res.data) {
  227. let url = window.URL.createObjectURL(
  228. new Blob([res.data], {
  229. // type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
  230. type: httpType
  231. })
  232. );
  233. let link = document.createElement("a");
  234. link.style.display = "none";
  235. link.href = url;
  236. let excelName = "采购单.zip";
  237. link.setAttribute("download", excelName);
  238. document.body.appendChild(link);
  239. link.click();
  240. link.remove();
  241. window.URL.revokeObjectURL(url); //释放掉blob对象
  242. this.$message.success(`导出成功!`);
  243. setTimeout(() => {
  244. this.loading = false;
  245. }, 500);
  246. } else {
  247. this.$message.error(res.data.message);
  248. setTimeout(() => {
  249. this.loading = false;
  250. }, 500);
  251. }
  252. })
  253. .catch((error) => {
  254. console.log(error);
  255. this.loading = false;
  256. });
  257. }
  258. },
  259. },
  260. };
  261. </script>
  262. <style lang="scss" scoped>
  263. .purchaseOrder {
  264. // text-align: right;
  265. }
  266. </style>