adjust_warehouse.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <template>
  2. <div>
  3. <template-page
  4. style="width: 100%;
  5. height: 100%;"
  6. ref="pageRef"
  7. :getList="getList"
  8. :exportList="exportList"
  9. :columnParsing="columnParsing"
  10. >
  11. </template-page>
  12. <warehousing-header/>
  13. </div>
  14. </template>
  15. <script>
  16. import TemplatePage from '@/components/template/template-page-1.vue'
  17. import import_mixin from '@/components/template/import_mixin.js'
  18. import { getFrontListCustomerAcc, exportCustomerStockOrderBean } from '@/api/stock'
  19. import WarehousingHeader from '@/components/WarehousingHeader/WarehousingHeader'
  20. export default {
  21. components: { TemplatePage,WarehousingHeader },
  22. mixins: [import_mixin],
  23. data() {
  24. return {
  25. // 事件组合
  26. optionsEvensGroup: [
  27. [
  28. [
  29. {
  30. name: '批量删除',
  31. click: this.dels,
  32. isRole: this.$checkBtnRole('del', this.$route.meta.roles)
  33. }
  34. ]
  35. ]
  36. ],
  37. // 表格属性
  38. tableAttributes: {
  39. // 启用勾选列
  40. selectColumn: true
  41. },
  42. // 表格事件
  43. tableEvents: {
  44. 'selection-change': this.selectionChange
  45. },
  46. recordSelected: []
  47. }
  48. },
  49. methods: {
  50. // 列表请求函数
  51. getList(...p) {
  52. this.recordSelected = []
  53. return getFrontListCustomerAcc(...p)
  54. },
  55. // 列表导出函数
  56. exportList: exportCustomerStockOrderBean,
  57. // 表格列解析渲染数据更改
  58. columnParsing(item, defaultData) {
  59. return defaultData
  60. },
  61. // 监听勾选变化
  62. selectionChange(data) {
  63. this.recordSelected = data
  64. }
  65. // 批量删除
  66. // dels() {
  67. // if (this.recordSelected.length) {
  68. // this.$confirm('此操作将删除数据, 是否继续?', '提示', {
  69. // confirmButtonText: '确定',
  70. // cancelButtonText: '取消',
  71. // type: 'warning'
  72. // })
  73. // .then(() => {
  74. // partsOldOutDel({
  75. // ids: this.recordSelected.map(item => item.id).join(',')
  76. // })
  77. // .then(res => {
  78. // this.$refs.pageRef.refreshList()
  79. // this.$message({
  80. // type: 'success',
  81. // message: '删除成功!'
  82. // })
  83. // })
  84. // .catch(() => {
  85. // this.$message({
  86. // type: 'error',
  87. // message: '删除失败'
  88. // })
  89. // })
  90. // })
  91. // .catch(() => {
  92. // this.$message({
  93. // type: 'info',
  94. // message: '已取消删除'
  95. // })
  96. // })
  97. // } else {
  98. // this.$message({
  99. // type: 'info',
  100. // message: '请先勾选需要删除的数据!'
  101. // })
  102. // }
  103. // }
  104. }
  105. }
  106. </script>
  107. <style lang="scss" scoped>
  108. ::v-deep .el-table__body-wrapper {
  109. height: 100% !important;
  110. }
  111. </style>