|
@@ -15,18 +15,19 @@
|
|
|
<el-table-column prop="name" :label='$t("runCenter.table.checkCuttingTool.partName")' :show-overflow-tooltip="true"></el-table-column>
|
|
|
<!-- 刀具齐套性 -->
|
|
|
<el-table-column
|
|
|
- :label="$t('runCenter.table.checkCuttingTool.hasCuttingTools')"
|
|
|
+ :label='"换刀"'
|
|
|
fixed="right"
|
|
|
align="center"
|
|
|
column-key="operation"
|
|
|
>
|
|
|
<template slot-scope="{ row }">
|
|
|
- <a @click="showCheckDetails(row)" style="color: #2db7f5">{{row.hasCuttingToolsFlag}} </a>
|
|
|
+ <a @click="showCheckDetails(row)" style="color: #2db7f5">{{(row.hasCuttingToolsFlag === '是' || row.isFree || row.isTask === '是')?'':row.hasCuttingToolsFlag}} </a>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="deviceName" :label='"设备"' :show-overflow-tooltip="true"></el-table-column>
|
|
|
<el-table-column prop="msg" :label='"校验信息"' :show-overflow-tooltip="true"></el-table-column>
|
|
|
<el-table-column prop="isTask" :label='"任务是否已生成"' :show-overflow-tooltip="true"></el-table-column>
|
|
|
+ <el-table-column prop="hasCuttingToolsFlag" :label='"刀具齐套性"' :show-overflow-tooltip="true"></el-table-column>
|
|
|
</el-table>
|
|
|
<el-button class="el-button--primary generateTask" @click="save()">生成任务</el-button>
|
|
|
<!-- 刀具校验详情对话框-->
|