|
@@ -58,8 +58,8 @@
|
|
<el-table-column prop="toolUsedCount" :label='"刀具使用次数"' :show-overflow-tooltip="true" ></el-table-column>
|
|
<el-table-column prop="toolUsedCount" :label='"刀具使用次数"' :show-overflow-tooltip="true" ></el-table-column>
|
|
<el-table-column prop="checkLock" :label='"待装刀具"' align="center" width="90px">
|
|
<el-table-column prop="checkLock" :label='"待装刀具"' align="center" width="90px">
|
|
<template slot-scope="{ row }">
|
|
<template slot-scope="{ row }">
|
|
- <el-tag :type="(row.deviceId != '0') ? 'success' : 'danger'">
|
|
|
|
- {{ (row.deviceId != '0') ? $t("common.no") : $t("common.yes") }}
|
|
|
|
|
|
+ <el-tag :type="(row.deviceId != null) ? 'success' : 'danger'">
|
|
|
|
+ {{ (row.deviceId != null) ? $t("common.no") : $t("common.yes") }}
|
|
</el-tag>
|
|
</el-tag>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|