table2.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. <template>
  2. <div v-loading="loading">
  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="handleSizeChange"
  65. @current-change="handleCurrentChange"
  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. handleSizeChange(val){
  126. this.parmValue.size = val;
  127. this.searchList()
  128. },
  129. handleCurrentChange(val){
  130. this.parmValue.page = val;
  131. this.searchList()
  132. },
  133. //合并方法
  134. objectSpanMethod({ row, column, rowIndex, columnIndex }) {
  135. if (columnIndex == 0) {
  136. //合并相同的名字
  137. let nameSpan = this.getSpanNumber(this.tableData, "addtime");
  138. return {
  139. rowspan: nameSpan[rowIndex],
  140. colspan: 1,
  141. };
  142. }
  143. },
  144. //获取要合并的行数
  145. getSpanNumber(data, prop) {
  146. //data要处理的数组,prop要合并的属性,比如name
  147. //数组的长度,有时候后台可能返回个null而不是[]
  148. let length = Array.isArray(data) ? data.length : 0;
  149. if (length > 0) {
  150. //用于标识位置
  151. let position = 0;
  152. //用于对比的数据
  153. let temp = data[0][prop];
  154. //要返回的结果
  155. let result = [1];
  156. //假设数据是AABCC,我们的目标就是返回20120
  157. for (let i = 1; i < length; i++) {
  158. if (data[i][prop] == temp) {
  159. //标识位置的数据加一
  160. result[position] += 1;
  161. //当前位置添0
  162. result[i] = 0;
  163. } else {
  164. //不相同时,修改标识位置,该位置设为1,修改对比值
  165. position = i;
  166. result[i] = 1;
  167. temp = data[i][prop];
  168. }
  169. }
  170. //返回结果
  171. return result;
  172. } else {
  173. return [0];
  174. }
  175. },
  176. //初始化http请求
  177. async searchList() {
  178. if (
  179. (this.parmValue.start_date !== "" && this.parmValue.end_date === "") ||
  180. (this.parmValue.start_date === "" && this.parmValue.end_date !== "")
  181. ) {
  182. this.$message.warning("时间区间不完整!");
  183. return;
  184. }
  185. // return;
  186. this.loading = true;
  187. const res = await asyncRequest.reportpurcheaseordersum(this.parmValue);
  188. if (res && res.code === 0 && res.data) {
  189. this.tableData = res.data.list;
  190. this.pageInfo.total = Number(res.data.count);
  191. } else if (res && res.code >= 100 && res.code <= 104) {
  192. await this.logout();
  193. } else {
  194. this.tableData = [];
  195. this.pageInfo.total = 0;
  196. this.$message.warning(res.message)
  197. }
  198. this.loading = false;
  199. },
  200. //重置
  201. restSearch() {
  202. this.parmValue = {
  203. start_date: "", //新建起始时间
  204. end_date: "", // 新建结束时间
  205. page: 1, // 页码
  206. size: 15, // 每页显示条数
  207. };
  208. // 表格 - 分页
  209. this.pageInfo = {
  210. size: 15,
  211. curr: 1,
  212. total: 0,
  213. };
  214. this.searchList();
  215. },
  216. // 时间函数
  217. async time(e) {
  218. this.parmValue.start_date = e.startTime || "";
  219. this.parmValue.end_date = e.endTime || "";
  220. await this.searchList();
  221. },
  222. //选中触发函数
  223. selection_change(e) {
  224. const { list } = e;
  225. //选中的数组集合
  226. this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
  227. },
  228. //导出文件
  229. // async download() {
  230. // if (this.changeList.length <= 0) {
  231. // this.$message.warning("请选择有效数据");
  232. // return;
  233. // }
  234. // let model = {
  235. // cgdNos: [],
  236. // };
  237. // this.changeList.forEach((item) => {
  238. // model.cgdNos.push(item.cgdNo);
  239. // });
  240. // // const res = await asyncRequest.exportcgdlist(model)
  241. // if (!this.loading) {
  242. // this.loading = true;
  243. // let httpType = `aplication/zip`;
  244. // axios({
  245. // method: "post",
  246. // url: this.fileUrl + "admin/exportcgdlist",
  247. // responseType: "blob",
  248. // data: model,
  249. // headers: {
  250. // // 'Content-Type': 'multipart/form-data',
  251. // // Accept: "application/vnd.ms-excel"
  252. // Accept: httpType,
  253. // },
  254. // })
  255. // .then((res) => {
  256. // // console.log(res)
  257. // // console.log(this.fileUrl)
  258. // // return;
  259. // if (res && res.status == 200 && res.data) {
  260. // let url = window.URL.createObjectURL(
  261. // new Blob([res.data], {
  262. // // type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
  263. // type: httpType,
  264. // })
  265. // );
  266. // let link = document.createElement("a");
  267. // link.style.display = "none";
  268. // link.href = url;
  269. // let excelName = "采购单.zip";
  270. // link.setAttribute("download", excelName);
  271. // document.body.appendChild(link);
  272. // link.click();
  273. // link.remove();
  274. // window.URL.revokeObjectURL(url); //释放掉blob对象
  275. // this.$message.success(`导出成功!`);
  276. // setTimeout(() => {
  277. // this.loading = false;
  278. // }, 500);
  279. // } else {
  280. // this.$message.error(res.data.message);
  281. // setTimeout(() => {
  282. // this.loading = false;
  283. // }, 500);
  284. // }
  285. // })
  286. // .catch((error) => {
  287. // console.log(error);
  288. // this.loading = false;
  289. // });
  290. // }
  291. // },
  292. },
  293. };
  294. </script>
  295. <style lang="scss" scoped>
  296. .purchaseOrder {
  297. // text-align: right;
  298. }
  299. /deep/ .el-pagination{
  300. float: right;
  301. margin-top: 10px;
  302. }
  303. </style>