更新列显示 复选功能异常

master
飘泊客 11 months ago
parent f5e952279b
commit 40d6b478dc

@ -14,19 +14,21 @@
<!-- 底部表格 -->
<pro-table
ref="tableRef"
row-key="customId"
row-key="directClueId"
header-title="线索列表"
:request="tableRequest"
:columns="columns"
:scroll="{ x: 1100 }"
:options="{ density: false }"
class="protable"
:pagination="{ showQuickJumper: true }"
:row-selection="{}"
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'batchNo'">
<a>{{ record.id }}</a>
</template>
<template v-else-if="column.key === 'operate'">
<template v-if="column.key === 'operate'">
<operation-group>
<a @click="selectReservation(record)"></a>
</operation-group>

@ -14,13 +14,15 @@
<!-- 底部表格 -->
<pro-table
ref="tableRef"
row-key="customId"
row-key="directClueId"
header-title="线索列表"
:request="tableRequest"
:columns="columns"
:scroll="{ x: 1100 }"
:options="{ density: false }"
class="protable"
:pagination="{ showQuickJumper: true }"
:row-selection="{}"
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'batchNo'">

@ -15,17 +15,18 @@
<!-- <resize-observer></resize-observer> -->
<pro-table
ref="tableRef"
row-key="customId"
header-title="分发线索"
row-key="directClueId"
header-title="线索列表"
:request="tableRequest"
:columns="columns"
:scroll="{ x: 1100 }"
class="protable"
:options="{ density: false }"
:pagination="{ showQuickJumper: true }"
:row-selection="{}"
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'id'">
<template v-if="column.key === 'batchNo'">
<a>{{ record.id }}</a>
</template>
<template v-else-if="column.key === 'operate'">
@ -184,5 +185,7 @@ const editShop = (record: directDTO) => {
// -moz-opacity: 0.5;
// opacity: 0.5;
color: rgba(0, 0, 0, 0.25);
cursor: no-drop;
cursor: not-allowed;
}
</style>

Loading…
Cancel
Save