项目采购总价

This commit is contained in:
zhangdingyu
2019-09-20 15:14:23 +08:00
parent b6eb5cf156
commit 008dc15c34
3 changed files with 6 additions and 5 deletions

View File

@@ -211,5 +211,6 @@ el-card{
padding: 0; padding: 0;
} }
.el-table--striped .el-table__body tr.el-table__row--striped td { .el-table--striped .el-table__body tr.el-table__row--striped td {
//斑马纹颜色
background-color: rgb(235,235,235); background-color: rgb(235,235,235);
} }

View File

@@ -60,7 +60,7 @@
{{ scope.row.图号 }} {{ scope.row.图号 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="规格" align="center" min-width="100"> <el-table-column label="规格" align="center" min-width="100" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.规格 }} {{ scope.row.规格 }}
</template> </template>

View File

@@ -84,12 +84,12 @@
{{ scope.row.主要产品 }} {{ scope.row.主要产品 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="开户行" align="center" min-width="150"> <el-table-column label="开户行" align="center" min-width="150" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.开户行 }} {{ scope.row.开户行 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="帐号" align="center" min-width="100"> <el-table-column label="帐号" align="center" min-width="100" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.帐号 }} {{ scope.row.帐号 }}
</template> </template>
@@ -136,8 +136,8 @@
</el-table-column> </el-table-column>
<el-table-column label="操作" align="center" fixed="right" width="190"> <el-table-column label="操作" align="center" fixed="right" width="190">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="primary" size="mini" icon="el-icon-edit" @click="handleEdit(scope.row)">编辑</el-button> <el-button type="warning" size="mini" plain icon="el-icon-edit" @click="handleEdit(scope.row)">编辑</el-button>
<el-button type="danger" size="mini" icon="el-icon-delete" @click="handleDelete(scope.row)">删除</el-button> <el-button type="danger" size="mini" plain icon="el-icon-delete" @click="handleDelete(scope.row)">删除</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>