| | |
| | | </el-form-item> |
| | | <br/> |
| | | <el-form-item label="合箱报工" prop="report10"> |
| | | <el-input |
| | | <el-select |
| | | v-model="queryParams.report10" |
| | | placeholder="请输入合箱报工" |
| | | clearable |
| | | @keyup.enter.native="handleQuery" |
| | | /> |
| | | @keyup.enter.native="handleQuery"> |
| | | <el-option |
| | | v-for="dict in dict.type.workreportingstatus" |
| | | :key="dict.value" |
| | | :label="dict.label" |
| | | :value="dict.value" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="总装报工" prop="report20"> |
| | | <el-input |
| | | <el-select |
| | | v-model="queryParams.report20" |
| | | placeholder="请输入总装报工" |
| | | clearable |
| | | @keyup.enter.native="handleQuery" |
| | | /> |
| | | @keyup.enter.native="handleQuery"> |
| | | |
| | | <el-option |
| | | v-for="dict in dict.type.workreportingstatus" |
| | | :key="dict.value" |
| | | :label="dict.label" |
| | | :value="dict.value" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="CVT报工" prop="report30"> |
| | | <el-input |
| | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="合箱报工" align="center" prop="report10"> |
| | | |
| | | <template slot-scope="scope"> |
| | | <dict-tag :options="dict.type.workreportingstatus" :value="scope.row.report10"/> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | <el-table-column label="总装报工" align="center" prop="report20"> |
| | | |
| | | <template slot-scope="scope"> |
| | | <dict-tag :options="dict.type.workreportingstatus" :value="scope.row.report20"/> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | <el-table-column label="CVT报工" align="center" prop="report30"> |
| | | |
| | | </el-table-column> |
| | | <el-table-column label="合箱上线时间" align="center" prop="boxClosingOnlineTime" width="160"> |
| | | |
| | | <el-table-column label="报工异常" align="center" prop="report30"> |
| | | </el-table-column> |
| | | |
| | | <el-table-column label="合箱上线时间" align="center" prop="boxClosingOnlineTime" width="160"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.boxClosingOnlineTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="合箱下线时间" align="center" prop="closingBoxOfflineTime" width="160"> |
| | | |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.closingBoxOfflineTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="总装上线时间" align="center" prop="finalAssemblyLaunchTime" width="160"> |
| | | |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.finalAssemblyLaunchTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="总装下线时间" align="center" prop="finalAssemblyOfflineTime" width="160"> |
| | | |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.finalAssemblyOfflineTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="CVT上线时间" align="center" prop="cvtLaunchTime" width="160"> |
| | | |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.cvtLaunchTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="CVT下线时间" align="center" prop="cvtOfflineTime" width="160"> |
| | | |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.cvtOfflineTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="操作人" align="center" prop="operator"> |
| | | </el-table-column> |
| | | <el-table-column label="操作时间" align="center" prop="operateTime" width="160"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.operateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | </el-table> |
| | |
| | | |
| | | export default { |
| | | name: "OrderScheduling", |
| | | dicts: ['order_scheduling_produce_status','quality_status','print_status','material_type'], |
| | | dicts: ['order_scheduling_produce_status','quality_status','print_status','material_type','workreportingstatus'], |
| | | data() { |
| | | return { |
| | | // 遮罩层 |