| | |
| | | <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> |
| | |
| | | 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'; |
| | |
| | | tip: '加载中...', |
| | | }); |
| | | const count = useRoute(); |
| | | const { t } = useI18n('WMS.Count'); |
| | | const { t } = useI18n(); |
| | | const go = useGo(); |
| | | const { createMessage } = useMessage(); |
| | | |
| | |
| | | Tableloading.value = false; |
| | | } else { |
| | | createMessage.info(data.COUNT_NO + ':' + t('没有数据生成')); |
| | | Tableloading.value = false; |
| | | } |
| | | } |
| | | } |