| | |
| | | this.xtNum = action.lineNo; // 绑定line_no到xtNum字段 |
| | | console.log("选择的线体编号:", this.xtNum); |
| | | this.xtName = action.name; // 绑定name到xtName字段 |
| | | if (action.agvPostion != null) { |
| | | const agvPostionStr = String(action.agvPostion); |
| | | this.AgvDw = agvPostionStr.split(',')[0]; |
| | | this.actionsAgvDw = this.handleAgvPositions(agvPostionStr); |
| | | } |
| | | this.show = false; |
| | | }, |
| | | |
| | |
| | | that.actions = json.data.tbBillList.map(item => { |
| | | return { |
| | | name: item.name, |
| | | lineNo: item.line_no // 新增 |
| | | lineNo: item.line_no, // 新增 |
| | | agvPostion: item.agvPostion |
| | | }; |
| | | }); |
| | | } |
| | |
| | | that.isLoading = true; |
| | | that.AxiosHttp("post", 'Womdaa/handleAGVCall', { |
| | | XtNum: that.xtNum, |
| | | userAccount: that.userInfo.loginAccount |
| | | userAccount: that.userInfo.loginAccount, |
| | | AgvDw: that.AgvDw |
| | | }, false) |
| | | .then(function (res) { |
| | | var json = res; |