| | |
| | | |
| | | <!-- 底部操作按钮 --> |
| | | <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> |
| | |
| | | } 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) { |
| | |
| | | } |
| | | } |
| | | }); |
| | | }, |
| | | 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' }) |
| | | } |
| | | } |
| | | }); |
| | | } |
| | | |
| | | } |