Commit 2bb18ad3 by LJM

js

parent 83e6b8fb
Showing with 5 additions and 1 deletions
......@@ -84,7 +84,11 @@
<el-table-column prop="inquiry_number" label="数量" width="80" :show-overflow-tooltip="true" align="center"></el-table-column>
<el-table-column prop="batch" label="批次" width="120" :show-overflow-tooltip="true" align="center"></el-table-column>
<el-table-column prop="delivery_time" label="交货日期" :show-overflow-tooltip="true" align="center"></el-table-column>
<el-table-column prop="quote_num" label="报价数" width="80" :show-overflow-tooltip="true" align="center"></el-table-column>
<el-table-column prop="quote_num" label="报价数" width="80" :show-overflow-tooltip="true" align="center">
<template slot-scope="scope">
<span style="color: #1969F9;">{{scope.row.quote_num}}</span>
</template>
</el-table-column>
<el-table-column prop="i_status" label="状态" width="100" :show-overflow-tooltip="true" align="center">
<template slot-scope="scope">
<el-tag v-if="scope.row.i_status==2" type="success">已报价</el-tag>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment