姜福壮

This commit is contained in:
Vergil
2020-05-15 15:55:18 +08:00
parent 4aad06b9c3
commit c9b40e3204
7 changed files with 28 additions and 28 deletions

View File

@@ -147,24 +147,24 @@
stripe
size="mini"
@row-click="openDialogFormVisible">
<el-table-column align="center" label="状态" min-width="80">
<el-table-column align="center" label="状态" min-width="80" fixed>
<template slot-scope="scope">
<span v-if="scope.row.是否发出.toString() === '1'" type="success" size="small">已发出</span>
<span v-else type="danger" size="small">未发出</span>
<!--{{ scope.row.是否发出.toString() === '1' ? '已发出' : '未发出' }}-->
</template>
</el-table-column>
<el-table-column align="center" label="发货单号" min-width="120">
<el-table-column align="center" label="发货单号" min-width="120" fixed>
<template slot-scope="scope">
{{ scope.row.发货单编号 }}
</template>
</el-table-column>
<el-table-column align="center" label="发货单名" min-width="110">
<el-table-column align="center" label="发货单名" min-width="110" fixed>
<template slot-scope="scope">
{{ scope.row.发货单名称 }}
</template>
</el-table-column>
<el-table-column align="center" label="收货单位" min-width="200">
<el-table-column align="center" label="收货单位" min-width="200" fixed>
<template slot-scope="scope">
{{ scope.row.收货单位 }}
</template>

View File

@@ -68,33 +68,33 @@
</el-card>
<el-card>
<el-table v-loading="loading" :data="tableData1" element-loading-text="质检数据较多,请耐心等候..." border size="mini" highlight-current-row style="width: 100%" stripe height="475px">
<el-table-column align="center" label="禁用情况" width="80px">
<el-table-column align="center" label="禁用情况" width="80px" fixed>
<template slot-scope="scope">
<el-tag v-if="parseInt(scope.row.是否禁用)===0||scope.row.是否禁用===''" type="success" size="small" @click="approvalPass(scope.row)">未禁用</el-tag>
<el-tag v-if="parseInt(scope.row.是否禁用)===1" type="error" size="small">已禁用</el-tag>
</template>
</el-table-column>
<el-table-column label="机床图号" align="center" width="90px">
<el-table-column label="机床图号" align="center" width="90px" fixed>
<template slot-scope="scope">
{{ scope.row.机床图号 }}
</template>
</el-table-column>
<el-table-column label="机床名称" align="center" min-width="180px" show-overflow-tooltip>
<el-table-column label="机床名称" align="center" min-width="180px" show-overflow-tooltip fixed>
<template slot-scope="scope">
{{ scope.row.机床名称 }}
</template>
</el-table-column>
<el-table-column label="组号" align="center" width="60px">
<el-table-column label="组号" align="center" width="60px" fixed>
<template slot-scope="scope">
{{ scope.row.组号 }}
</template>
</el-table-column>
<el-table-column label="零件图号" align="center" min-width="130px" show-overflow-tooltip>
<el-table-column label="零件图号" align="center" min-width="130px" show-overflow-tooltip fixed>
<template slot-scope="scope">
{{ scope.row.零件图号 }}
</template>
</el-table-column>
<el-table-column label="零件名称" align="center">
<el-table-column label="零件名称" align="center" fixed>
<template slot-scope="scope">
{{ scope.row.零件名称 }}
</template>