南骏 池
2025-08-19 a40798a6290b41c4aacab2e142a23b944743bda9
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<%@ Page Title="AGV操作" Language="C#" MasterPageFile="~/Mst.master" AutoEventWireup="true" CodeFile="AgvCz.aspx.cs" Inherits="H5_Cpdbsj" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
  <style>
    .si-status-box,
    .si-status__left
    {
        background-color: transparent !important; /* 透明背景 */
        border: 1px solid #000 !important; /* 黑色外框 */
        color: #000 !important; /* 全局文字颜色 */
        height: 0.5rem;
    }
 
    .si-status__left::after {
        content: none !important;
    }
 
    .si-status__label,
    .si-status__right {
        font-size: 0.33rem !important; /* 统一字体大小 */
        color: inherit !important; /* 继承父级文字颜色 */
    }
 
 
    /* 居中核心样式 */
.centered-stepper-field {
  .stepper-container {
    display: flex;
    justify-content: center; /* 水平居中 */
    width: 100%;
  }
 
  /* 调整步进器按钮间距 */
  .van-stepper__minus {
    margin-right: 12px;
  }
  .van-stepper__plus {
    margin-left: 12px;
  }
}
 
      /* 新增样式 */
    .button-container {
        display: flex;
        width: 100%;
        gap: 12px; /* 按钮间距 */
        padding: 0 16px; /* 左右留白 */
        box-sizing: border-box;
    }
 
    .action-button {
        flex: 1; /* 等分剩余空间 */
        min-width: 0; /* 防止内容溢出 */
    }
 
    .van-checkbox__icon--checked .van-icon 
    {
        color: #ffffff !important;
    }
 
</style>
</asp:Content>
 
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" Runat="Server">
    <div class="content-wrapper">
        <van-nav-bar
            title="AGV操作"
            left-text="返回"
            left-arrow
            @click-left="GoBack()">
        </van-nav-bar>
 
        <div class="mySolid">
            <van-cell-group>
                <van-field 
                    ref="KbBar"
                    v-model="KbBar"
                    label="卡板条码"
                    clearable 
                    placeholder="请扫码"
                    :right-icon-size="19"
                    v-focus.noKeyboard
                    @keyup.enter.native="getKbBarInfo" 
                    autofocus="true">
                </van-field>
 
                <van-field
                    ref="jyz"
                    v-model="jyz"
                    label="检验状态"
                    placeholder="请选择检验状态"
                    autofocus="true"
                    @click.native="selectJyz">
                </van-field>
 
                <van-field
                    ref="lcName"
                    v-model="lcName"
                    label="楼层"
                    placeholder="请选择楼层"
                    autofocus="true"
                    @click.native="selectLc">
                </van-field>
                <div style="height: 10px"></div>
               <!-- 修改后的按钮容器 -->
               <div class="button-container">
                <van-button 
                  type="warning" 
                  class="action-button reset-button"
                  @click.native="handleAgvSj"
                >AGV送检</van-button>
                <van-button
                  type="primary" 
                  class="action-button"
                  @click.native="handleAgvJy"
                >AGV检验</van-button>
                 <!-- style="background-color: #27f83f;border-color: #27f83f;color: white" -->
                <van-button 
                  type="info" 
                  class="action-button submit-button"
                  @click.native="handleAgvRk"
                >入立库</van-button>
              </div>
 
            </van-cell-group>
        </div>
 
        <van-action-sheet v-model="show" :actions="actions" @select="onSelect" ></van-action-sheet>
        <van-action-sheet v-model="show2" :actions="actions2" @select="onSelect2" ></van-action-sheet>
 
        
    </div>
</asp:Content>
 
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder3" Runat="Server">
    <comloading v-if="isLoading"></comloading>
</asp:Content>
 
<asp:Content ID="Content4" ContentPlaceHolderID="ContentPlaceHolder4" Runat="Server">
    <script src="Js/AgvCz.js?<%=11 %>"></script>
</asp:Content>