pang.jiabao
2025-03-07 af95155c788ff5b88f55e0bea732b480a68be442
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<template>
    <view>
        <view class="code">
            <view class="item">
                <view class="code-decs">库位号:</view>
                <input type="text" placeholder=" 扫码 / 输入" v-model="locno" :focus="barcodeFocus"
                    @input="barcodeInput()">
            </view>
            <view class="item">
                <view class="code-decs">托盘码:</view>
                <input type="text" placeholder=" 扫码 / 输入" v-model="barcode" :focus="matFocus" @input="fetchGoods">
                <view class="item-right">
                    <button></button>
                </view>
            </view>
            <uni-section title="商品列表" type="line" class="mat-list-title"></uni-section>
        </view>
        <view class="list-view">
            <scroll-view style="overflow: hidden;overflow-y: scroll;height: auto;">
                <view class="list" v-for="(item,i) in dataList" :key="i">
                    <view class="list-left">
                        <view class="list-left-item">
                            <view class="desc">No:</view>
                            <view class="left-item">{{i + 1}}</view>
                        </view>
                        <view class="list-left-item">
                            <view class="desc">订单号:</view>
                            <view class="left-item">
                                <uni-tag :text="item.orderNo" type="primary"></uni-tag>
                            </view>
                        </view>
                        <view class="list-left-item">
                            <view class="desc">料号:</view>
                            <view class="left-item">
                                <uni-tag :text="item.matnr" type="primary"></uni-tag>
                            </view>
                        </view>
                        <view class="list-left-item">
                            <view class="desc">批号:</view>
                            <view class="left-item">
                                <uni-tag :text="item.batch" type="warning"></uni-tag>
                            </view>
                        </view>
                        <view class="list-left-item">
                            <view class="desc">数量:</view>
                            <view class="left-item">{{item.anfme}}</view>
                        </view>
                    </view>
                </view>
            </scroll-view>
        </view>
        <!-- 底部操作按钮 -->
        <view class="buttom">
            <button size="middle" type="primary" @click="combConfirm('warn')">上架</button>
        </view>
        <!-- 确认上架 -->
        <view>
            <uni-popup ref="combConfirm" type="dialog">
                <uni-popup-dialog :type="msgType" cancelText="取消" confirmText="确认" :title="title" :content="content"
                    @confirm="comb" @close="combClose"></uni-popup-dialog>
            </uni-popup>
        </view>
        <view>
            <!-- 提示信息弹窗 -->
            <uni-popup ref="message" type="message">
                <uni-popup-message :type="msgType1" :message="messageText" :duration="2000"></uni-popup-message>
            </uni-popup>
        </view>
    </view>
</template>
 
<script>
    export default {
        data () {
            return {
                baseUrl: '',
                token: '',
                order: '',
                locno: '',
                barcode: '',
                barcodeFocus: '',
                dataList: [],
                count: 0,
                rowNum: '',
                matnr: '',
                matnr1: '',
                batch: '',
                weight: '',
                msgType1: 'success',
                msgType: 'success',
                messageText: '',
                title: '',
                content: '',
                barcodeFocus: true,
                matFocus: false,
                matData: '',
                removeNum: 0
            }
        },
        onShow() {
            this.baseUrl = uni.getStorageSync('baseUrl');
            this.token = uni.getStorageSync('token');
        },
        methods: {
            fetchGoods() {
                let that = this 
                setTimeout(() => {
                    that.getMatnrBybarcode()
                }, 800)
            },
 
            /**
             * 根据拖盘码拉取已组拖数据
             */
            getMatnrBybarcode() {
                if (this.barcode.length < 1) {
                    return
                }
                // if (this.barcode.length != 8) {
                //     this.messageToggle('error', '拖盘码为8位随机数字!!')
                //     return
                // } 
                let that = this
                uni.request({
                    url: that.baseUrl + '/pda/barcode/matnr/' + that.barcode,
                    header: {
                        'token': uni.getStorageSync('token')
                    },
                    success(response) {
                        let result = response.data;
                        if (result.code === 200) {
                            that.dataList = result.data
                        }
                    }    
                })
            },
            
            combConfirm(type) {
                if (this.locno.trim() == undefined || this.locno.trim() == '') {
                    this.messageToggle('error', '上架库位不能为空!!')
                    return
                } 
                if (this.barcode.trim() == undefined || this.barcode.trim() == '') {
                    this.messageToggle('error', '拖盘码不能为空!!')
                    return
                }
                this.dialogToggle(type, '确认', '是否上架组拖物料')
            },
            
            comb() {
                uni.vibrateShort();
                let that = this;
                this.$toast.loading('上架中...')
                uni.request({
                    url: that.baseUrl + '/pda/matnr/in/barcode',
                    data: JSON.stringify({
                        loc: that.locno.trim(),
                        barcode: that.barcode.trim()
                    }),
                    method: 'POST',
                    header: {
                        'token': uni.getStorageSync('token')
                    },
                    success(result) {
                        that.$toast.hideLoading()
                        var res = result.data
                        if (res.code === 200) {
                            that.messageToggle('success', '上架成功!!')
                        } else if (res.code == 403) {
                            that.messageText = res.msg
                            that.messageToggle('error')
                            setTimeout(() => {
                                uni.reLaunch({
                                    url: '../login/login'
                                });
                            }, 1000);
                        } else {
                            that.messageText = res.msg
                            that.messageToggle('error')
                        }
                        
                    },
                    fail() {
                        that.$toast.hideLoading()
                    },
                    complete() {
                        that.resst()
                    }
                });
            },
 
            combClose() {
                this.$refs.combConfirm.close()
            },
            
            resst() {
                this.dataList = []
                this.barcode = ''
                this.locno = ''
            },
            
            //dialog弹框信息
            dialogToggle(type,title, msg) {
                this.msgType = type
                this.title = title
                this.content = msg
                this.$refs.combConfirm.open()
            },
            
            //消息弹框
            messageToggle(type, msg) {
                this.msgType1 = type
                if (msg != undefined || msg != null) {
                    this.messageText = msg
                } 
                this.$refs.message.open()
            },
        }
    }
</script>
 
<style>
    @import url('../../static/css/wms.css/wms.css');
    
    .uni-section {
        margin-top: 0rpx;
        
        .uni-section__content-title {
            font-size: 16px !important;
        }
    }
    
    .buttom uni-button {
        width: 60%;
    }
    
    .list-view {
        width: 100%;
        position: relative;
    }
    
    .list {
        display: flex;
        min-height: 80rpx;
        background-color: #FFF;
        margin: 20rpx;
        border-radius: 20rpx;
        box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.2);
    }
    .list:first-child {
        margin-top: 300rpx;
    }
    .list:last-child {
        margin-bottom: 120rpx;
    }
    .code {
        width: 100%;
        position: fixed;
        background: white;
        min-height: 200rpx;
        background-color: #FFF;
        z-index: 10;
    }
    .item {
        display: flex;
        align-items: center;
        height: 100rpx;
        margin-left: 20rpx;
        border-bottom: 1px solid #DCDFE6;
    }
    
    .item input {
        height: 50rpx;
        line-height: 50rpx;
        /* font-family: PingFang SC; uniapp 默认字体不居中 */
        font-size: 36upx;
        font-family: PingFang SC;
        width: 55vw;
    
    }
    
    .code-decs {
        width: 20vw;
        font-size: 18px;
        color: #303133;
    }
    
    .item-right {
        margin-left: auto;
        margin-right: 20rpx;
    }
    
    .mat-list-title {
        height: 80rpx;
        position: fixed;
        line-height: 80rpx;
        font-size: 24px;
        width: 100%;
        background: white;
        font-weight: 500;
    }
</style>