table1.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  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 v-for="(item,index) in table1" :key="index" :prop="item.prop" :label="item.label" />
  56. </el-table>
  57. <el-pagination
  58. :current-page.sync="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/businessReportQuery/purchaseReport'
  74. import periodDatePickerActive from '../period-date-picker/main.vue'
  75. import companyHelper from '@/mixins/companyHelper'
  76. import { table1 } from './columns'
  77. import { mapGetters } from 'vuex'
  78. export default {
  79. name: 'PurchaseOrder',
  80. components: {
  81. periodDatePickerActive
  82. },
  83. mixins: [mixinPage, resToken, companyHelper],
  84. computed: {
  85. ...mapGetters(['tablebtnSize', 'searchSize', 'size'])
  86. },
  87. data() {
  88. return {
  89. // 选中数组
  90. changeList: [],
  91. // 全局url
  92. fileUrl: urlConfig.baseURL,
  93. // loading
  94. loading: false,
  95. // 请求参数集合
  96. parmValue: {
  97. start_date: '', // 起始时间
  98. end_date: '', // 结束时间
  99. page: 1, // 页码
  100. size: 15 // 每页显示条数
  101. },
  102. // 表格 - 数据集合
  103. tableData: [
  104. ],
  105. // 表格 - 参数
  106. // table: {
  107. // stripe: true,
  108. // border: true,
  109. // _defaultHeader_: ["setcol"],
  110. // },
  111. // 表格 - 分页
  112. pageInfo: {
  113. size: 15,
  114. curr: 1,
  115. total: 0
  116. },
  117. // 表格表头 - 列参数
  118. table1: table1
  119. }
  120. },
  121. mounted() {
  122. this.searchList()
  123. },
  124. methods: {
  125. // 分页集合
  126. handleSizeChange(val) {
  127. this.parmValue.size = val
  128. // this.pageInfo.total = val;
  129. this.parmValue.page = 1
  130. this.searchList()
  131. },
  132. handleCurrentChange(val) {
  133. this.parmValue.page = val
  134. // this.pageInfo.total = val;
  135. this.searchList()
  136. },
  137. // 合并方法
  138. objectSpanMethod({ row, column, rowIndex, columnIndex }) {
  139. if (columnIndex == 0) {
  140. // 合并相同的名字
  141. const nameSpan = this.getSpanNumber(this.tableData, 'addtime')
  142. return {
  143. rowspan: nameSpan[rowIndex],
  144. colspan: 1
  145. }
  146. }
  147. },
  148. // 获取要合并的行数
  149. getSpanNumber(data, prop) {
  150. // data要处理的数组,prop要合并的属性,比如name
  151. // 数组的长度,有时候后台可能返回个null而不是[]
  152. const length = Array.isArray(data) ? data.length : 0
  153. if (length > 0) {
  154. // 用于标识位置
  155. let position = 0
  156. // 用于对比的数据
  157. let temp = data[0][prop]
  158. // 要返回的结果
  159. const result = [1]
  160. // 假设数据是AABCC,我们的目标就是返回20120
  161. for (let i = 1; i < length; i++) {
  162. if (data[i][prop] == temp) {
  163. // 标识位置的数据加一
  164. result[position] += 1
  165. // 当前位置添0
  166. result[i] = 0
  167. } else {
  168. // 不相同时,修改标识位置,该位置设为1,修改对比值
  169. position = i
  170. result[i] = 1
  171. temp = data[i][prop]
  172. }
  173. }
  174. // 返回结果
  175. return result
  176. } else {
  177. return [0]
  178. }
  179. },
  180. // 初始化http请求
  181. async searchList() {
  182. if (
  183. (this.parmValue.start_date !== '' && this.parmValue.end_date === '') ||
  184. (this.parmValue.start_date === '' && this.parmValue.end_date !== '')
  185. ) {
  186. this.$message.warning('时间区间不完整!')
  187. return
  188. }
  189. // return;
  190. this.loading = true
  191. const res = await asyncRequest.reportzixuntotal({
  192. ...this.parmValue,
  193. needRela: true
  194. })
  195. if (res && res.code === 0 && res.data) {
  196. this.tableData = res.data.list
  197. this.pageInfo.total = Number(res.data.count)
  198. } else if (res && res.code >= 100 && res.code <= 104) {
  199. await this.logout()
  200. } else {
  201. this.$message.warning(res.message)
  202. this.tableData = []
  203. this.pageInfo.total = 0
  204. }
  205. this.loading = false
  206. },
  207. // 重置
  208. restSearch() {
  209. this.parmValue = {
  210. start_date: '', // 新建起始时间
  211. end_date: '', // 新建结束时间
  212. page: 1, // 页码
  213. size: 15 // 每页显示条数
  214. }
  215. // 表格 - 分页
  216. this.pageInfo = {
  217. size: 15,
  218. curr: 1,
  219. total: 0
  220. }
  221. this.searchList()
  222. },
  223. // 时间函数
  224. async time(e) {
  225. this.parmValue.start_date = e.startTime || ''
  226. this.parmValue.end_date = e.endTime || ''
  227. if (
  228. (this.parmValue.start_date !== '' && this.parmValue.end_date === '') ||
  229. (this.parmValue.start_date === '' && this.parmValue.end_date !== '')
  230. ) {
  231. this.$message.warning('时间区间不完整!')
  232. return
  233. }
  234. this.pageInfo.curr = 1
  235. this.parmValue.page = 1
  236. await this.searchList()
  237. },
  238. // 选中触发函数
  239. selection_change(e) {
  240. const { list } = e
  241. // 选中的数组集合
  242. this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : []
  243. }
  244. // 导出文件
  245. // async download() {
  246. // if (this.changeList.length <= 0) {
  247. // this.$message.warning("请选择有效数据");
  248. // return;
  249. // }
  250. // let model = {
  251. // cgdNos: [],
  252. // };
  253. // this.changeList.forEach((item) => {
  254. // model.cgdNos.push(item.cgdNo);
  255. // });
  256. // // const res = await asyncRequest.exportcgdlist(model)
  257. // if (!this.loading) {
  258. // this.loading = true;
  259. // let httpType = `aplication/zip`;
  260. // axios({
  261. // method: "post",
  262. // url: this.fileUrl + "admin/exportcgdlist",
  263. // responseType: "blob",
  264. // data: model,
  265. // headers: {
  266. // // 'Content-Type': 'multipart/form-data',
  267. // // Accept: "application/vnd.ms-excel"
  268. // Accept: httpType,
  269. // },
  270. // })
  271. // .then((res) => {
  272. // // console.log(res)
  273. // // console.log(this.fileUrl)
  274. // // return;
  275. // if (res && res.status == 200 && res.data) {
  276. // let url = window.URL.createObjectURL(
  277. // new Blob([res.data], {
  278. // // type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
  279. // type: httpType,
  280. // })
  281. // );
  282. // let link = document.createElement("a");
  283. // link.style.display = "none";
  284. // link.href = url;
  285. // let excelName = "采购单.zip";
  286. // link.setAttribute("download", excelName);
  287. // document.body.appendChild(link);
  288. // link.click();
  289. // link.remove();
  290. // window.URL.revokeObjectURL(url); //释放掉blob对象
  291. // this.$message.success(`导出成功!`);
  292. // setTimeout(() => {
  293. // this.loading = false;
  294. // }, 500);
  295. // } else {
  296. // this.$message.error(res.data.message);
  297. // setTimeout(() => {
  298. // this.loading = false;
  299. // }, 500);
  300. // }
  301. // })
  302. // .catch((error) => {
  303. // console.log(error);
  304. // this.loading = false;
  305. // });
  306. // }
  307. // },
  308. }
  309. }
  310. </script>
  311. <style lang="scss" scoped>
  312. .purchaseOrder {
  313. // text-align: right;
  314. }
  315. /deep/ .el-pagination{
  316. float: right;
  317. margin-top: 10px;
  318. }
  319. </style>