| | |
| | | <template> |
| | | <el-dialog class="gd-dialog" :close-on-click-modal="false" v-model="visible" title="查看" @closed="visible = false" width="1000px" destroy-on-close> |
| | | <div class="" v-loading="loading"> |
| | | <div class="gd-table-content-bg"> |
| | | <el-table :data="list"> |
| | | <el-dialog class="gd-dialog" v-model="visible" title="查看" @closed="visible = false" width="1000px" destroy-on-close> |
| | | <div class="gd-table-container" v-loading="loading" style="height: 600px"> |
| | | <div class="gd-table-content gd-table-content-bg"> |
| | | <el-table class="gd-table" :data="list"> |
| | | <el-table-column label="线索缩略图" width="120"> |
| | | <template v-slot="{ row }"> |
| | | <el-image |
| | |
| | | <el-table-column prop="distributeUserName" show-overflow-tooltip label="分发人员" /> |
| | | <el-table-column label="操作" class-name="operation-btns" width="140"> |
| | | <template v-slot="{ row }"> |
| | | <el-link @click="openDistributeDialog(row)" :disabled="row.distributeStatus === 1"> |
| | | <el-link v-if="row.distributeStatus === 0" @click="openDistributeDialog(row)" :disabled="row.distributeStatus === 1"> |
| | | 转为事件并分发 |
| | | </el-link> |
| | | <div class="disabled-text" v-else>转为事件并分发</div> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | |
| | | defineExpose({ open }) |
| | | </script> |
| | | |
| | | <style lang="scss" scoped></style> |
| | | <style lang="scss" scoped> |
| | | .disabled-text { |
| | | color: #C0C4CC; |
| | | cursor: not-allowed; |
| | | } |
| | | </style> |