diff --git a/wms-vue/dist.rar b/wms-vue/dist.rar
deleted file mode 100644
index e527850..0000000
Binary files a/wms-vue/dist.rar and /dev/null differ
diff --git a/wms-vue/src/components/duochaxun/AGVKUCUN.vue b/wms-vue/src/components/duochaxun/AGVKUCUN.vue
new file mode 100644
index 0000000..497125c
--- /dev/null
+++ b/wms-vue/src/components/duochaxun/AGVKUCUN.vue
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
diff --git a/wms-vue/src/components/duochaxun/Jianhuojiemian.vue b/wms-vue/src/components/duochaxun/Jianhuojiemian.vue
index 09ede0f..b4d6dcf 100644
--- a/wms-vue/src/components/duochaxun/Jianhuojiemian.vue
+++ b/wms-vue/src/components/duochaxun/Jianhuojiemian.vue
@@ -14,11 +14,6 @@
               
             
           
-          
-            
-              
-            
-          
 
           
             
@@ -34,13 +29,13 @@
             
           
 
-          
+          
             
               
             
           
 
-          
+          
             
               
             
@@ -211,7 +206,11 @@
               
             
           
-
+          
+            
+              
+            
+          
         
 
         查找
@@ -601,32 +600,7 @@
           
         
       
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
       
diff --git a/wms-vue/src/components/duochaxun/Zhengliqingdan.vue b/wms-vue/src/components/duochaxun/Zhengliqingdan.vue
index 8286ffe..dff68e7 100644
--- a/wms-vue/src/components/duochaxun/Zhengliqingdan.vue
+++ b/wms-vue/src/components/duochaxun/Zhengliqingdan.vue
@@ -16,9 +16,9 @@
                
              
             
-            
+            
               
-                
+                
               
            
             
diff --git a/wms-vue/src/main.js b/wms-vue/src/main.js
index d99c0e0..2c49590 100644
--- a/wms-vue/src/main.js
+++ b/wms-vue/src/main.js
@@ -8,9 +8,9 @@ import VueRouter from "vue-router";
 import router from "@/router/router";
 import store from "@/store/store";
 Vue.prototype.$axios=axios;
-//Vue.prototype.$httpUrl='http://127.0.0.1:8081';
+//Vue.prototype.$httpUrl='http://127.0.0.1:8083';
 //Vue.prototype.$httpUrl='http://192.68.2.88:8081';
-Vue.prototype.$httpUrl='http://127.0.0.1:8083';
+Vue.prototype.$httpUrl='http://10.1.112.23:8083';
 Vue.config.productionTip = false;
 Vue.use(VueRouter)
 Vue.use(ElementUI,{size:'small'});
diff --git a/wms/src/main/java/com/yc/wms/bean/InventoryLog.java b/wms/src/main/java/com/yc/wms/bean/InventoryLog.java
new file mode 100644
index 0000000..13fdd19
--- /dev/null
+++ b/wms/src/main/java/com/yc/wms/bean/InventoryLog.java
@@ -0,0 +1,12 @@
+package com.yc.wms.bean;
+
+public class InventoryLog {
+
+    public String RELATED_BILL;
+
+    public String LOG_TYPE;
+    public String bt_NAME;
+    public String lc_CODE;
+    public String lc1_CODE;
+    public String OCCUR_TIME;
+}
diff --git a/wms/src/main/java/com/yc/wms/controller/InventoryLogController.java b/wms/src/main/java/com/yc/wms/controller/InventoryLogController.java
new file mode 100644
index 0000000..675dca0
--- /dev/null
+++ b/wms/src/main/java/com/yc/wms/controller/InventoryLogController.java
@@ -0,0 +1,41 @@
+package com.yc.wms.controller;
+
+import cn.hutool.json.JSONObject;
+import cn.hutool.json.JSONUtil;
+import com.yc.wms.bean.InventoryLog;
+import com.yc.wms.until.QueryPageUtil;
+import com.yc.wms.until.Result;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+@RestController
+@Slf4j
+@RequestMapping("/InventoryLogManager")
+public class InventoryLogController {
+
+    @Autowired
+    private com.yc.wms.service.InventoryLogManager dcxService;
+
+    /**
+     * @return
+     * @param查询用户
+     */
+    @PostMapping("/queryInventoryLog")
+    public Result queryUser(@RequestBody String  json) {
+
+        QueryPageUtil query =new QueryPageUtil();
+        JSONObject jsonObject= JSONUtil.parseObj(json);
+        query.setPageSize((int)jsonObject.get("pageSize"));
+        query.setPageNum((int)jsonObject.get("pageNum"));
+
+        JSONObject param= (JSONObject)jsonObject.get("param");
+
+        InventoryLog inventoryLog = JSONUtil.toBean(param.toString(), InventoryLog.class);
+
+        return dcxService.readJson(query, inventoryLog);
+    }
+}
diff --git a/wms/src/main/java/com/yc/wms/service/InventoryLogManager.java b/wms/src/main/java/com/yc/wms/service/InventoryLogManager.java
new file mode 100644
index 0000000..7fe6d26
--- /dev/null
+++ b/wms/src/main/java/com/yc/wms/service/InventoryLogManager.java
@@ -0,0 +1,10 @@
+package com.yc.wms.service;
+
+import com.yc.wms.bean.InventoryLog;
+import com.yc.wms.until.QueryPageUtil;
+import com.yc.wms.until.Result;
+
+public interface InventoryLogManager {
+    Result readJson(QueryPageUtil query, InventoryLog inv_log);
+
+}
diff --git a/wms/src/main/java/com/yc/wms/service/impl/InventoryLogImpl.java b/wms/src/main/java/com/yc/wms/service/impl/InventoryLogImpl.java
new file mode 100644
index 0000000..34b9629
--- /dev/null
+++ b/wms/src/main/java/com/yc/wms/service/impl/InventoryLogImpl.java
@@ -0,0 +1,55 @@
+package com.yc.wms.service.impl;
+
+import com.yc.wms.bean.InventoryLog;
+import com.yc.wms.until.QueryPageUtil;
+import com.yc.wms.until.Result;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;
+import org.springframework.stereotype.Service;
+
+import java.text.SimpleDateFormat;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+@Service
+@Slf4j
+public class InventoryLogImpl implements com.yc.wms.service.InventoryLogManager{
+    @Autowired
+    private NamedParameterJdbcTemplate jdbcTemplate;
+
+    @Override
+    public Result readJson(QueryPageUtil query, InventoryLog inv_log) {
+        int pageNum = query.getPageNum();//当前页
+        int pageSize = query.getPageSize();//条数
+        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+        String sql ="select ROW_NUMBER() OVER(ORDER BY log.id) AS Row_Num, log.id as ID,log.RELATED_BILL AS 相关单号,\n" +
+                "log.LOG_TYPE as 日志类型,bt.NAME as 单据类型,loc1.CODE as 源库位,loc.CODE as 目标库位,\n" +
+                "i.CODE as 料号,i.NAME as 描述,i.UNIT as 单位,\n" +
+                "log.OCCUR_QUANTITY*log.INC_DEC 发生数量,\n" +
+                "log.OPERATOR as 操作人,log.OCCUR_TIME 发生日期 ,log.DESCRIPTION as 备注,\n" +
+                "ik.PROP_C1 as 批号,ik.PROP_C2 as LOC,ik.PROP_C3 as 特殊标记,ik.PROP_C5 as 供应商编号,ik.PROP_C8 as 暂存原因,\n" +
+                "ik.PROP_C9 as 工厂,log.endRegion as 工作站,log.LP as 容器\n" +
+                "FROM INVENTORY_LOG log\n" +
+                "left join BILL_TYPE bt on bt.ID=log.BILL_TYPE_ID\n" +
+                "left join LOCATION loc on loc.id=log.LOCATION_ID\n" +
+                "left join LOCATION loc1 on loc1.id=log.SRCLOC_ID\n" +
+                "left join ITEM_KEY ik on ik.id=log.ITEM_KEY_ID\n" +
+                "left join item i on i.id=ik.ITEM_ID\n";
+        if(inv_log.RELATED_BILL!=null&&!inv_log.RELATED_BILL.equals("")){
+            sql+=" and log.RELATED_BILL ="+"'"+ inv_log.RELATED_BILL+"'";
+        }
+        String sqlCount = "select count(t.id) as nums from(" + sql+") t";
+        String sqlFy = "select t.* from(" + sql+") t";
+
+
+        sqlFy+= " WHERE Row_Num BETWEEN " + (pageNum-1) * pageSize + " AND " + (pageNum) * pageSize;
+        //查询单数据
+        Map listCount = jdbcTemplate.queryForMap(sqlCount, new HashMap<>());
+        //查询多条数据据
+        List