零件状态查询

This commit is contained in:
chenjianan
2019-05-31 10:11:18 +08:00
parent d3135dfd11
commit 5b2e80677f
2 changed files with 18 additions and 12 deletions

View File

@@ -1,2 +1,3 @@
[0301/083149.303:ERROR:http_transport_win.cc(273)] WinHttpSendRequest: 操作成功完成。 (0x0) [0301/083149.303:ERROR:http_transport_win.cc(273)] WinHttpSendRequest: 操作成功完成。 (0x0)
[0515/102246.688:ERROR:http_transport_win.cc(276)] WinHttpSendRequest: 操作成功完成。 (0x0) [0515/102246.688:ERROR:http_transport_win.cc(276)] WinHttpSendRequest: 操作成功完成。 (0x0)
[0531/081503.881:ERROR:http_transport_win.cc(276)] WinHttpSendRequest: 操作成功完成。 (0x0)

View File

@@ -50,28 +50,28 @@
<el-table <el-table
v-loading="loading0" v-loading="loading0"
:data="tableData" :data="tableData"
style="width: 100%;max-height: 600px" style="width: 100%;max-height: 610px"
height="600" height="610"
size="mini" size="mini"
highlight-current-row highlight-current-row
border> border>
<el-table-column align="center" label="序号" type="index" width="60px"/> <el-table-column align="center" label="序号" type="index" width="50px"/>
<el-table-column align="center" label="机床图号" width="170px"> <el-table-column align="center" label="机床图号" width="100px">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.机床图号 }} {{ scope.row.机床图号 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="组号" width="140px"> <el-table-column align="center" label="组号" width="60px">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.组号 }} {{ scope.row.组号 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="零件图号" width="200px"> <el-table-column align="center" label="零件图号" width="150px">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.零件图号 }} {{ scope.row.零件图号 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="零件名称" width="180px"> <el-table-column align="center" label="零件名称" width="100px">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.零件名称 }} {{ scope.row.零件名称 }}
</template> </template>
@@ -81,17 +81,17 @@
{{ scope.row.投产总数量 }} {{ scope.row.投产总数量 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="投产时间" width="130px"> <el-table-column align="center" label="投产时间" width="100px">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.传递时间 }} {{ scope.row.传递时间 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="零件状态" width="750px"> <el-table-column align="center" label="零件状态" min-width="960px">
<template slot-scope="scope"> <template slot-scope="scope">
<el-steps :active="scope.row.考核状态" finish-status="success" simple> <el-steps id="StatusQuery" :active="scope.row.考核状态" finish-status="success" simple>
<el-step title="投产" /> <el-step title="投产" />
<el-step title="工艺" /> <el-step title="工艺定额" />
<el-step title="定额" /> <!--<el-step title="定额" />-->
<el-step title="平衡" /> <el-step title="平衡" />
<el-step title="完成" /> <el-step title="完成" />
<el-step title="入库" /> <el-step title="入库" />
@@ -491,3 +491,8 @@ export default {
margin: 10px 0 10px 10px; margin: 10px 0 10px 10px;
} }
</style> </style>
<style>
#StatusQuery {
padding: 8px 30px;
}
</style>