table12.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. <template>
  2. <div>
  3. <ex-table
  4. v-loading="loading"
  5. :table="table"
  6. :data="tableData"
  7. :columns="table12"
  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: 463px;">
  28. <periodDatePickerActive
  29. :start="parmValue.start_date"
  30. :end="parmValue.end_date"
  31. :placeholder="'产品下线'"
  32. :width="'205px'"
  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;" :size="searchSize" class="fr" @click="download">
  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" gutter="10">
  54. <el-col :span="6" style="width: 240px">
  55. <el-input
  56. v-model="parmValue.creater"
  57. clearable
  58. placeholder="采购维护人"
  59. maxlength="40"
  60. :size="searchSize"
  61. @blur="
  62. pageInfo.curr = 1;
  63. parmValue.page = 1;
  64. searchList();
  65. "
  66. />
  67. </el-col>
  68. <el-col :span="6" style="width: 240px">
  69. <el-input
  70. v-model="parmValue.supplier_name"
  71. clearable
  72. placeholder="供应商名称"
  73. maxlength="40"
  74. :size="searchSize"
  75. @blur="
  76. pageInfo.curr = 1;
  77. parmValue.page = 1;
  78. searchList();
  79. "
  80. />
  81. </el-col>
  82. <el-col :span="4" style="width: 66px; float: right">
  83. <el-button
  84. type="warning"
  85. class="fr"
  86. :size="searchSize"
  87. @click="restSearch"
  88. >
  89. 重置
  90. </el-button>
  91. </el-col>
  92. </el-row>
  93. </div>
  94. </template>
  95. </ex-table>
  96. </div>
  97. </template>
  98. <script>
  99. import mixinPage from '@/mixins/elPaginationHandle'
  100. import resToken from '@/mixins/resToken'
  101. import urlConfig from '@/apis/url-config'
  102. import asyncRequest from '@/apis/service/businessReportQuery/purchaseReport'
  103. import periodDatePickerActive from '../period-date-picker/main.vue'
  104. import companyHelper from '@/mixins/companyHelper'
  105. import { table12 } from './columns'
  106. import { mapGetters } from 'vuex'
  107. export default {
  108. name: 'PurchaseOrder',
  109. components: {
  110. periodDatePickerActive
  111. },
  112. mixins: [mixinPage, resToken, companyHelper],
  113. computed: {
  114. ...mapGetters(['tablebtnSize', 'searchSize', 'size'])
  115. },
  116. data() {
  117. return {
  118. // 选中数组
  119. changeList: [],
  120. // 全局url
  121. fileUrl: urlConfig.baseURL,
  122. // loading
  123. loading: false,
  124. // 请求参数集合
  125. parmValue: {
  126. supplier_name: '', // 要搜索的供应商名称
  127. creater: '', // 要搜索的采购维护人
  128. start_date: '', // 起始时间
  129. end_date: '', // 结束时间
  130. page: 1, // 页码
  131. size: 15 // 每页显示条数
  132. },
  133. // 表格 - 数据集合
  134. tableData: [],
  135. // 表格 - 参数
  136. table: {
  137. stripe: true,
  138. border: true,
  139. _defaultHeader_: ['setcol']
  140. },
  141. // 表格 - 分页
  142. pageInfo: {
  143. size: 15,
  144. curr: 1,
  145. total: 0
  146. },
  147. // 表格表头 - 列参数
  148. table12: table12
  149. }
  150. },
  151. mounted() {
  152. this.searchList()
  153. },
  154. methods: {
  155. // 初始化http请求
  156. async searchList() {
  157. if (
  158. (this.parmValue.start_date !== '' && this.parmValue.end_date === '') ||
  159. (this.parmValue.start_date === '' && this.parmValue.end_date !== '')
  160. ) {
  161. this.$message.warning('时间区间不完整!')
  162. return
  163. }
  164. // return;
  165. this.loading = true
  166. const res = await asyncRequest.reportgoodofflinelist({
  167. ...this.parmValue,
  168. needRela: true
  169. })
  170. if (res && res.code === 0 && res.data) {
  171. this.tableData = res.data.list
  172. this.pageInfo.total = Number(res.data.count)
  173. } else if (res && res.code >= 100 && res.code <= 104) {
  174. await this.logout()
  175. } else {
  176. this.tableData = []
  177. this.pageInfo.total = 0
  178. }
  179. this.loading = false
  180. },
  181. // 重置
  182. restSearch() {
  183. this.parmValue = {
  184. supplier_name: '', // 要搜索的供应商名称
  185. creater: '', // 要搜索的采购维护人
  186. start_date: '', // 起始时间
  187. end_date: '', // 结束时间
  188. page: 1, // 页码
  189. size: 15 // 每页显示条数
  190. }
  191. // 表格 - 分页
  192. this.pageInfo = {
  193. size: 15,
  194. curr: 1,
  195. total: 0
  196. }
  197. this.searchList()
  198. },
  199. // 时间函数
  200. async time(e) {
  201. this.parmValue.start_date = e.startTime || ''
  202. this.parmValue.end_date = e.endTime || ''
  203. if (
  204. (this.parmValue.start_date !== '' && this.parmValue.end_date === '') ||
  205. (this.parmValue.start_date === '' && this.parmValue.end_date !== '')
  206. ) {
  207. this.$message.warning('时间区间不完整!')
  208. return
  209. }
  210. this.pageInfo.curr = 1
  211. this.parmValue.page = 1
  212. await this.searchList()
  213. },
  214. // 选中触发函数
  215. selection_change(e) {
  216. const { list } = e
  217. // 选中的数组集合
  218. this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : []
  219. },
  220. // 导出文件
  221. async download() {
  222. // if(this.changeList.length<=0){
  223. // this.$message.warning("请选择有效数据")
  224. // return;
  225. // }
  226. const start_date = new Date(this.parmValue.start_date).valueOf()
  227. const end_date = new Date(this.parmValue.end_date).valueOf()
  228. const flag = end_date - start_date > 30 * 24 * 60 * 60 * 1000
  229. if (this.parmValue.start_date != '' && this.parmValue.end_date != '') {
  230. if (flag) {
  231. this.$message.warning('导出文件的时间区间不能超过30天')
  232. return
  233. }
  234. } else {
  235. this.$message.warning('请选择导出文件的时间区间')
  236. return
  237. }
  238. const model = JSON.parse(JSON.stringify(this.parmValue))
  239. // model.is_export = 1;
  240. if (!this.loading) {
  241. this.loading = true
  242. const httpType = `aplication/zip`
  243. axios({
  244. method: 'post',
  245. url: this.fileUrl + 'admin/r_reportgoodofflineexport',
  246. responseType: 'blob',
  247. data: {
  248. ...model,
  249. needRela: true
  250. },
  251. headers: {
  252. // 'Content-Type': 'multipart/form-data',
  253. // Accept: "application/vnd.ms-excel"
  254. Accept: httpType
  255. }
  256. })
  257. .then((res) => {
  258. // console.log(res)
  259. // console.log(this.fileUrl)
  260. // return;
  261. if (res && res.status == 200 && res.data) {
  262. const url = window.URL.createObjectURL(
  263. new Blob([res.data], {
  264. // type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
  265. type: httpType
  266. })
  267. )
  268. const link = document.createElement('a')
  269. link.style.display = 'none'
  270. link.href = url
  271. const excelName = this.getCompanyWithCode(this.currentCompany).name + '-产品下线报表.zip'
  272. link.setAttribute('download', excelName)
  273. document.body.appendChild(link)
  274. link.click()
  275. link.remove()
  276. window.URL.revokeObjectURL(url) // 释放掉blob对象
  277. this.$message.success(`导出成功!`)
  278. setTimeout(() => {
  279. this.loading = false
  280. }, 500)
  281. } else {
  282. this.$message.error(res.data.message)
  283. setTimeout(() => {
  284. this.loading = false
  285. }, 500)
  286. }
  287. })
  288. .catch((error) => {
  289. console.log(error)
  290. this.loading = false
  291. })
  292. }
  293. }
  294. }
  295. }
  296. </script>
  297. <style lang="scss" scoped>
  298. .purchaseOrder {
  299. // text-align: right;
  300. }
  301. </style>