From b2a607f3b2b29a45ea87fde2a5c2c3d9c4e1d9ab Mon Sep 17 00:00:00 2001
From: wbc <2597324127@qq.com>
Date: 星期四, 13 十一月 2025 15:24:23 +0800
Subject: [PATCH] Merge branch 'master' of http://43.142.96.171:8080/r/~cnf/JH/JH_PdaClient

---
 H5/Yjdb.aspx.cs |   14 +
 H5/Dbck.aspx    |   32 ++
 H5/Dbrk.aspx    |    2 
 H5/Js/Dbrk.js   |    6 
 H5/Yjdb.aspx    |  164 ++++++++++++++
 H5/Js/Dbck.js   |   70 ++++++
 H5/Js/Zzxdb.js  |    8 
 H5/Js/Yjdb.js   |  338 ++++++++++++++++++++++++++++++
 8 files changed, 620 insertions(+), 14 deletions(-)

diff --git a/H5/Dbck.aspx b/H5/Dbck.aspx
index dad1e08..a15ace6 100644
--- a/H5/Dbck.aspx
+++ b/H5/Dbck.aspx
@@ -8,6 +8,11 @@
 </style>
 </asp:Content>
 <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" Runat="Server">
+                <van-notice-bar 
+    :scrollable="false" 
+    :text="'褰撳墠缁勭粐锛�' + (Cookies.get('orgName') || '鏆傛棤缁勭粐淇℃伅')" 
+    class="org-info"
+/></van-notice-bar>
         <van-nav-bar
           title="璋冩嫧鍑哄簱"
           left-text="杩斿洖"
@@ -82,7 +87,9 @@
             <van-col span="3">寰呮壂</van-col>
             <van-col span="5">鎺ㄨ崘搴撲綅</van-col>
         </van-row>
-        <van-row v-for="(itm,index) in ItemDetail.items" :key="index">
+        <van-row v-for="(itm,index) in ItemBlDetail" :key="index"
+            :style="{ background: currentIndex === index ? '#87CEEB' : '' }"
+            @click.native="handleRowClick(itm, index)">
             <van-col span="8" class="text-left padding-left">
                 <div class="blue-text">{{itm.itemNo}}</div>
                 <div>{{itm.itemName}}</div>
@@ -95,6 +102,25 @@
         </van-row>
     </van-tab>
 
+    <van-tab title="搴撲綅鍒楄〃" class="mySolid font">
+        <van-row>
+            <van-col span="10" class="text-left padding-left">鏉$爜缂栧彿</van-col>
+            <van-col span="5" class="text-left padding-left">搴撲綅</van-col>
+            <van-col span="4">鏁伴噺</van-col>
+            <van-col span="5">浠撳簱</van-col>
+        </van-row>
+        <van-row v-for="(itm,index) in ItemBarKw" :key="index">
+            <van-col span="10" class="text-left padding-left">
+                <div class="blue-text">{{itm.iteM_BARCODE}}</div>
+            </van-col>
+            <van-col span="5" class="text-left padding-left">
+                <div>{{itm.depoT_SECTIONS_CODE}}</div>
+            </van-col>
+            <van-col span="4" class="blue-text">{{itm.quantity}}</van-col>
+            <van-col span="5" >{{itm.depot_name}}</van-col>
+        </van-row>
+    </van-tab>
+
     <van-tab title="宸叉壂鐗╂枡" class="mySolid font">
         <van-row>
             <van-col span="8" class="text-left padding-left">鐗╂枡</van-col>
@@ -102,7 +128,7 @@
             <van-col span="3">闇�棰嗘暟</van-col>
             <van-col span="5">宸查鏁�</van-col>
         </van-row>
-        <van-row v-for="(itm,index) in ItemDetail.ysitems" :key="index">
+        <van-row v-for="(itm,index) in ItemYsDetail" :key="index">
             <van-col span="8" class="text-left padding-left">
                 <div class="blue-text">{{itm.itemNo}}</div>
                 <div>{{itm.itemName}}</div>
@@ -123,5 +149,5 @@
   <%--<comback ></comback>--%>
 </asp:Content>
 <asp:Content ID="Content4" ContentPlaceHolderID="ContentPlaceHolder4" Runat="Server">
- <script src="Js/Dbck.js?<%=123111114 %>"></script>
+ <script src="Js/Dbck.js?<%=1231111112 %>"></script>
 </asp:Content>
diff --git a/H5/Dbrk.aspx b/H5/Dbrk.aspx
index 69a8c80..911eaea 100644
--- a/H5/Dbrk.aspx
+++ b/H5/Dbrk.aspx
@@ -152,5 +152,5 @@
   <%--<comback ></comback>--%>
 </asp:Content>
 <asp:Content ID="Content4" ContentPlaceHolderID="ContentPlaceHolder4" Runat="Server">
- <script src="Js/Dbrk.js?<%=1141111 %>"></script>
+ <script src="Js/Dbrk.js?<%=1141112 %>"></script>
 </asp:Content>
diff --git a/H5/Js/Dbck.js b/H5/Js/Dbck.js
index 42df939..e86d919 100644
--- a/H5/Js/Dbck.js
+++ b/H5/Js/Dbck.js
@@ -12,7 +12,13 @@
             fum: "",
             billNo: "",
             barcode:"",
-            ItemBlDetail:[],
+
+            ItemBlDetail: [], // 寰呮壂
+            ItemYsDetail: [], // 宸叉壂
+            ItemDetail: [],
+            ItemBarKw: [],
+            currentIndex: -1,
+
             modeInfo: [],
             active: 0,
             show: false,
@@ -29,6 +35,56 @@
         };
     },
     methods: {
+            handleRowClick(item, index) {
+                if (this.isLoading) {
+                    return;
+                }
+
+                // 閲嶇疆鎵�鏈夎鐨勯�変腑鐘舵��
+                this.currentIndex = -1;
+
+                // 璁剧疆褰撳墠閫変腑琛�
+                this.currentIndex = index;
+                this.selItem = {
+                    itemid: item.itemId,
+                    index: index
+                };
+
+                console.log('褰撳墠閫変腑椤�:', this.selItem); // 璋冭瘯鐢�
+
+                this.GetBarKwByItem();
+                //this.active = 1;            //鑷姩鍒囨崲鍒板簱浣嶅垪琛╰ab
+            },
+            GetBarKwByItem() {
+
+                var that = this;
+                that.isLoading = true;
+                that.AxiosHttp("post", 'Womdaa/GetBarKwByItemCK', {
+                    itemId: that.selItem.itemid,
+                    userName: that.userInfo.loginAccount,
+                    type: 'DBCK',//璋冩嫧鍑哄簱
+                    billNo: that.billNo
+                }, false)
+                    .then(function (res) {
+                        var json = res;
+                        if (json.status == 0) {
+                            that.ItemBarKw = json.data.tbBillList;
+                        }
+                        else {
+                            that.$toast.fail(json.message);
+                            that.$playSound('error');
+                            that.ItemBarKw = [];
+                        }
+                        that.isLoading = false;
+                    })
+                    .catch(function (error) {
+                        that.isLoading = false;
+                        that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+                        that.$playSound('error');
+                        console.log(error);
+                        that.ItemBarKw = [];
+                    });
+            },
         getInfo() {
             this.show = true;
 
@@ -71,6 +127,8 @@
             this.show = false;
 
             this.billNo = item.name;
+            // 娓呯┖搴撲綅鍒楄〃
+            this.ItemBarKw = [];
             this.GetMesItemBlDetailByBillNo();
             //this.$toast(item.name);
 
@@ -84,9 +142,15 @@
                 .then(function (res) {
                     var json = res;
                     if (json.status == 0) {
-                        that.ItemDetail = json.data.tbBillList;
+                        //that.ItemDetail = json.data.tbBillList;
+                        var tbBillList = json.data.tbBillList || {};
+                        that.ItemBlDetail = tbBillList.blDetails || []; // 寰呮壂
+                        that.ItemYsDetail = tbBillList.ysDetails || []; // 宸叉壂
                         that.$refs.barcode.focus();
                         that.barcode = "";
+                        // 閲嶇疆搴撲綅鏌ヨ涓墍鏈夎鐨勯�変腑鐘舵��
+                        that.currentIndex = -1;
+                        that.ItemBarKw = [];
                     }
                     else {
                         that.$toast.fail(json.message);
@@ -144,7 +208,7 @@
                         ////that.fum = json.data.form.fum;
                         //that.ItemBlDetail = json.data.items
                         that.$notify({ type: 'success', message: '鎵爜鎴愬姛' });
-
+                        that.$toast.success("鎵弿鎴愬姛");
                         that.$refs.barcode.focus();
                         that.barcode = "";
                         //that.GetMesItemBlDetailByBillNo();
diff --git a/H5/Js/Dbrk.js b/H5/Js/Dbrk.js
index 37ae208..7cc93b8 100644
--- a/H5/Js/Dbrk.js
+++ b/H5/Js/Dbrk.js
@@ -86,7 +86,7 @@
                         //that.ItemBlDetail = json.data.tbBillList;
                         that.ItemDetail = json.data.tbBillList;
                         that.$refs.sectionCode.focus();
-                        that.sectionCode = "";
+                        //that.sectionCode = "";
                     }
                     else {
                         that.$toast.fail(json.message);
@@ -130,7 +130,7 @@
                     else {
                         that.$toast.fail(json.message);
                         that.$refs.sectionCode.focus();
-                        that.sectionCode = "";
+                        //that.sectionCode = "";
 
                     }
                 })
@@ -139,7 +139,7 @@
                     that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
                     //console.log(error);
                     that.$refs.sectionCode.focus();
-                    that.sectionCode = "";
+                    //that.sectionCode = "";
                 });
         },
         getBarcode() {
diff --git a/H5/Js/Yjdb.js b/H5/Js/Yjdb.js
new file mode 100644
index 0000000..91f1a47
--- /dev/null
+++ b/H5/Js/Yjdb.js
@@ -0,0 +1,338 @@
+锘縱ar vm = new Vue({
+    el: '#app',
+    data: function () {
+        return {
+            isLoading: false,
+            userInfo: {
+                "loginGuid": '',
+                "loginAccount": '',
+            },
+            itemNo: "",
+            num: "",
+            fum: "",
+            billNo: "",
+            barcode:"",
+
+            ItemBlDetail: [], // 寰呮壂
+            ItemYsDetail: [], // 宸叉壂
+            ItemDetail: [],
+            ItemBarKw: [],
+            currentIndex: -1,
+
+            modeInfo: [],
+            active: 0,
+            show: false,
+            actions: [],
+            ItemDetail: [],
+            scanInfo: { barcodeNum: "", splitNum: "", barcode: "" },
+            sectionCode:"",
+        }
+    },
+    mounted() {
+        var that = this;
+        this.userInfo = {
+            loginGuid: this.GetLoginInfor().loginGuid,
+            loginAccount: this.GetLoginInfor().loginAccount,
+        };
+    },
+    methods: {
+            handleRowClick(item, index) {
+                if (this.isLoading) {
+                    return;
+                }
+
+                // 閲嶇疆鎵�鏈夎鐨勯�変腑鐘舵��
+                this.currentIndex = -1;
+
+                // 璁剧疆褰撳墠閫変腑琛�
+                this.currentIndex = index;
+                this.selItem = {
+                    itemid: item.itemId,
+                    index: index
+                };
+
+                console.log('褰撳墠閫変腑椤�:', this.selItem); // 璋冭瘯鐢�
+
+                this.GetBarKwByItem();
+                //this.active = 1;            //鑷姩鍒囨崲鍒板簱浣嶅垪琛╰ab
+            },
+            GetBarKwByItem() {
+
+                var that = this;
+                that.isLoading = true;
+                that.AxiosHttp("post", 'Womdaa/GetBarKwByItemCK', {
+                    itemId: that.selItem.itemid,
+                    userName: that.userInfo.loginAccount,
+                    type: 'DBCK',//璋冩嫧鍑哄簱
+                    billNo: that.billNo
+                }, false)
+                    .then(function (res) {
+                        var json = res;
+                        if (json.status == 0) {
+                            that.ItemBarKw = json.data.tbBillList;
+                        }
+                        else {
+                            that.$toast.fail(json.message);
+                            that.$playSound('error');
+                            that.ItemBarKw = [];
+                        }
+                        that.isLoading = false;
+                    })
+                    .catch(function (error) {
+                        that.isLoading = false;
+                        that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+                        that.$playSound('error');
+                        console.log(error);
+                        that.ItemBarKw = [];
+                    });
+            },
+        getInfo() {
+            this.show = true;
+
+            var that = this;
+            that.isLoading = true;
+            that.AxiosHttp("post", 'TransferOut/GetTransferOutNoList', {
+                //name: that.userInfo.loginAccount,
+            }, false)
+                .then(function (res) {
+                    var json = res;
+                    if (json.status == 0) {
+
+                        if (json.data.tbBillList.length == 0) {
+                            that.$toast.fail("娌℃湁鎵惧埌鍙互閫夋嫨鐨勫嚭搴撳崟鍙�");
+                        }
+
+                        that.actions = json.data.tbBillList.map(item => {
+                            return { name: item }
+                        });
+                    }
+                    else {
+                        that.$toast.fail(json.message);
+                    }
+                    that.isLoading = false;
+                })
+                .catch(function (error) {
+                    that.isLoading = false;
+                    that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+                    console.log(error);
+                });
+        },
+        onClick(index, title) {
+            this.$toast(`${index} ${title}`);
+            //this.$notify({ type: 'success', message: '鏌愭煇鐗╂枡鎵爜鎴愬姛鏌愭煇鐗╂枡鎵爜鎴愬姛鏌愭煇鐗╂枡鎵爜鎴愬姛鏌愭煇鐗╂枡鎵爜鎴愬姛' });
+
+        },
+        onSelect(item) {
+            // 榛樿鎯呭喌涓嬬偣鍑婚�夐」鏃朵笉浼氳嚜鍔ㄦ敹璧�
+            // 鍙互閫氳繃 close-on-click-action 灞炴�у紑鍚嚜鍔ㄦ敹璧�
+            this.show = false;
+
+            this.billNo = item.name;
+            // 娓呯┖搴撲綅鍒楄〃
+            this.ItemBarKw = [];
+            this.GetMesItemBlDetailByBillNo();
+            //this.$toast(item.name);
+
+        },
+        GetMesItemBlDetailByBillNo() {
+            var that = this;
+            that.isLoading = true;
+            that.AxiosHttp("post", 'TransferOut/GetTransferOutDetailListByBillNo', {
+                billNo: that.billNo
+            }, false)
+                .then(function (res) {
+                    var json = res;
+                    if (json.status == 0) {
+                        //that.ItemDetail = json.data.tbBillList;
+                        var tbBillList = json.data.tbBillList || {};
+                        that.ItemBlDetail = tbBillList.blDetails || []; // 寰呮壂
+                        that.ItemYsDetail = tbBillList.ysDetails || []; // 宸叉壂
+                        that.$refs.barcode.focus();
+                        that.barcode = "";
+                        that.sectionCode = tbBillList.allList[0].inKw;
+                        // 閲嶇疆搴撲綅鏌ヨ涓墍鏈夎鐨勯�変腑鐘舵��
+                        that.currentIndex = -1;
+                        that.ItemBarKw = [];
+                    }
+                    else {
+                        that.$toast.fail(json.message);
+                        that.$refs.billNo.focus();
+                        that.billNo = "";
+                        that.ItemDetail = null;
+                    }
+                    that.isLoading = false;
+                })
+                .catch(function (error) {
+                    that.isLoading = false;
+                    that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+                    that.$refs.billNo.focus();
+                    that.billNo = "";
+                    that.ItemBlDetail = null;
+                    //console.log(error);
+                });
+        },
+        getScan() {
+
+            //this.barcode = value;
+
+            var that = this;
+            that.isLoading = true;
+
+            if (!that.userInfo.loginAccount) {
+                this.$toast.fail("璇烽噸鏂版鏌ョ櫥褰曠姸鎬�");
+                that.isLoading = false;
+                return;
+            }
+
+            if (!that.barcode) {
+                this.$toast.fail("鏉$爜涓嶈兘涓虹┖");
+                that.isLoading = false;
+                return;
+            }
+
+            if (!that.billNo) {
+                this.$toast.fail("鐢宠鍗曞彿涓嶈兘涓虹┖");
+                that.isLoading = false;
+                return;
+            }
+
+            that.AxiosHttp("post", 'TransferOut/ScanYjdb', {
+                userName: that.userInfo.loginAccount,
+                barcode: that.barcode,
+                billNo: that.billNo,
+                sectionCode: that.sectionCode,
+            }, false)
+                .then(function (res) {
+                    var json = res;
+                    if (json.status == 0) {
+
+                        //that.itemNo = json.data.tbBillList.itemNo;
+                        ////that.num = json.data.form.num;
+                        ////that.fum = json.data.form.fum;
+                        //that.ItemBlDetail = json.data.items
+                        that.$notify({ type: 'success', message: '鎵爜鎴愬姛' });
+                        that.$toast.success("鎵弿鎴愬姛");
+                        that.$refs.barcode.focus();
+                        that.barcode = "";
+                        //that.GetMesItemBlDetailByBillNo();
+                        that.GetMesItemBlDetailByBillNo();
+                    }
+                    else if (json.status == 2) {
+                        that.itemNo = json.data.tbBillList.itemNo;
+                        that.$refs.splitNum.focus();
+                        that.scanInfo.splitNum = json.data.tbBillList.splitNum;
+                        that.scanInfo.barcodeNum = json.data.tbBillList.barcodeNum;
+                    }
+                    else {
+                        that.$toast.fail(json.message);
+                        that.$refs.barcode.focus();
+                        that.barcode = "";
+                    }
+                    that.isLoading = false;
+                })
+                .catch(function (error) {
+                    that.isLoading = false;
+                    that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+                    //console.log(error);
+                    that.$refs.barcode.focus();
+                    that.barcode = "";
+                });
+        },
+        getChaiFen() {
+            //this.isPrinterPopupVisible = true; // 鏄剧ず寮圭獥
+
+            if (this.isLoading) {
+                return;
+            }
+
+            var that = this;
+            if (that.billNo.length <= 0) {
+                that.$toast.fail("鐢宠鍗曞彿涓嶈兘涓虹┖锛�");
+                return;
+            }
+            if (that.scanInfo.splitNum * 1 <= 0) {
+                that.$toast.fail("鎷嗗垎鏁伴噺涓嶈兘涓虹┖锛�");
+                return;
+            }
+            if (that.barcode.length * 1 <= 0) {
+                that.$toast.fail("鐗╂枡鏉$爜涓嶈兘涓虹┖锛�");
+                return;
+            }
+            //that.ip = "";
+            //that.prot = "";
+            //that.getPrintInfo();
+
+            //if (that.ip.length <= 0 || that.prot.length <= 0) {
+            //    alert(that.ip);
+            //    alert(that.prot);
+            //    return;
+            //}
+
+            that.isLoading = true;
+            that.AxiosHttp("post", 'TransferOut/ScanYjdbCF', {
+                daa001: that.billNo,
+                userName: that.userInfo.loginAccount,
+                barcode: that.barcode,
+                Num: that.scanInfo.splitNum,
+                sectionCode: that.sectionCode,
+            }, false)
+                .then(function (res) {
+                    var json = res;
+                    if (json.status == 0) {
+                        //  that.modeInfo = json.data.tbBillList;
+                        that.scanInfo.splitNum = null;
+                        that.scanInfo.barcodeNum = null;
+                        that.scanInfo.barcode = null;
+                        that.$notify({ type: 'success', message: json.message });
+                        that.$playSound('success');
+
+                        that.sendPrintMessage(json.data.tbBillList);
+
+                        that.$refs.barcode.focus();
+                        that.barcode = "";
+                        //that.GetMesItemBlDetailByBillNo();
+                        that.GetMesItemBlDetailByBillNo();
+                    }
+                    else {
+                        that.$toast.fail(json.message);
+                        that.$playSound('error');
+                    }
+                    that.isLoading = false;
+                })
+                .catch(function (error) {
+                    that.isLoading = false;
+                    that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+                    that.$playSound('error');
+                });
+        },
+        getKwInfo() {
+            var that = this;
+            that.isLoading = true;
+            that.AxiosHttp("post", 'MesDepotSections/GetSectionName', {
+                sectionCode: that.sectionCode
+            }, false)
+                .then(function (res) {
+                    var json = res;
+                    if (json.status == 0) {
+                        that.depotData = json.data.tbBillList;
+                        that.$refs.barcode.focus();
+                    }
+                    else {
+                        that.$toast.fail(json.message);
+                        that.$playSound('error');
+                        that.depotData = [];
+                        that.sectionCode = "";
+                    }
+                    that.isLoading = false;
+                })
+                .catch(function (error) {
+                    that.isLoading = false;
+                    that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+                    that.$playSound('error');
+                    that.depotData = [];
+                    that.sectionCode = "";
+                    that.$refs.sectionCode.focus();
+                });
+        },
+    }
+})
\ No newline at end of file
diff --git a/H5/Js/Zzxdb.js b/H5/Js/Zzxdb.js
index 67032ef..a87e717 100644
--- a/H5/Js/Zzxdb.js
+++ b/H5/Js/Zzxdb.js
@@ -108,13 +108,13 @@
                     var json = res;
                     if (json.status == 0) {
                         if (json.data.tbBillList.xcslItemList[0].rnum == 2) {
-                            that.drkw = 'Z2';
-                            that.dckw = 'A14-3-33';
+                            that.drkw = json.data.tbBillList.xcslItemList[0].gyskw;
+                            that.dckw = json.data.tbBillList.xcslItemList[0].kw;
                             that.billNo = json.data.tbBillList.xcslItemList[0].billno;
                         }
                         else {
-                            that.drkw = 'A14-3-33';
-                            that.dckw = 'Z2';
+                            that.drkw = json.data.tbBillList.xcslItemList[0].kw;
+                            that.dckw = json.data.tbBillList.xcslItemList[0].gyskw;
                             that.billNo = json.data.tbBillList.xcslItemList[0].billno;
                         }
                     }
diff --git a/H5/Yjdb.aspx b/H5/Yjdb.aspx
new file mode 100644
index 0000000..05edfa0
--- /dev/null
+++ b/H5/Yjdb.aspx
@@ -0,0 +1,164 @@
+锘�<%@ Page Title="" Language="C#" MasterPageFile="~/Mst.master" AutoEventWireup="true" %>
+
+<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
+        <style>
+    .bg-info {
+        background-color:#fff;
+    }
+</style>
+</asp:Content>
+<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" Runat="Server">
+                <van-notice-bar 
+    :scrollable="false" 
+    :text="'褰撳墠缁勭粐锛�' + (Cookies.get('orgName') || '鏆傛棤缁勭粐淇℃伅')" 
+    class="org-info"
+/></van-notice-bar>
+        <van-nav-bar
+          title="璋冩嫧鍑哄簱"
+          left-text="杩斿洖"
+          left-arrow
+          @click-left="GoBack()"
+        ></van-nav-bar>
+        <div>
+        <van-cell-group>
+  <van-field
+      ref="billNo"
+    value=""
+    label="璋冩嫧鐢宠"
+    clearable 
+     placeholder="閫夋嫨/鎵嬪綍"
+    :right-icon-size="19"
+      v-model="billNo"
+      @keyup.enter.native ="GetMesItemBlDetailByBillNo"
+     v-focus.noKeyboard
+  ><template #button>
+    <van-button size="small" type="info" plain @click="getInfo" >閫夋嫨</van-button>
+  </template></van-field>
+                        <van-field
+                    ref="sectionCode"
+                    v-model="sectionCode"
+                    label="璋冨叆搴撲綅"
+                    clearable 
+                    placeholder="璇锋壂鐮�"
+                    :right-icon-size="19"
+                    v-focus.noKeyboard
+                    @keyup.enter.native="getKwInfo">
+                </van-field>
+                <van-field
+                    ref="barcode"
+                    v-model="barcode"
+                    label="鐗╂枡鏉$爜"
+                    clearable 
+                    placeholder="璇锋壂鐮�"
+                    :right-icon-size="19"
+                    v-focus.noKeyboard
+                    @keyup.enter.native="getScan">
+                </van-field>
+
+ <van-field
+  value=""
+  label="鐗╂枡缂栫爜"
+   clearable 
+ placeholder="鐗╂枡缂栫爜"
+  :right-icon-size="19"
+     v-model="itemNo"
+  v-focus.noKeyboard
+     disabled
+></van-field>
+                <van-field
+                    v-model="scanInfo.barcodeNum"
+                    label="鏉$爜鏁伴噺"
+                    placeholder="鏉$爜鏁伴噺"
+                    disabled>
+                </van-field>
+<van-field
+    ref="splitNum"
+    v-model="scanInfo.splitNum"
+    center
+    clearable
+    label="鍙戞枡鏁伴噺"
+    placeholder="鍙戞枡鏁伴噺">
+    <van-button 
+        slot="button" 
+        type="info" 
+        size="small"  
+        plain 
+        @click="getChaiFen">
+        鏉$爜鎷嗗垎
+    </van-button>
+</van-field>
+</van-cell-group>
+    </div>
+
+  <van-tabs color="#000" title-active-color="#0283EF">
+    <van-tab title="寰呮壂鐗╂枡" class="mySolid font">
+        <van-row>
+            <van-col span="8" class="text-left padding-left">鐗╂枡</van-col>
+            <van-col span="8" class="text-left padding-left">瑙勬牸</van-col>
+            <van-col span="3">寰呮壂</van-col>
+            <van-col span="5">鎺ㄨ崘搴撲綅</van-col>
+        </van-row>
+        <van-row v-for="(itm,index) in ItemBlDetail" :key="index"
+            :style="{ background: currentIndex === index ? '#87CEEB' : '' }"
+            @click.native="handleRowClick(itm, index)">
+            <van-col span="8" class="text-left padding-left">
+                <div class="blue-text">{{itm.itemNo}}</div>
+                <div>{{itm.itemName}}</div>
+            </van-col>
+            <van-col span="8" class="text-left padding-left">
+                <div>{{itm.itemModel}}</div>
+            </van-col>
+            <van-col span="3" class="blue-text">{{itm.dsQty}}</van-col>
+            <van-col span="5">{{itm.recoKw}}</van-col>
+        </van-row>
+    </van-tab>
+
+    <van-tab title="搴撲綅鍒楄〃" class="mySolid font">
+        <van-row>
+            <van-col span="10" class="text-left padding-left">鏉$爜缂栧彿</van-col>
+            <van-col span="5" class="text-left padding-left">搴撲綅</van-col>
+            <van-col span="4">鏁伴噺</van-col>
+            <van-col span="5">浠撳簱</van-col>
+        </van-row>
+        <van-row v-for="(itm,index) in ItemBarKw" :key="index">
+            <van-col span="10" class="text-left padding-left">
+                <div class="blue-text">{{itm.iteM_BARCODE}}</div>
+            </van-col>
+            <van-col span="5" class="text-left padding-left">
+                <div>{{itm.depoT_SECTIONS_CODE}}</div>
+            </van-col>
+            <van-col span="4" class="blue-text">{{itm.quantity}}</van-col>
+            <van-col span="5" >{{itm.depot_name}}</van-col>
+        </van-row>
+    </van-tab>
+
+    <van-tab title="宸叉壂鐗╂枡" class="mySolid font">
+        <van-row>
+            <van-col span="8" class="text-left padding-left">鐗╂枡</van-col>
+            <van-col span="8" class="text-left padding-left">瑙勬牸</van-col>
+            <van-col span="3">闇�棰嗘暟</van-col>
+            <van-col span="5">宸查鏁�</van-col>
+        </van-row>
+        <van-row v-for="(itm,index) in ItemYsDetail" :key="index">
+            <van-col span="8" class="text-left padding-left">
+                <div class="blue-text">{{itm.itemNo}}</div>
+                <div>{{itm.itemName}}</div>
+            </van-col>
+            <van-col span="8" class="text-left padding-left">
+                <div>{{itm.itemModel}}</div>
+            </van-col>
+            <van-col span="3">{{itm.fQty}}</van-col>
+            <van-col span="5" class="blue-text">{{itm.sQty}}</van-col>
+        </van-row>
+    </van-tab>
+</van-tabs>
+    <van-action-sheet v-model="show" :actions="actions" @select="onSelect" ></van-action-sheet>
+
+</asp:Content>
+<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder3" Runat="Server">
+    <comloading  v-if="isLoading"></comloading>
+  <%--<comback ></comback>--%>
+</asp:Content>
+<asp:Content ID="Content4" ContentPlaceHolderID="ContentPlaceHolder4" Runat="Server">
+ <script src="Js/Yjdb.js?<%=12 %>"></script>
+</asp:Content>
diff --git a/H5/Yjdb.aspx.cs b/H5/Yjdb.aspx.cs
new file mode 100644
index 0000000..0bbf74c
--- /dev/null
+++ b/H5/Yjdb.aspx.cs
@@ -0,0 +1,14 @@
+锘縰sing System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+
+public partial class H5_Scbl : System.Web.UI.Page
+{
+    protected void Page_Load(object sender, EventArgs e)
+    {
+
+    }
+}
\ No newline at end of file

--
Gitblit v1.9.3