fix:工段库存检验可抽检,可全检
This commit is contained in:
parent
c009cf68ec
commit
b69038d369
|
@ -36,18 +36,13 @@
|
|||
:params="params"
|
||||
:query="query"
|
||||
>
|
||||
<el-table-column
|
||||
label="状态"
|
||||
prop="state"
|
||||
width="100"
|
||||
><template #default="scope"
|
||||
><el-tag
|
||||
:type="wmState[scope.row.state]?.type"
|
||||
>{{
|
||||
wmState[scope.row.state]?.text
|
||||
}}</el-tag
|
||||
>
|
||||
</template></el-table-column>
|
||||
<el-table-column label="状态" prop="state" width="100" >
|
||||
<template #default="scope">
|
||||
<el-tag :type="wmState[scope.row.state]?.type">
|
||||
{{wmState[scope.row.state]?.text}}
|
||||
</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="物料名称"
|
||||
prop="material_name"
|
||||
|
@ -100,19 +95,25 @@
|
|||
label="操作"
|
||||
fixed="right"
|
||||
align="center"
|
||||
width="80"
|
||||
width="120"
|
||||
v-if="mgroupName!=='size'&&mgroupName!=='facade'"
|
||||
>
|
||||
<template #default="scope">
|
||||
<el-button
|
||||
link
|
||||
size="small"
|
||||
link size="small"
|
||||
@click="table_Check(scope.row)"
|
||||
v-auth="'mgroup.update'"
|
||||
type="primary"
|
||||
v-if="scope.row.notok_sign_name == null"
|
||||
>抽检
|
||||
>检验
|
||||
</el-button>
|
||||
<!-- <el-button
|
||||
link size="small"
|
||||
type="warning"
|
||||
@click="table_Check(scope.row)"
|
||||
v-if="scope.row.notok_sign_name == null"
|
||||
>检验记录
|
||||
</el-button> -->
|
||||
</template>
|
||||
</el-table-column>
|
||||
</scTable>
|
||||
|
|
Loading…
Reference in New Issue