fixed bug

This commit is contained in:
chenjianan
2019-05-22 09:26:09 +08:00
parent bbbc1d04ee
commit c92c133128
2 changed files with 6 additions and 1 deletions

View File

@@ -153,7 +153,7 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="分组" prop="GroupNumValue" label-width="100px"> <el-form-item label="分组" prop="GroupNumValue" label-width="100px">
<el-select v-model="form.GroupNumValue" filterable clearable size="small" placeholder="分组" style="width: 200px;margin-right:10px"> <el-select v-model="form.GroupNumValue" filterable size="small" placeholder="分组" style="width: 200px;margin-right:10px">
<el-option <el-option
v-for="item in GroupNum" v-for="item in GroupNum"
:key="item.value" :key="item.value"

View File

@@ -381,6 +381,11 @@
</div><hr> </div><hr>
<h3 style="margin-top: 0">询价单明细</h3> <h3 style="margin-top: 0">询价单明细</h3>
<el-table v-loading="" :data="tableData3" border style="max-height: 500px;" height="500px" size="mini"> <el-table v-loading="" :data="tableData3" border style="max-height: 500px;" height="500px" size="mini">
<el-table-column label="供应商" align="center" min-width="150">
<template slot-scope="scope">
{{ scope.row.供应商名称 }}
</template>
</el-table-column>
<el-table-column label="图号" align="center" min-width="100"> <el-table-column label="图号" align="center" min-width="100">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.组件零件流水号 ? scope.row.物料型号 : scope.row.零件图号 }} {{ scope.row.组件零件流水号 ? scope.row.物料型号 : scope.row.零件图号 }}