南骏 池
2025-02-19 9e346bda123bba64e6eeebe0dff503bf84658af2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<%@ Page Title="生产退料" Language="C#" MasterPageFile="~/Mst.master" AutoEventWireup="true" CodeFile="Sctl.aspx.cs" Inherits="H5_Sctl" %>
 
<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-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="getMesItemTblDetailByBillNo"
     v-focus.noKeyboard
  ><template #button>
    <van-button size="small" type="info" plain @click="getInfo" >选择</van-button>
  </template></van-field>
  <van-field
      ref="sectionCode"
   value=""
   label="库位编号"
   v-model="depotSectionCode"
   clearable 
   :right-icon-size="19"
      @keyup.enter.native ="getDepot"
      <%--@input="getDepot"--%>
   placeholder="请扫码库位编号"
></van-field>
 <van-field
     ref="barcode"
  value=""
  label="物料条码"
   clearable 
 placeholder="请扫码"
     v-model="barcode"
  :right-icon-size="19"
     @keyup.enter.native ="getBarcode"
     <%--@input="getBarcode"--%>
  v-focus.noKeyboard
></van-field>
   <van-field
  value=""
  label="物料编码"
  v-model="itemNo"
  placeholder="条码数量"
  disabled
></van-field>
  <van-field
    center
    clearable
    v-model="sms"
    label="数量"
    placeholder="数量"
disabled
  ></van-field>
</van-cell-group>
    </div>
 
      <van-tabs  color="#000" title-active-color="#0283EF" >
  <van-tab title="待退明细">
    <van-row v-for="value in ItemTblDetail" class="font">
          <van-col span="12">物料:{{value.itemNo}}</van-col>
          <%--<van-col span="18">物料名称:{{value.itemName}}</van-col>--%>
          <van-col span="6">申请数:{{value.tld005}}</van-col>
          <van-col span="6">已退数:{{value.tld006}}</van-col>
    </van-row>
  </van-tab>
          <van-tab title="已退明细"></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/Sctl.js?<%=160 %>"></script>
</asp:Content>