| | |
| | | <el-table-column prop="solutionBaseName" label="主方案" min-width="100px" v-if="userInfo.type === 0"></el-table-column> |
| | | <el-table-column label="投保类型" min-width="120px" align="center"> |
| | | <template slot-scope="{row}"> |
| | | <span v-if="row.type === 0">直保</span> |
| | | <span v-if="row.type === 1">委托<div style="color: blue;display: block" >{{row.shopName||'-'}}</div></span> |
| | | <span v-if="row.type === 0">直保<div style="color: blue;display: block" >{{ row.shopName || '-' }}</div></span> |
| | | <span v-if="row.type === 1">委托<div style="color: blue;display: block" >{{ row.shopName || '-' }}</div></span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="投保价格" min-width="100px"> |
| | |
| | | <template v-if="userInfo.type === 1 && row.signStatus === 1"> |
| | | <el-button type="text" icon="el-icon-tickets" @click="seeFleSignUrl(row.fileSignUrl)">查看方案确认书</el-button> |
| | | </template> |
| | | <el-button type="text" @click="deleteById(row)" icon="el-icon-delete" v-permissions="['business:solutions:delete']">删除</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |