Commit 83e6b8fb by LJM

js

parent 306b20a9
Showing with 11 additions and 5 deletions
......@@ -156,15 +156,21 @@
</template>
</el-table-column>
<el-table-column prop="expire_time" label="报价有效期" width="160" :show-overflow-tooltip="true" align="center"></el-table-column>
<el-table-column prop="" label="猎芯采购员" width="100" :show-overflow-tooltip="true" align="center"></el-table-column>
<el-table-column prop="buyer_info" label="猎芯采购员" width="100" :show-overflow-tooltip="true" align="center"></el-table-column>
<el-table-column prop="goods_name" label="报价型号" width="150" :show-overflow-tooltip="true" align="center"></el-table-column>
<el-table-column prop="brand_name" label="品牌" width="100" :show-overflow-tooltip="true" align="center"></el-table-column>
<el-table-column prop="status" label="状态" width="100" :show-overflow-tooltip="true" align="center">
<template slot-scope="scope">
<span v-if="scope.row.status==1" class="f-green">确认中</span>
<span v-else-if="scope.row.status==2" class="f-yellow1">已选中</span>
<span v-else-if="scope.row.status==3">已成单</span>
<span v-else-if="scope.row.status==4" class="f-red1">已关闭</span>
<el-tag v-if="scope.row.status==1" type="info">确认中</el-tag>
<el-tag v-else-if="scope.row.status==2" type="success">已选中</el-tag>
<el-tag v-else-if="scope.row.status==3" type="danger">已成单</el-tag>
<el-tag v-else-if="scope.row.status==4" type="warning">已关闭</el-tag>
<template v-if="scope.row.status_tips">
<el-tooltip :aa="scope" class="item" effect="dark" placement="top-start">
<i class="el-icon-question" style="color:#ff7e11;margin-left:5px;cursor:pointer;font-size:16px;"></i>
<div slot="content">{{ scope.row.status_tips }}</div>
</el-tooltip>
</template>
</template>
</el-table-column>
<el-table-column prop="expire_status_val" label="是否有效" width="100" :show-overflow-tooltip="true" align="center"></el-table-column>
......
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