#
whycq
2024-05-25 71f7476809c4a41074b9e5164751faeb1c0b47e2
#
1个文件已修改
30 ■■■■■ 已修改文件
pages/phyz/stationManage/stationDetl.vue 30 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/phyz/stationManage/stationDetl.vue
@@ -192,6 +192,7 @@
        
        <!-- 底部操作按钮 -->
        <view class="buttom">
            <button size="mini" type="primary" @click="handBack()" v-if="btnType == 'handBack'">转手动</button>
            <button size="mini" type="warn" @click="doBack()" v-if="btnType == 'out' || btnType == 'pick'">退库</button>
            <button size="mini" type="primary" @click="emptyPakin()" v-if="btnType == 'emptyPakin'">空板入库</button>
            <button size="mini" type="primary" @click="emptyOut()" v-if="btnType == 'emptyPakin'">呼叫空板</button>
@@ -445,6 +446,9 @@
                                } else if (wrkMast.ioType == 103) {
                                    wrkMast['ioTitle'] = '拣料出库'
                                    _this.btnType = 'pick'
                                } else if (wrkMast.ioType == 109) {
                                    wrkMast['ioTitle'] = '自动回流'
                                    _this.btnType = 'handBack'
                                } else if (wrkMast.ioType == 110) {
                                    wrkMast['ioTitle'] = '空板出库'
                                } else if (wrkMast.ioType == 111) {
@@ -765,6 +769,32 @@
                        }
                    }
                });
            },
            handBack() {
                let that = this
                let params = []
                let param = { devNo: this.station.devNo, containerCode: this.station.barcode, }
                params.push(param)
                uni.request({
                    url: that.baseUrl + '/agvMobile/hand/control/handBack',
                    header: {'token': uni.getStorageSync('token')},
                    data: {devNo: that.station.devNo, barcode: that.barcode},
                    method: 'POST',
                    success(result) {
                        var res = result.data
                        if (res.code === 200) {
                            setTimeout(()=> {
                                that.reloadStation()
                            },1000)
                            uni.showToast({ title: '转换成功', icon: "success", position: 'top' })
                        } else if (res.code == 403) {
                            uni.showToast({ title: res.msg, icon: "error", position: 'top' })
                            setTimeout(() => { uni.reLaunch({ url: '../../login/login' }); }, 1000);
                        } else {
                            uni.showToast({ title: res.msg, icon: "error", position: 'top' })
                        }
                    }
                });
            }
            
        }