table3.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <template>
  2. <div style="padding:10px">
  3. <ex-table
  4. v-if="powers.some((i) => i == '001')"
  5. v-loading="loading"
  6. :table="table"
  7. :data="tableData"
  8. :columns="table3"
  9. :page="pageInfo"
  10. :size="size"
  11. @page-curr-change="handlePageChange"
  12. @page-size-change="handleSizeChange"
  13. @screen-reset="
  14. pageInfo.curr = 1;
  15. parmValue.page = 1;
  16. searchList();
  17. "
  18. @screen-submit="
  19. pageInfo.curr = 1;
  20. parmValue.page = 1;
  21. searchList();
  22. "
  23. @selection="selection_change"
  24. >
  25. <template #table-header="{}">
  26. <div style="width: 100%">
  27. <el-row style="padding: 0 0 0 80px">
  28. <el-col :span="6" style="width: 363px;">
  29. <periodDatePickerActive
  30. :start="parmValue.start_day"
  31. :end="parmValue.end_day"
  32. :placeholder="'竞价'"
  33. :width="'165px'"
  34. :size="searchSize"
  35. @timeReturned="time"
  36. />
  37. </el-col>
  38. <el-col :span="6">
  39. <search-work-company
  40. :value="parmValue.companyNo"
  41. :placeholder="'业务公司名称'"
  42. :disabled="false"
  43. :size="'mini'"
  44. :no-disabled="true"
  45. @searchChange="company_idsearchChange"
  46. />
  47. </el-col>
  48. <el-col :span="4" style="width: 66px; float: right">
  49. <el-button type="primary" style="margin-left:30px;" :size="searchSize" class="fr" @click="download">
  50. 导出
  51. </el-button>
  52. </el-col>
  53. <el-col :span="3" style="width: 66px; float: right">
  54. <el-button
  55. :size="searchSize"
  56. type="primary"
  57. style="float: right; margin-left: 5px"
  58. @click="searchList"
  59. >
  60. 刷新
  61. </el-button>
  62. </el-col>
  63. <el-col :span="4" style="width: 66px; float: right">
  64. <el-button
  65. type="warning"
  66. class="fr"
  67. :size="searchSize"
  68. @click="restSearch"
  69. >
  70. 重置
  71. </el-button>
  72. </el-col>
  73. </el-row>
  74. </div>
  75. </template>
  76. </ex-table>
  77. <div v-else>
  78. <no-auth></no-auth>
  79. </div>
  80. </div>
  81. </template>
  82. <script>
  83. import mixinPage from '@/mixins/elPaginationHandle'
  84. import resToken from '@/mixins/resToken'
  85. import urlConfig from '@/apis/url-config'
  86. import asyncRequest from '@/apis/service/reportQuery/newReport'
  87. import periodDatePickerActive from './period-date-picker/main.vue'
  88. import { table3 } from './columns'
  89. import { mapGetters } from 'vuex'
  90. import dayjs from 'dayjs'
  91. export default {
  92. name: 'SaleReport',
  93. components: {
  94. periodDatePickerActive
  95. },
  96. mixins: [mixinPage, resToken],
  97. computed: {
  98. ...mapGetters(['tablebtnSize', 'searchSize', 'size']),
  99. powers() {
  100. const tran =
  101. this.$store.getters.btnList.find((i) => i.menu_route == "reportTableThree") || {};
  102. const { action } = tran ?? {};
  103. return action ?? [];
  104. }
  105. },
  106. data() {
  107. return {
  108. // 选中数组
  109. changeList: [],
  110. // 全局url
  111. fileUrl: urlConfig.baseURL,
  112. // loading
  113. loading: false,
  114. // 请求参数集合
  115. parmValue: {
  116. companyNo: '',
  117. start_day: '', // 起始时间
  118. end_day: '', // 结束时间
  119. // is_export:0,//是否导出0/1
  120. page: 1, // 页码
  121. size: 15 // 每页显示条数
  122. },
  123. // 表格 - 数据集合
  124. tableData: [],
  125. // 表格 - 参数
  126. table: {
  127. stripe: true,
  128. border: true,
  129. _defaultHeader_: ['setcol']
  130. },
  131. // 表格 - 分页
  132. pageInfo: {
  133. size: 15,
  134. curr: 1,
  135. total: 0
  136. },
  137. // 表格表头 - 列参数
  138. table3: table3
  139. }
  140. },
  141. mounted() {
  142. this.parmValue.start_day = dayjs().subtract(0, 'day').format('YYYY-MM-DD')
  143. this.parmValue.end_day = dayjs().subtract(-1, 'day').format('YYYY-MM-DD')
  144. this.searchList()
  145. },
  146. methods: {
  147. // 初始化http请求
  148. async searchList() {
  149. if (
  150. (this.parmValue.start_day !== '' && this.parmValue.end_day === '') ||
  151. (this.parmValue.start_day === '' && this.parmValue.end_day !== '')
  152. ) {
  153. this.$message.warning('时间区间不完整!')
  154. return
  155. }
  156. const start_day = new Date(this.parmValue.start_day).valueOf()
  157. const end_day = new Date(this.parmValue.end_day).valueOf()
  158. const flag = end_day - start_day > 31 * 24 * 60 * 60 * 1000
  159. if (this.parmValue.start_day != '' && this.parmValue.end_day != '') {
  160. if (flag) {
  161. this.$message.warning('筛选的时间区间不能超过31天')
  162. return
  163. }
  164. }
  165. this.loading = true
  166. const res = await asyncRequest.salestock(this.parmValue)
  167. if (res && res.code === 0 && res.data) {
  168. this.tableData = res.data.list
  169. console.log(this.tableData)
  170. this.pageInfo.total = Number(res.data.count)
  171. } else if (res && res.code >= 100 && res.code <= 104) {
  172. await this.logout()
  173. } else {
  174. this.$message.warning(res.message)
  175. this.tableData = []
  176. this.pageInfo.total = 0
  177. }
  178. this.loading = false
  179. },
  180. company_idsearchChange(e) {
  181. const { code } = e
  182. this.parmValue.companyNo = code || ''
  183. this.searchList()
  184. },
  185. // 重置
  186. restSearch() {
  187. this.parmValue = {
  188. companyNo: '',
  189. start_day: '', // 新建起始时间
  190. end_day: '', // 新建结束时间
  191. // is_export:0,//是否导出0/1
  192. page: 1, // 页码
  193. size: 15 // 每页显示条数
  194. }
  195. this.parmValue.start_day = dayjs().subtract(0, 'day').format('YYYY-MM-DD')
  196. this.parmValue.end_day = dayjs().subtract(-1, 'day').format('YYYY-MM-DD')
  197. // 表格 - 分页
  198. this.pageInfo = {
  199. size: 15,
  200. curr: 1,
  201. total: 0
  202. }
  203. this.searchList()
  204. },
  205. // 时间函数
  206. async time(e) {
  207. this.parmValue.start_day = e.startTime || ''
  208. this.parmValue.end_day = e.endTime || ''
  209. if (
  210. (this.parmValue.start_day !== '' && this.parmValue.end_day === '') ||
  211. (this.parmValue.start_day === '' && this.parmValue.end_day !== '')
  212. ) {
  213. this.$message.warning('时间区间不完整!')
  214. return
  215. }
  216. this.pageInfo.curr = 1
  217. this.parmValue.page = 1
  218. await this.searchList()
  219. },
  220. // 选中触发函数
  221. selection_change(e) {
  222. const { list } = e
  223. // 选中的数组集合
  224. this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : []
  225. },
  226. // 导出文件
  227. async download() {
  228. // if(this.changeList.length<=0){
  229. // this.$message.warning("请选择有效数据")
  230. // return;
  231. // }
  232. const model = JSON.parse(JSON.stringify(this.parmValue))
  233. delete model['page']
  234. delete model['size']
  235. // model.is_export = 1;
  236. const start_day = new Date(this.parmValue.start_day).valueOf()
  237. const end_day = new Date(this.parmValue.end_day).valueOf()
  238. const flag = end_day - start_day > 31 * 24 * 60 * 60 * 1000
  239. if (this.parmValue.start_day != '' && this.parmValue.end_day != '') {
  240. if (flag) {
  241. this.$message.warning('导出文件的时间区间不能超过31天')
  242. return
  243. }
  244. } else {
  245. this.$message.warning('请选择导出文件的时间区间')
  246. return
  247. }
  248. if (!this.loading) {
  249. this.loading = true
  250. const httpType = `aplication/zip`
  251. axios({
  252. method: 'post',
  253. url: this.fileUrl + 'admin/sse',
  254. responseType: 'blob',
  255. data: model,
  256. headers: {
  257. Accept: httpType
  258. }
  259. })
  260. .then((res) => {
  261. if (res && res.status == 200 && res.data) {
  262. const url = window.URL.createObjectURL(
  263. new Blob([res.data], {
  264. type: httpType
  265. })
  266. )
  267. const link = document.createElement('a')
  268. link.style.display = 'none'
  269. link.href = url
  270. const excelName = '单日库存销售情况表.zip'
  271. link.setAttribute('download', excelName)
  272. document.body.appendChild(link)
  273. link.click()
  274. link.remove()
  275. window.URL.revokeObjectURL(url) // 释放掉blob对象
  276. this.$message.success(`导出成功!`)
  277. setTimeout(() => {
  278. this.loading = false
  279. }, 500)
  280. } else {
  281. this.$message.error(res.data.message)
  282. setTimeout(() => {
  283. this.loading = false
  284. }, 500)
  285. }
  286. })
  287. .catch((error) => {
  288. console.log(error)
  289. this.loading = false
  290. })
  291. }
  292. }
  293. }
  294. }
  295. </script>
  296. <style lang="scss" scoped>
  297. .purchaseOrder {
  298. // text-align: right;
  299. }
  300. </style>