YangYuGang
2025-04-14 6a7257f9d8f659c508cf826726126c0fa4363eef
src/views/tigerprojects/wms/inventory/inventoryDetail.vue
@@ -8,7 +8,13 @@
    <a-card :title="t('盘点信息')" :bordered="false">
      <BasicForm @register="register">
        <template #add="{ field }">
          <a-button v-if="field" class="h-8" @click="handleSelectItem">...</a-button>
          <a-button
            v-if="field"
            class="mt-1 ml-1"
            size="small"
            @click="handleSelectItem"
            preIcon="search|svg"
          />
          <ItemModal @register="registerItemAdd" @success="handleSuccess" />
        </template>
      </BasicForm>
@@ -102,7 +108,7 @@
  import { getWHList } from '/@/api/tigerapi/wms/house';
  import WareHouseTree from './WareHouseTree.vue';
  import { useI18n } from '/@/hooks/web/useI18n';
  import ItemModal from './ItemModal.vue';
  import ItemModal from '/@/views/components/ItemModal.vue';
  import CountLdtlModal from './CountLdtlModal.vue';
  import CountMdtlModal from './CountMdtlModal.vue';
  import CountSumModal from './CountSumModal.vue';
@@ -142,7 +148,7 @@
        tip: '加载中...',
      });
      const count = useRoute();
      const { t } = useI18n('WMS.Count');
      const { t } = useI18n();
      const go = useGo();
      const { createMessage } = useMessage();
@@ -351,6 +357,7 @@
            Tableloading.value = false;
          } else {
            createMessage.info(data.COUNT_NO + ':' + t('没有数据生成'));
            Tableloading.value = false;
          }
        }
      }