|
@ -3,6 +3,7 @@ import type { logQuery } from 'apis/log' |
|
|
import { list } from 'apis/log' |
|
|
import { list } from 'apis/log' |
|
|
import { list as matrixList } from 'apis/matrix' |
|
|
import { list as matrixList } from 'apis/matrix' |
|
|
import { list as matrixCraftList } from 'apis/matrixCraft' |
|
|
import { list as matrixCraftList } from 'apis/matrixCraft' |
|
|
|
|
|
import route3 from 'assets/images/route.png' |
|
|
import route2 from 'assets/images/route_horizontal.png' |
|
|
import route2 from 'assets/images/route_horizontal.png' |
|
|
import route1 from 'assets/images/route_vertical.png' |
|
|
import route1 from 'assets/images/route_vertical.png' |
|
|
import { onMounted, ref } from 'vue' |
|
|
import { onMounted, ref } from 'vue' |
|
@ -73,19 +74,61 @@ const pageChange = (pageNum: number, pageSize: number) => { |
|
|
<el-table-column prop="matrixPathType" label="喷涂路线"> |
|
|
<el-table-column prop="matrixPathType" label="喷涂路线"> |
|
|
<template #default="scope"> |
|
|
<template #default="scope"> |
|
|
<div class="scope-box"> |
|
|
<div class="scope-box"> |
|
|
<img v-show="scope.row.routeType === 'horizontal'" :src="route1" width="20px" height="20px" alt="icon"> |
|
|
|
|
|
<img v-show="scope.row.routeType === 'vertical'" :src="route2" width="20px" height="20px" alt="icon"> |
|
|
|
|
|
<img v-show="scope.row.routeType === 'grid'" :src="route2" width="20px" height="20px" alt="icon"> |
|
|
|
|
|
|
|
|
<img v-show="scope.row.matrixPathType === 'horizontal'" :src="route1" width="20px" height="20px" alt="icon"> |
|
|
|
|
|
<img v-show="scope.row.matrixPathType === 'vertical'" :src="route2" width="20px" height="20px" alt="icon"> |
|
|
|
|
|
<img v-show="scope.row.matrixPathType === 'grid'" :src="route3" width="20px" height="20px" alt="icon"> |
|
|
|
|
|
</div> |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
|
|
|
<el-table-column prop="motorZHeight" label="喷涂高度"> |
|
|
|
|
|
<template #default="scope"> |
|
|
|
|
|
<div class="scope-box"> |
|
|
|
|
|
{{ scope.row.motorZHeight }}mm |
|
|
|
|
|
</div> |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
|
|
|
<el-table-column prop="gasPressure" label="氮气气压"> |
|
|
|
|
|
<template #default="scope"> |
|
|
|
|
|
<div class="scope-box"> |
|
|
|
|
|
{{ scope.row.gasPressure }}Mpa |
|
|
|
|
|
</div> |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
|
|
|
<el-table-column prop="volume" label="基质流速"> |
|
|
|
|
|
<template #default="scope"> |
|
|
|
|
|
<div class="scope-box"> |
|
|
|
|
|
{{ scope.row.volume }}uL/min |
|
|
|
|
|
</div> |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
|
|
|
<el-table-column prop="highVoltageValue" label="电压"> |
|
|
|
|
|
<template #default="scope"> |
|
|
|
|
|
<div class="scope-box"> |
|
|
|
|
|
{{ scope.row.highVoltageValue }}V |
|
|
|
|
|
</div> |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
|
|
|
<el-table-column prop="movingSpeed" label="移速"> |
|
|
|
|
|
<template #default="scope"> |
|
|
|
|
|
<div class="scope-box"> |
|
|
|
|
|
{{ scope.row.movingSpeed }}mm/s |
|
|
|
|
|
</div> |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
|
|
|
<el-table-column prop="spacing" label="行间距"> |
|
|
|
|
|
<template #default="scope"> |
|
|
|
|
|
<div class="scope-box"> |
|
|
|
|
|
{{ scope.row.spacing }}mm |
|
|
|
|
|
</div> |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
|
|
|
<el-table-column prop="times" label="喷涂次数"> |
|
|
|
|
|
<template #default="scope"> |
|
|
|
|
|
<div class="scope-box"> |
|
|
|
|
|
{{ scope.row.times }}次 |
|
|
</div> |
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column prop="motorZHeight" label="喷涂高度" /> |
|
|
|
|
|
<el-table-column prop="gasPressure" label="氮气气压" /> |
|
|
|
|
|
<el-table-column prop="volume" label="基质流速" /> |
|
|
|
|
|
<el-table-column prop="highVoltageValue" label="电压" /> |
|
|
|
|
|
<el-table-column prop="movingSpeed" label="移速" /> |
|
|
|
|
|
<el-table-column prop="spacing" label="行间距" /> |
|
|
|
|
|
<el-table-column prop="times" label="喷涂遍数" /> |
|
|
|
|
|
</el-table> |
|
|
</el-table> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|