|
@@ -83,13 +83,289 @@
|
|
|
label="经度">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
- fixed="right"
|
|
|
header-align="center"
|
|
|
align="center"
|
|
|
- width="60"
|
|
|
- label="操作">
|
|
|
+ min-width="150"
|
|
|
+ label="NC软件版本">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button type="text" size="small" @click="detailHandle(scope.row)">详情</el-button>
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='NCVersion'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ label="NC名称">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='NCInfo'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ label="第一轴下一指令">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='NextDistancePos1'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ label="第二轴下一指令">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='NextDistancePos2'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ label="第三轴下一指令">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='NextDistancePos3'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ label="第四轴下一指令">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='NextDistancePos4'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ label="第五轴下一指令">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='NextDistancePos5'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ label="第六轴下一指令">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='NextDistancePos6'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="自动运行时间">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='RunTime'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="自动启动时间">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='StartTime'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="循环时间">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='CycleTime'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="上电时间">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='KeepAliveTime'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="系统日期">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='SystemDate'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="系统时间">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='SystemTime'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="100"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ label="主程序名">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='MainProName'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="当前运行程序号">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='CuRunProNum'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="120"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ label="当前运行程序内容">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='CuRunProContent'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="120"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ label="设备报警">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='AlarmMsg'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="100"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ label="进给设定转速FA">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='FeedSetSpeed'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="100"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ label="进给实际速度FE">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='FeedActualSpeed'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="主轴设定转速">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='SpindleSetSpeed'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="主轴实际转速">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='SpindleActualSpeed'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="主轴倍率">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='SpindleRate'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="进给倍率">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='FeedRate'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="快速移动倍率">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='MoveRate'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="主轴负载">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='SpindleLoad'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="第一轴伺服轴负载">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='ServoLoad1'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="第二轴伺服轴负载">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='ServoLoad2'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="第三轴伺服轴负载">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='ServoLoad3'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="第四轴伺服轴负载">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='ServoLoad4'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="90"
|
|
|
+ label="第五轴伺服轴负载">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='ServoLoad5'">{{ item.value }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ min-width="100"
|
|
|
+ label="第六轴伺服轴负载">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-for="item in scope.row.points" v-if="item.name==='ServoLoad6'">{{ item.value }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|