diff --git a/smart-admin-web-typescript/src/views/business/base/location/location-form.vue b/smart-admin-web-typescript/src/views/business/base/location/location-form.vue
index 1c2496d..8b4fc1c 100644
--- a/smart-admin-web-typescript/src/views/business/base/location/location-form.vue
+++ b/smart-admin-web-typescript/src/views/business/base/location/location-form.vue
@@ -112,7 +112,6 @@ function changeAreaSelect(selectValue: any) {
   if(selectValue){
     form.areaId = selectValue.areaId;
   }
-
 }
 
 // 点击确定,验证表单
diff --git a/smart-admin-web-typescript/src/views/business/base/location/location-list.vue b/smart-admin-web-typescript/src/views/business/base/location/location-list.vue
index 5ed1bb4..99c067c 100644
--- a/smart-admin-web-typescript/src/views/business/base/location/location-list.vue
+++ b/smart-admin-web-typescript/src/views/business/base/location/location-list.vue
@@ -345,7 +345,6 @@ function changeLocationSelect(selectValue: any) {
   if (selectValue) {
     queryForm.locationId = selectValue.locationId;
   }
-
 }
 
 
diff --git a/smart-admin-web-typescript/src/views/business/base/stock/stock-form.vue b/smart-admin-web-typescript/src/views/business/base/stock/stock-form.vue
index 09948ba..a7e401c 100644
--- a/smart-admin-web-typescript/src/views/business/base/stock/stock-form.vue
+++ b/smart-admin-web-typescript/src/views/business/base/stock/stock-form.vue
@@ -7,41 +7,39 @@
 -->
 
   
-    
-        
-          
-        
-        
-          
-        
-        
-          
-        
-        
-          
-        
-        
-          
-        
-        
-          
-        
-        
-          
-        
-        
-          
-        
-        
-          
-        
+    
+
+      
+        
+      
+
+      
+        
+      
+      
+        
+      
+
+      
+        
+      
+
+      
+        
+      
+
+
     
 
     
@@ -53,105 +51,103 @@
   
 
 
diff --git a/smart-admin-web-typescript/src/views/business/base/stock/stock-list.vue b/smart-admin-web-typescript/src/views/business/base/stock/stock-list.vue
index c815b49..26519e6 100644
--- a/smart-admin-web-typescript/src/views/business/base/stock/stock-list.vue
+++ b/smart-admin-web-typescript/src/views/business/base/stock/stock-list.vue
@@ -9,8 +9,20 @@
   
   
     
-      
-        
+      
+        
+      
+      
+        
+      
+      
+        
+      
+      
+        
+          启用
+          禁用
+        
       
       
         
@@ -177,10 +189,13 @@ import {smartSentry} from '/@/lib/smart-sentry';
 import TableOperator from '/@/components/support/table-operator/index.vue';
 import StockForm from '/@/views/business/base/stock/stock-form.vue';
 import {TABLE_ID_CONST} from "/@/constants/support/table-id-const";
-import DictPreview from "/@/components/dict-preview/index.vue";
+import DictPreview from '/@/components/dict-preview/index.vue';
 import {useDict} from "/@/utils/dict";
 import {UploadFile} from 'ant-design-vue';
 import {fileApi} from "/@/api/support/file-api";
+import StockSelect from "/@/views/business/base/stock/stock-select.vue";
+import SmartEnumSelect from "/@/components/framework/smart-enum-select/index.vue";
+import LocationSelect from "/@/views/business/base/location/location-select.vue";
 
 
 //容器类型
@@ -235,7 +250,10 @@ const columns = ref([
 // ---------------------------- 查询数据表单和方法 ----------------------------
 
 const queryFormState = {
-  stockCode: undefined, //容器编码
+  stockId: undefined, //容器
+  locationId: undefined,//库位
+  disabledFlag: undefined,//是否启用
+  status: undefined,//状态
   pageNum: 1,
   pageSize: 10,
 };
@@ -262,6 +280,20 @@ function onSearch() {
   queryData();
 }
 
+//选择容器
+function changeStockSelect(selectValue: any) {
+  if (selectValue) {
+    queryForm.stockId = selectValue.stockId;
+  }
+}
+
+//选择库位
+function changeLocationSelect(selectValue: any) {
+  if (selectValue) {
+    queryForm.locationId = selectValue.locationId;
+  }
+}
+
 // 查询数据
 async function queryData() {
   tableLoading.value = true;
diff --git a/smart-admin-web-typescript/src/views/business/base/stock/stock-select.vue b/smart-admin-web-typescript/src/views/business/base/stock/stock-select.vue
new file mode 100644
index 0000000..663e0ab
--- /dev/null
+++ b/smart-admin-web-typescript/src/views/business/base/stock/stock-select.vue
@@ -0,0 +1,110 @@
+
+
+  
+    
+      {{ stock.stockCode }}
+      
+        
+          
+        
+      
+    
+  
+
+
+