From 2897bc3f51fb1d7deeacdcd9ccaf062cf167825e Mon Sep 17 00:00:00 2001 From: zx Date: Wed, 25 Feb 2026 16:15:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=BA=93=E5=AD=98=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wisdom/stock/index.vue | 34 +++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/src/views/wisdom/stock/index.vue b/src/views/wisdom/stock/index.vue index 33f3605..b6fb0cb 100644 --- a/src/views/wisdom/stock/index.vue +++ b/src/views/wisdom/stock/index.vue @@ -60,29 +60,34 @@ :props="{ children: 'children', label: 'warehouseName', value: 'warehouseCode' }" clearable /> + + + + + + + - + - - - - - - - - + + + + + + 搜索 @@ -90,6 +95,7 @@ + @@ -134,6 +140,7 @@ + @@ -334,6 +341,7 @@ import { listStock, getTotal, editStock, printTag } from "@/api/wisdom/ import { warehousingDict } from "@/api/information/warehousingtype"; //入库类型 import { materialtypeDict } from "@/api/information/materialtype"; //物资类型 import { warehouseAll } from "@/api/information/warehouseinfo"; //所属仓库 +import { listScene } from "@/api/information/scene"; //所属仓库 import { personListDict } from "@/api/system/user"; //理货员 import { getKwAllList } from "@/api/information/pcdedetail"; //库位下拉数据 import { parseTime } from '@/utils/manage' @@ -456,6 +464,14 @@ function materialFun() { }) } materialFun() +//场景下拉 +const sceneTypeList = ref([]); +function listSceneFun() { + listScene().then(response => { + sceneTypeList.value = response.rows + }) +} +listSceneFun() //理货员 const personList = ref([]);