LLJ文档V8
This commit is contained in:
@@ -137,7 +137,7 @@
|
||||
<el-table-column label="是否合格" align="center" width="120px">
|
||||
<template slot-scope="scope">
|
||||
<template v-if="scope.row.edit">
|
||||
<el-select v-model="scope.row.是否合格" placeholder="请选择" filterable size="small" style="width: 100%">
|
||||
<el-select v-model="scope.row.是否合格" placeholder="请选择" filterable size="mini" style="width: 100%">
|
||||
<el-option
|
||||
v-for="item in qualityInspection"
|
||||
:key="item.value"
|
||||
@@ -226,7 +226,7 @@
|
||||
{{ scope.row.编辑时间 ? scope.row.编辑时间.split(' ')[0] : scope.row.编辑时间 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="形位" fixed="right" align="center" width="70">
|
||||
<el-table-column label="形位" align="center" width="70">
|
||||
<template slot-scope="scope">
|
||||
<el-popover placement="right" width="500" trigger="click">
|
||||
<el-table :data="gridData" class="subTableHeader" highlight-current-row size="mini">
|
||||
@@ -251,7 +251,7 @@
|
||||
</el-popover>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="尺寸" fixed="right" align="center" width="70">
|
||||
<el-table-column label="尺寸" align="center" width="70">
|
||||
<template slot-scope="scope">
|
||||
<el-popover placement="right" width="500" trigger="click">
|
||||
<el-table :data="gridData" class="subTableHeader" highlight-current-row size="mini">
|
||||
@@ -276,7 +276,7 @@
|
||||
</el-popover>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="外观" fixed="right" align="center" width="70">
|
||||
<el-table-column label="外观" align="center" width="70">
|
||||
<template slot-scope="scope">
|
||||
<el-popover placement="right" width="500" trigger="click">
|
||||
<el-table :data="gridData" class="subTableHeader" highlight-current-row size="mini">
|
||||
@@ -301,7 +301,7 @@
|
||||
</el-popover>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" fixed="right" align="center" min-width="150">
|
||||
<el-table-column label="查看图片" align="center" width="100px">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
v-if="!scope.row.edit"
|
||||
@@ -310,6 +310,10 @@
|
||||
plain
|
||||
icon="el-icon-search"
|
||||
@click="viewPicture(scope.row)">查看图片</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" fixed="right" align="center" min-width="100">
|
||||
<template slot-scope="scope">
|
||||
<el-tooltip :open-delay="1200" effect="dark" content="编辑" placement="top">
|
||||
<div style="display: inline-block;margin-right: 10px">
|
||||
<el-button v-if="!scope.row.edit" type="text" size="mini" icon="el-icon-edit" @click="scope.row.edit=!scope.row.edit"/>
|
||||
|
||||
Reference in New Issue
Block a user