fix:日志详情按钮调整,wpr列表工序字段更新
This commit is contained in:
parent
24104ca69c
commit
368f080981
|
@ -74,7 +74,7 @@
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="物料已到工序"
|
label="已完成工序"
|
||||||
prop="material_name"
|
prop="material_name"
|
||||||
min-width="70"
|
min-width="70"
|
||||||
>
|
>
|
||||||
|
@ -191,12 +191,12 @@
|
||||||
min-width="150"
|
min-width="150"
|
||||||
></el-table-column>
|
></el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="物料已到工序"
|
label="已完成工序"
|
||||||
prop="material_name"
|
prop="material_name"
|
||||||
min-width="100"
|
min-width="100"
|
||||||
>
|
>
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
{{ scope.row.material_name.split('|').at(-1) }}
|
{{ scope.row.process_name }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="不合格标记" prop="wprdefect">
|
<el-table-column label="不合格标记" prop="wprdefect">
|
||||||
|
|
|
@ -89,7 +89,7 @@
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="物料已到工序"
|
label="已完成工序"
|
||||||
prop="material_name"
|
prop="material_name"
|
||||||
min-width="70"
|
min-width="70"
|
||||||
>
|
>
|
||||||
|
@ -206,12 +206,12 @@
|
||||||
min-width="150"
|
min-width="150"
|
||||||
></el-table-column>
|
></el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="物料已到工序"
|
label="已完成工序"
|
||||||
prop="material_name"
|
prop="material_name"
|
||||||
min-width="100"
|
min-width="100"
|
||||||
>
|
>
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
{{ scope.row.material_name.split('|').at(-1) }}
|
{{ scope.row.process_name }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="不合格标记" prop="wprdefect">
|
<el-table-column label="不合格标记" prop="wprdefect">
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
<!-- 日志详情 mlog信息以及mlogb -->
|
<!-- 日志详情 mlog信息以及mlogb -->
|
||||||
<template>
|
<template>
|
||||||
<el-drawer
|
<el-drawer v-model="visible" :size="'95%'" :show-close="false">
|
||||||
title="日志详情"
|
<template #header>
|
||||||
v-model="visible"
|
<h4>日志详情</h4>
|
||||||
:size="'95%'"
|
<el-button type="danger" @click="$emit('closed')">关闭</el-button>
|
||||||
destroy-on-close
|
</template>
|
||||||
@closed="$emit('closed')"
|
|
||||||
>
|
|
||||||
<div>
|
<div>
|
||||||
<el-card style="width: 100%" header="基本信息" shadow="never">
|
<el-card style="width: 100%" header="基本信息" shadow="never">
|
||||||
<el-descriptions>
|
<el-descriptions>
|
||||||
|
|
Loading…
Reference in New Issue