table7.vue 9.3 KB

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