From c7d99f5e11c4cf0667f67b8170e1c585db2e2016 Mon Sep 17 00:00:00 2001 From: liukangdong <898885815@qq.com> Date: 星期六, 08 二月 2025 15:34:15 +0800 Subject: [PATCH] Merge branch '2.0.1' of http://139.186.142.91:10010/r/productDev/funingyunwei into 2.0.1 --- admin/src/views/stock/query.vue | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/admin/src/views/stock/query.vue b/admin/src/views/stock/query.vue index d5d750f..d36de1e 100644 --- a/admin/src/views/stock/query.vue +++ b/admin/src/views/stock/query.vue @@ -26,6 +26,7 @@ import duration from 'dayjs/plugin/duration' dayjs.extend(duration) import { ywStockPage,ywStockPageEx } from '@/api/store/index' +import { fetchList as getStoreList } from '@/api/ywWarehouse' export default { components: { Pagination, @@ -67,8 +68,14 @@ }, created() { this.getList() + this.initData() }, methods: { + initData() { + getStoreList({ capacity: 9999, page: 1, model: {} }).then(res => { + this.queryFormConfig.formItems[0].options = res.records || [] + }) + }, getList(page) { const { pagination, filters } = this this.loading = true -- Gitblit v1.9.3