index.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <script setup lang="ts">
  2. import { usePageSearch, type PageHooks, type PageEvents } from "/@/hooks/page";
  3. import contentConfig from "./config/content.config";
  4. import { ElDialog, ElMessage } from "element-plus";
  5. import searchConfig from "./config/search.config";
  6. import { useVModel } from "@vueuse/core";
  7. import { useRouter } from "vue-router";
  8. import { computed, ref } from "vue";
  9. const props = defineProps<{ visible: boolean; otherSearchParameter: any }>()
  10. const emit = defineEmits(['submit'])
  11. const visible = useVModel(props, 'visible')
  12. const router = useRouter();
  13. const hooks: PageHooks = {
  14. pageSearchHook: () => usePageSearch(undefined, undefined, searchConfig)
  15. };
  16. const selection= ref([])
  17. const events: PageEvents = {
  18. content: {
  19. preview: ({ id }) => router.push("/invoiceInOut/productManagerDetail?id=" + id),
  20. create: () => router.push('/invoiceInOut/productManagerDetail')
  21. }
  22. };
  23. function handleSubmit(){
  24. if(selection.value.length === 0){
  25. ElMessage.warning('请选择至少一个商品')
  26. return
  27. }
  28. const isNoZero = selection.value.some(({ residue_stock }) => residue_stock < 0)
  29. console.log()
  30. if (isNoZero) {
  31. ElMessage.warning('不能选择结存数为负数的商品')
  32. return
  33. }
  34. const result = []
  35. selection.value.forEach(single => {
  36. result.push({ ...single, goodNum: 1 })
  37. // if (single.ProductsCombind.length === 0) {
  38. // } else {
  39. // single.ProductsCombind.forEach(child => {
  40. // result.push({ ...single, spbl: 1 ,goodNum: 1, childCode: child.products.skuCode, childNum: single.child_num, childActionNum: single.child_num })
  41. // })
  42. // }
  43. })
  44. visible.value = false
  45. emit('submit', result)
  46. }
  47. </script>
  48. <template>
  49. <ElDialog class="relative" v-model="visible" title="选择商品" center top="10px">
  50. <PageContainer
  51. :onlySelf="true"
  52. v-if="visible"
  53. :hooks="hooks"
  54. :events="events"
  55. :searchConfig="searchConfig"
  56. :contentConfig="contentConfig"
  57. :isPageStart="true"
  58. :other-search-parameter="otherSearchParameter"
  59. @content-select-change="values => selection = values.map(item => ({ ...item, child_num: '1', child_id: item.id, spbl: 1 }))"
  60. />
  61. <ElButton
  62. class="absolute bottom-[30px] right-[20px]"
  63. type="primary"
  64. @click="handleSubmit"
  65. >保存 </ElButton>
  66. </ElDialog>
  67. </template>