自动化立体仓库 - WMS系统
*
lsh
2025-11-25 bba6f8c28e9bf689b1a80e5d750a417682d6cfbb
src/main/webapp/views/deviceOperate/rgvOperate.html
@@ -105,6 +105,7 @@
    var app = new Vue({
        el: '#app',
        data: {
            baseUrlWcs: "http://127.0.0.1:9090/zzgtwcs",
            tableData: [],
            taskAllData: [],
            currentRow: null,
@@ -146,9 +147,8 @@
            },
            getTaskAllData(index) {
                let that = this;
                var baseUrl = 'http://127.0.0.1:9090/zzgtwcs';
                $.ajax({
                    url: baseUrl + "/rgv/task/cache/all",
                    url: that.baseUrlWcs + "/rgv/task/cache/all",
                    headers: {
                        'token': localStorage.getItem('token')
                    },
@@ -163,7 +163,7 @@
                let that = this;
                // console.log("✅ 准备请求:");
                $.ajax({
                    url: "http://127.0.0.1:9090/zzgtwcs/rgv/status/all",
                    url: that.baseUrlWcs + "/rgv/status/all",
                    headers: {
                        'token': localStorage.getItem('token') || '' // 确保token不为null
                    },
@@ -215,14 +215,13 @@
            },
            requestOperate(method) {
                let that = this
                var baseUrl = 'http://127.0.0.1:9090/zzgtwcs';
                that.$confirm('此操作存在风险,是否继续','提示',{
                    confirmButtonText: '确定',
                    cancelButtonText: '取消',
                    type: 'warning'
                }).then(()=>{
                    $.ajax({
                        url: baseUrl + "/rgv/run/"+method,
                        url: that.baseUrlWcs + "/rgv/run/"+method,
                        headers: {
                            'token': localStorage.getItem('token')
                        },