要实现点击“跟进”按钮时传递 record
并判断需要在页面上隐藏或展示的值,可以按照以下步骤进行调整:
- 创建一个响应式变量来存储当前要跟进的记录。
- 在
followUp
函数中更新这个变量。 - 使用条件渲染来控制模态框的显示和隐藏。
下面是更新后的代码示例:
<template>
<a-table
:columns="columns"
:data-source="data"
:scroll="{
x: columns.reduce((sum, col) => sum + (col.width || 0), 0) > 1800 ? undefined : 'max-content'
}"
:pagination="{
current: currentPage,
pageSize: pageSize,
total: totalRecords,
pageSizeOptions: ['10', '20', '30', '40', '100'],
onShowSizeChange: handlePageSizeChange,
onChange: handlePageChange,
showQuickJumper: true,
showSizeChanger: true,
showTotal: (total, range) => `显示 ${range[0]}~${range[1]} 条记录,共 ${total} 条记录`
}"
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'operation'">
<a-button @click="followUp(record)">跟进</a-button>
<!-- 使用条件渲染控制 FollowUpModal 的显示 -->
<FollowUpModal
v-if="isModalVisible"
:record="currentRecord"
@close="isModalVisible = false"
/>
</template>
</template>
</a-table>
</template>
<script setup>
import { ref } from 'vue';
import FollowUpModal from '../workOrderManager/components/followUpPage.vue';
const columns = ref([]);
const data = ref([]);
const isModalVisible = ref(false); // 控制模态框是否可见
const currentRecord = ref(null); // 当前跟进的记录
const followUp = (record) => {
console.log('跟进', record);
currentRecord.value = record; // 设置当前记录
isModalVisible.value = true; // 显示模态框
};
</script>
更改说明:
isModalVisible
:用来控制模态框的显示与否。currentRecord
:用来存储当前选中的记录,以便在模态框中使用。- 在
followUp
方法中,我们将点击的record
存入currentRecord
,并将isModalVisible
设置为true
,从而打开模态框。 - 在
<FollowUpModal />
中使用了v-if
指令,以根据isModalVisible
的状态来决定是否渲染这个组件,并通过属性传递当前记录。
模态框关闭事件处理:
为了能关闭模态框,你可以在 FollowUpModal.vue
中触发一个事件,在这里我们通过绑定一个自定义事件 (@close
) 来实现。
希望这个代码片段能够帮助你完成需求!如果有其他问题,请随时问我。
内容由零声教学AI助手提供,问题来源于学员提问