fixed bug

This commit is contained in:
chenjianan
2019-07-19 10:00:12 +08:00
parent 393ec4f891
commit b5dd83bc16

View File

@@ -209,7 +209,8 @@
</el-table-column> </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.询价单编号 || '—' }} <b v-if="inquiry(scope.row)">{{ scope.row.询价单编号 }}</b>
<b v-else>—</b>
</template> </template>
</el-table-column> </el-table-column>
<!--<el-table-column :filters="source" :filter-method="filterSource" align="center" label="数据来源" min-width="90px" prop="零件类型">--> <!--<el-table-column :filters="source" :filter-method="filterSource" align="center" label="数据来源" min-width="90px" prop="零件类型">-->
@@ -368,7 +369,8 @@
</el-table-column> </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.询价单编号 || '—' }} <b v-if="inquiry(scope.row)">{{ scope.row.询价单编号 }}</b>
<b v-else>—</b>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>