page.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. export default {
  2. data () {
  3. return {
  4. tableLoading: true,
  5. totalCount: 0,
  6. page: 1,
  7. page_size: 10
  8. }
  9. },
  10. computed: {
  11. vheight () {
  12. return document.body.clientHeight - 280
  13. }
  14. },
  15. methods: {
  16. async init () {
  17. Object.keys(this.searchForm).map(key => {
  18. if (this.searchForm[key] === '') {
  19. this.searchForm[key] = undefined
  20. }
  21. })
  22. this.tableLoading = true
  23. const { code, data } = await this.$fetch(this.tableUrl, {
  24. page: this.page,
  25. page_size: this.page_size,
  26. ...this.searchForm
  27. }, 'get')
  28. this.tableLoading = false
  29. if (this.tableData && data.data && code === 200) {
  30. this.tableData = data.data
  31. this.totalCount = Number(data.total)
  32. }
  33. },
  34. handleCurrentChange (page) {
  35. this.page = page
  36. this.init()
  37. },
  38. handleSizeChange (page_size) {
  39. this.page_size = page_size
  40. this.handleCurrentChange(1)
  41. //this.searchSubmit()
  42. },
  43. async searchSubmit () {
  44. this.page = 1
  45. await this.init()
  46. },
  47. searchReset (obj = {}) {
  48. Object.keys(this.searchForm).forEach(item => {
  49. this.searchForm[item] = undefined
  50. })
  51. Object.keys(obj).forEach(item => {
  52. this.searchForm[item] = obj[item]
  53. })
  54. this.searchSubmit()
  55. }
  56. }
  57. }