index.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <script setup lang="ts">
  2. import { ref, watch } from "vue";
  3. import RemoteSelect from "/@/components/RemoteSelect";
  4. import contentConfig from "./config/content.config";
  5. import SearchWorkCompany from "/@/components/SearchWorkCompany";
  6. import SearchStock from "/@/components/SearchStock";
  7. import {
  8. PageContent,
  9. type PageContentInstance
  10. } from "/@/components/PageContent";
  11. import { httpSupplierlist, httpGoodstat } from "/@/api/other";
  12. import { useAsync } from "/@/hooks/useAsync";
  13. const pageContentRef = ref<PageContentInstance | null>(null);
  14. const { run: goodStatRun } = useAsync<Record<string, string>>({
  15. initalData: {}
  16. });
  17. const data = ref({
  18. companyNo: "",
  19. supplier_code: "",
  20. stock_code: ""
  21. });
  22. watch(
  23. () => data,
  24. () => {
  25. pageContentRef.value.getPageData(data.value);
  26. goodStatRun(httpGoodstat(data.value));
  27. },
  28. {
  29. deep: true
  30. }
  31. );
  32. </script>
  33. <template>
  34. <div class="bg-white">
  35. <div class="flex gap-2 p-2">
  36. <SearchWorkCompany v-model="data.companyNo" />
  37. <RemoteSelect
  38. v-model="data.supplier_code"
  39. :api="httpSupplierlist"
  40. placeholder="供应商公司"
  41. request-prop="name"
  42. response-label-prop="name"
  43. response-val-prop="code"
  44. :disabled="!data.companyNo"
  45. />
  46. <SearchStock
  47. v-model="data.stock_code"
  48. :company-no="data.companyNo"
  49. :supplier-no="data.supplier_code"
  50. :disabled="!data.companyNo || !data.supplier_code"
  51. />
  52. </div>
  53. <div class="flex justify-around">
  54. <div class="text-center w-[128px] h-[128px] border-gray-100 border">
  55. <h1>当前库存</h1>
  56. </div>
  57. <div class="text-center w-[128px] h-[128px] border-gray-100 border">
  58. <h1>待入库</h1>
  59. </div>
  60. <div class="text-center w-[128px] h-[128px] border-gray-100 border">
  61. <h1>待出库</h1>
  62. </div>
  63. <div class="text-center w-[128px] h-[128px] border-gray-100 border">
  64. <h1>可用库存</h1>
  65. </div>
  66. </div>
  67. <PageContent ref="pageContentRef" :content-config="contentConfig" />
  68. </div>
  69. </template>