*
lsh
2025-03-01 5180133179d3589a1c64cdf0a1431990b80f1bc2
src/main/webapp/views/index.html
@@ -59,7 +59,7 @@
        }
        .station {
            position: absolute;
            width: 40px;
            width: 20px;
            height: 24px;
            /*border-radius: 50%;*/
            text-align: center;
@@ -184,6 +184,9 @@
    <!--</header>-->
    <div id="app">
        <div  class="map">
            <div v-if="licenseDayI <=30 ">
                <div style="color: red">{{licenseDay}}</div>
            </div>
            <!--        <div class="inner-ring"></div>-->
            <!--        <div class="outer-ring"></div>-->
<!--            <div v-for="track in energyGatheringRing" class="inner-ring" :style="{  borderColor: track.trackColor , boxShadow :  'inset 0 0 30px '+track.radiationColor+', 0 0 20px '+track.radiationColor}"></div>-->
@@ -215,17 +218,17 @@
"
                      style="fill:none; stroke:blue; stroke-width:4;" />
            </svg>
            <div class="bus-station">
                <div v-for="(item,i) in devpPos1" class="bus-item-top" :style="'left:' + (75 + i * 15) + 'px'">{{item.dev_no}}</div>
            </div>
            <div class="bus-station" style="flex-direction: column">
                <div v-for="(item,i) in devpPos2" class="bus-item-left" :style="'top:' + (200 + i * 50) + 'px'">{{item.dev_no}}</div>
            </div>
            <div class="bus-station" style="flex-direction: column">
                <div v-for="(item,i) in devpPos3" class="bus-item-left2" :style="'top:' + (100 + i * 10) + 'px'">{{item.dev_no}}</div>
            </div>
            <!-- Stations on outer ring -->
<!--            <div v-for="station in tableDataDev" class="station" :style="{ top: station.valueX + '%', left: station.valueY + '%' }">{{ station.index }}</div>-->
<!--            <div class="bus-station">-->
<!--                <div v-for="(item,i) in devpPos1" class="bus-item-top" :style="'left:' + (75 + i * 15) + 'px'">{{item.dev_no}}</div>-->
<!--            </div>-->
<!--            <div class="bus-station" style="flex-direction: column">-->
<!--                <div v-for="(item,i) in devpPos2" class="bus-item-left" :style="'top:' + (200 + i * 50) + 'px'">{{item.dev_no}}</div>-->
<!--            </div>-->
<!--            <div class="bus-station" style="flex-direction: column">-->
<!--                <div v-for="(item,i) in devpPos3" class="bus-item-left2" :style="'top:' + (100 + i * 10) + 'px'">{{item.dev_no}}</div>-->
<!--            </div>-->
<!--             Stations on outer ring-->
            <div v-for="station in tableDataDev" class="station" :style="{ top: station.valueY + 'px', left: station.valueX + 'px' }">{{ station.index }}</div>
            <div>
                <el-switch
                        style="display: block"
@@ -272,12 +275,12 @@
                            label="工作状态">
                    </el-table-column>
                    <el-table-column
                            prop="staNo"
                            label="目标站">
                    </el-table-column>
                    <el-table-column
                            prop="sourceStaNo"
                            label="源站">
                    </el-table-column>
                    <el-table-column
                            prop="staNo"
                            label="目标站">
                    </el-table-column>
                    <el-table-column
                            prop="modiTime"
@@ -291,11 +294,18 @@
                            prop="rgvSts"
                            label="RGV状态">
                    </el-table-column>
<!--                    <el-table-column-->
<!--                            prop=""-->
<!--                            label="操作">-->
<!--                        <el-button type="primary" icon="el-icon-edit" circle></el-button>-->
<!--                    </el-table-column>-->
                    <el-table-column
                            label="操作"
                            type="template">
                        <template slot-scope="scope">
                            <el-button
                                    type="danger"
                                    size="small"
                                    @click="taskDelete(scope.row)">
                                删除
                            </el-button>
                        </template>
                    </el-table-column>
                </el-table>
            </div>
        </div>
@@ -335,11 +345,18 @@
                            prop="status$"
                            label="状态">
                    </el-table-column>
<!--                    <el-table-column-->
<!--                            prop=""-->
<!--                            label="操作">-->
<!--                        <el-button type="primary" icon="el-icon-edit" circle></el-button>-->
<!--                    </el-table-column>-->
                    <el-table-column
                            label="操作"
                            type="template">
                        <template slot-scope="scope">
                            <el-button
                                    :type="scope.row.status === 0 ? 'primary' : 'danger'"
                                    size="small"
                                    @click="toggleStatus(scope.$index, scope.row)">
                                {{ scope.row.status === 0 ? '禁用' : '解除禁用' }}
                            </el-button>
                        </template>
                    </el-table-column>
                </el-table>
            </div>
        </div>
@@ -352,6 +369,8 @@
                activeNames: ['1'],
                valueLeft: '0',
                valueRight: '0',
                licenseDay: '已过期',
                licenseDayI: 100,
                valueSystem: false,
                tableDataRgv: [],
                tableDataDev: [],
@@ -414,6 +433,7 @@
                    this.getTableDataLeft()
                    this.getTableDataRight()
                    this.getValueSystem()
                    this.getLicenseDays()
                    setInterval(() => {
                        this.getTableDataRgv()
@@ -422,6 +442,7 @@
                        this.getTableDataLeft()
                        this.getTableDataRight()
                        this.getValueSystem()
                        this.getLicenseDays()
                    }, 1000)
                },
@@ -436,6 +457,61 @@
                            this.handleChangeValueRight(1)
                        }
                    }
                },
                taskDelete(row) {
                    let that = this;
                    that.$confirm('确认要删除该设备吗?', '提示', {
                        confirmButtonText: '确定',
                        cancelButtonText: '取消',
                        type: 'warning'
                    }).then(() => {
                        $.ajax({
                            url: baseUrl + "/rgv/disable/task/delete",
                            headers: {'token': localStorage.getItem('token')},
                            method: 'POST',
                            data: {
                                wrkNo: row.wrkNo
                            },
                            success: function (res) {
                                if (res.code === 200) {
                                    that.$message.success('删除成功');
                                    // 删除当前行
                                    that.tableDataRight.splice(that.tableDataRight.indexOf(row), 1);
                                } else {
                                    that.$message.error('删除失败');
                                }
                            }
                        });
                    });
                },
                toggleStatus(index, row) {
                    let that = this;
                    const currentStatus = row.status;
                    const targetStatus = currentStatus === 0 ? 1 : 0;
                    that.$confirm(`确认要${currentStatus === 0 ? '禁用' : '启用'}该设备吗?`, '提示', {
                        confirmButtonText: '确定',
                        cancelButtonText: '取消',
                        type: 'warning'
                    }).then(() => {
                        $.ajax({
                            url: baseUrl + "/rgv/disable/rgv/status",
                            headers: {'token': localStorage.getItem('token')},
                            method: 'POST',
                            data: {
                                rgvNo: row.rgvNo,
                                status: targetStatus
                            },
                            success: function (res) {
                                if (res.code === 200) {
                                    that.$message.success(`状态更新成功`);
                                    row.status$ = targetStatus; // 更新前端状态
                                } else {
                                    that.$message.error('状态更新失败');
                                }
                            }
                        });
                    });
                },
                handleChangeValueRight(val) {
                    console.log("33333"+val);
@@ -460,6 +536,29 @@
                        return 'success-row';
                    }
                    return '';
                },
                getLicenseDays(){
                    let that = this;
                    $.ajax({
                        url: baseUrl + "/license/getLicenseDays",
                        headers: {'token': localStorage.getItem('token')},
                        method: 'POST',
                        success: function (res) {
                            if (res.code == 200) {
                                if (res.data.day<0){
                                    that.licenseDay = "已过期"+res.data.day+"天";
                                    that.licenseDayI = -1;
                                } else {
                                    that.licenseDay = "许可证有效期"+res.data.day+"天";
                                    that.licenseDayI = res.data.day;
                                }
                            }else {
                                that.licenseDay = "已过期";
                                that.licenseDayI = -1;
                            }
                        }
                    });
                },
                getValueSystem() {
                    let that = this;
@@ -529,21 +628,21 @@
                },
                getTableDataRgv() {
                    let that = this;
                    that.tableDataRgv = busPsto
                    return
                    // $.ajax({
                    //     url: baseUrl + "/rgv/ring/through/rgv/position/data",
                    //     headers: {
                    //         'token': localStorage.getItem('token')
                    //     },
                    //     data: {},
                    //     dataType: 'json',
                    //     contentType: 'application/json;charset=UTF-8',
                    //     method: 'post',
                    //     success: function (res) {
                    //         that.tableDataRgv = res.data
                    //     }
                    // });
                    // that.tableDataRgv = busPsto
                    // return
                    $.ajax({
                        url: baseUrl + "/rgv/ring/through/rgv/position/data",
                        headers: {
                            'token': localStorage.getItem('token')
                        },
                        data: {},
                        dataType: 'json',
                        contentType: 'application/json;charset=UTF-8',
                        method: 'post',
                        success: function (res) {
                            that.tableDataRgv = res.data
                        }
                    });
                },
                getTableDataDev() {
                    let that = this;