From 0069b25d77cf2dd36b030fa4c86d4f3738f552e8 Mon Sep 17 00:00:00 2001 From: pang.jiabao <pang_jiabao@163.com> Date: 星期二, 13 五月 2025 08:44:37 +0800 Subject: [PATCH] 跑库测试程序 --- src/main/webapp/views/commandManage/commandManage.html | 97 +++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 95 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/views/commandManage/commandManage.html b/src/main/webapp/views/commandManage/commandManage.html index 81e2487..a95fb72 100644 --- a/src/main/webapp/views/commandManage/commandManage.html +++ b/src/main/webapp/views/commandManage/commandManage.html @@ -63,7 +63,7 @@ </el-table-column> <el-table-column show-overflow-tooltip property="durationTime" label="鎸佺画鏃堕暱"> </el-table-column> - <el-table-column property="commandType" label="鎸囦护绫诲瀷"> + <el-table-column property="commandType$" label="鎸囦护绫诲瀷"> </el-table-column> <el-table-column property="device" label="璁惧"> </el-table-column> @@ -106,7 +106,10 @@ tableSearchParam: { task_no: null, status: null, - wrk_no: null + wrk_no: null, + barcode: null, + start_point: null, + target_point : null }, commandStep: -1 }, @@ -184,6 +187,96 @@ } return ''; }, + handleCommand(command, row) { + switch (command) { + case "showTask": + //鏌ョ湅浠诲姟 + this.showTask(row) + break; + case "executeCommand": + //鎵ц鎸囦护 + this.executeCommand(row) + break; + case "completeCommand": + //瀹屾垚鎸囦护 + this.completeCommand(row) + break; + } + }, + showTask(row) { + let wrkNo = row.wrkNo == null ? "" : row.wrkNo + console.log(wrkNo) + //鏌ョ湅鎸囦护 + $layui.layer.open({ + type: 2, + title: '浠诲姟绠$悊', + maxmin: true, + area: [top.detailWidth, top.detailHeight], + shadeClose: true, + content: '../taskWrk/taskWrk.html?taskNo=' + row.taskNo + "&wrkNo=" + wrkNo, + success: function(layero, index) {} + }); + }, + executeCommand(row) { + //鎵ц鎸囦护 + let that = this + $.ajax({ + url: baseUrl + "/commandInfo/executeCommand", + headers: { + 'token': localStorage.getItem('token') + }, + data: { + id: row.id + }, + method: 'POST', + success: function(res) { + if (res.code == 200) { + that.$message({ + message: "鎵ц鎴愬姛", + type: 'success' + }); + that.getTableData() + } else if (res.code === 403) { + top.location.href = baseUrl + "/"; + } else { + that.$message({ + message: res.msg, + type: 'error' + }); + } + } + }); + }, + completeCommand(row) { + //瀹屾垚鎸囦护 + let that = this + $.ajax({ + url: baseUrl + "/commandInfo/completeCommand", + headers: { + 'token': localStorage.getItem('token') + }, + data: { + id: row.id + }, + method: 'POST', + success: function(res) { + if (res.code == 200) { + that.$message({ + message: "瀹屾垚鎴愬姛", + type: 'success' + }); + that.getTableData() + } else if (res.code === 403) { + top.location.href = baseUrl + "/"; + } else { + that.$message({ + message: res.msg, + type: 'error' + }); + } + } + }); + }, } }) </script> -- Gitblit v1.9.1