table2.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. <template>
  2. <div>
  3. <div style="width: 100%">
  4. <el-row style="padding: 10px 0 0 0px">
  5. <el-col :span="6" style="width: 363px">
  6. <periodDatePickerActive
  7. :start="parmValue.start_date"
  8. :end="parmValue.end_date"
  9. :placeholder="'咨询'"
  10. :width="'165px'"
  11. :size="searchSize"
  12. @timeReturned="time"
  13. />
  14. </el-col>
  15. <el-col :span="4" style="width: 66px; float: right">
  16. <el-button
  17. type="primary"
  18. style="margin-left: 30px"
  19. @click="download"
  20. :size="searchSize"
  21. class="fr"
  22. >
  23. 导出
  24. </el-button>
  25. </el-col>
  26. <el-col :span="3" style="width: 66px; float: right">
  27. <el-button
  28. :size="searchSize"
  29. type="primary"
  30. style="float: right; margin-left: 5px"
  31. @click="searchList"
  32. >
  33. 刷新
  34. </el-button>
  35. </el-col>
  36. <el-col :span="4" style="width: 66px; float: right">
  37. <el-button
  38. type="warning"
  39. class="fr"
  40. :size="searchSize"
  41. @click="restSearch"
  42. >
  43. 重置
  44. </el-button>
  45. </el-col>
  46. </el-row>
  47. </div>
  48. <el-table
  49. :data="tableData"
  50. :size="searchSize"
  51. :span-method="objectSpanMethod"
  52. border
  53. style="width: 100%; margin-top: 20px"
  54. >
  55. <el-table-column :prop="item.prop" :label="item.label" v-for="(item,index) in table2" :key="index"/>
  56. </el-table>
  57. <el-pagination
  58. :current-page="pageInfo.curr"
  59. :page-sizes="[15, 50, 100]"
  60. :page-size="pageInfo.size"
  61. :size="searchSize"
  62. layout="total, sizes, prev, pager, next, jumper"
  63. :total="pageInfo.total"
  64. @size-change="$emit('page-size-change', $event)"
  65. @current-change="$emit('page-curr-change', $event)"
  66. />
  67. </div>
  68. </template>
  69. <script>
  70. import mixinPage from "@/mixins/elPaginationHandle";
  71. import resToken from "@/mixins/resToken";
  72. import urlConfig from "@/apis/url-config";
  73. import asyncRequest from "@/apis/service/reportQuery/purchaseReport";
  74. import periodDatePickerActive from "../period-date-picker/main.vue";
  75. import { table2 } from "./columns";
  76. import { mapGetters } from "vuex";
  77. export default {
  78. name: "purchaseOrder",
  79. mixins: [mixinPage, resToken],
  80. components: {
  81. periodDatePickerActive,
  82. },
  83. computed: {
  84. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  85. },
  86. data() {
  87. return {
  88. //选中数组
  89. changeList: [],
  90. //全局url
  91. fileUrl: urlConfig.baseURL,
  92. //loading
  93. loading: false,
  94. //请求参数集合
  95. parmValue: {
  96. start_date: "", //起始时间
  97. end_date: "", // 结束时间
  98. page: 1, // 页码
  99. size: 15, // 每页显示条数
  100. },
  101. // 表格 - 数据集合
  102. tableData: [
  103. ],
  104. // 表格 - 参数
  105. table: {
  106. stripe: true,
  107. border: true,
  108. _defaultHeader_: ["setcol"],
  109. },
  110. // 表格 - 分页
  111. pageInfo: {
  112. size: 15,
  113. curr: 1,
  114. total: 0,
  115. },
  116. // 表格表头 - 列参数
  117. table2: table2,
  118. };
  119. },
  120. mounted() {
  121. this.searchList();
  122. },
  123. methods: {
  124. //合并方法
  125. objectSpanMethod({ row, column, rowIndex, columnIndex }) {
  126. if (columnIndex == 0) {
  127. //合并相同的名字
  128. let nameSpan = this.getSpanNumber(this.tableData, "addtime");
  129. return {
  130. rowspan: nameSpan[rowIndex],
  131. colspan: 1,
  132. };
  133. }
  134. },
  135. //获取要合并的行数
  136. getSpanNumber(data, prop) {
  137. //data要处理的数组,prop要合并的属性,比如name
  138. //数组的长度,有时候后台可能返回个null而不是[]
  139. let length = Array.isArray(data) ? data.length : 0;
  140. if (length > 0) {
  141. //用于标识位置
  142. let position = 0;
  143. //用于对比的数据
  144. let temp = data[0][prop];
  145. //要返回的结果
  146. let result = [1];
  147. //假设数据是AABCC,我们的目标就是返回20120
  148. for (let i = 1; i < length; i++) {
  149. if (data[i][prop] == temp) {
  150. //标识位置的数据加一
  151. result[position] += 1;
  152. //当前位置添0
  153. result[i] = 0;
  154. } else {
  155. //不相同时,修改标识位置,该位置设为1,修改对比值
  156. position = i;
  157. result[i] = 1;
  158. temp = data[i][prop];
  159. }
  160. }
  161. //返回结果
  162. return result;
  163. } else {
  164. return [0];
  165. }
  166. },
  167. //初始化http请求
  168. async searchList() {
  169. if (
  170. (this.parmValue.start_date !== "" && this.parmValue.end_date === "") ||
  171. (this.parmValue.start_date === "" && this.parmValue.end_date !== "")
  172. ) {
  173. this.$message.warning("时间区间不完整!");
  174. return;
  175. }
  176. // return;
  177. this.loading = true;
  178. const res = await asyncRequest.reportpurcheaseordersum(this.parmValue);
  179. if (res && res.code === 0 && res.data) {
  180. this.tableData = res.data.list;
  181. this.pageInfo.total = Number(res.data.count);
  182. } else if (res && res.code >= 100 && res.code <= 104) {
  183. await this.logout();
  184. } else {
  185. this.tableData = [];
  186. this.pageInfo.total = 0;
  187. this.$message.warning(res.message)
  188. }
  189. this.loading = false;
  190. },
  191. //重置
  192. restSearch() {
  193. this.parmValue = {
  194. start_date: "", //新建起始时间
  195. end_date: "", // 新建结束时间
  196. page: 1, // 页码
  197. size: 15, // 每页显示条数
  198. };
  199. // 表格 - 分页
  200. this.pageInfo = {
  201. size: 15,
  202. curr: 1,
  203. total: 0,
  204. };
  205. this.searchList();
  206. },
  207. // 时间函数
  208. async time(e) {
  209. this.parmValue.start_date = e.startTime || "";
  210. this.parmValue.end_date = e.endTime || "";
  211. await this.searchList();
  212. },
  213. //选中触发函数
  214. selection_change(e) {
  215. const { list } = e;
  216. //选中的数组集合
  217. this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
  218. },
  219. //导出文件
  220. async download() {
  221. if (this.changeList.length <= 0) {
  222. this.$message.warning("请选择有效数据");
  223. return;
  224. }
  225. let model = {
  226. cgdNos: [],
  227. };
  228. this.changeList.forEach((item) => {
  229. model.cgdNos.push(item.cgdNo);
  230. });
  231. // const res = await asyncRequest.exportcgdlist(model)
  232. if (!this.loading) {
  233. this.loading = true;
  234. let httpType = `aplication/zip`;
  235. axios({
  236. method: "post",
  237. url: this.fileUrl + "admin/exportcgdlist",
  238. responseType: "blob",
  239. data: model,
  240. headers: {
  241. // 'Content-Type': 'multipart/form-data',
  242. // Accept: "application/vnd.ms-excel"
  243. Accept: httpType,
  244. },
  245. })
  246. .then((res) => {
  247. // console.log(res)
  248. // console.log(this.fileUrl)
  249. // return;
  250. if (res && res.status == 200 && res.data) {
  251. let url = window.URL.createObjectURL(
  252. new Blob([res.data], {
  253. // type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
  254. type: httpType,
  255. })
  256. );
  257. let link = document.createElement("a");
  258. link.style.display = "none";
  259. link.href = url;
  260. let excelName = "采购单.zip";
  261. link.setAttribute("download", excelName);
  262. document.body.appendChild(link);
  263. link.click();
  264. link.remove();
  265. window.URL.revokeObjectURL(url); //释放掉blob对象
  266. this.$message.success(`导出成功!`);
  267. setTimeout(() => {
  268. this.loading = false;
  269. }, 500);
  270. } else {
  271. this.$message.error(res.data.message);
  272. setTimeout(() => {
  273. this.loading = false;
  274. }, 500);
  275. }
  276. })
  277. .catch((error) => {
  278. console.log(error);
  279. this.loading = false;
  280. });
  281. }
  282. },
  283. },
  284. };
  285. </script>
  286. <style lang="scss" scoped>
  287. .purchaseOrder {
  288. // text-align: right;
  289. }
  290. </style>