| | |
| | | <el-table |
| | | :data="tableData" |
| | | border |
| | | v-loading="tableLoading" |
| | | style="width: 100%" |
| | | v-loading="tableLoading" |
| | | style="width: 100%" |
| | | height="calc(100vh - 18.5em)" |
| | | :tooltip-options="{ popperOptions: { strategy: 'absolute' } }" |
| | | > |
| | | <el-table-column align="center" label="序号" type="index" width="60" /> |
| | | <el-table-column label="客户名称" prop="customerName" width="150" show-overflow-tooltip /> |
| | |
| | | <el-table-column label="拜访人" prop="visitingPeople" width="120" show-overflow-tooltip /> |
| | | <el-table-column fixed="right" label="操作" width="100" align="center"> |
| | | <template #default="scope"> |
| | | <el-button link type="primary" size="small" @click="viewDetail(scope.row)">查看</el-button> |
| | | <el-button link type="primary" size="small" @click="viewDetail(scope.row)" style="color: #67C23A">查看</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |