ZBLOG

要实现点击“跟进”按钮时以弹窗的形式打开 FollowUpModal,你可以使用 Vue 的状态管理来控制模态框的显示与隐藏。以下是如何修改你的代码,以达到这个效果:

1. 修改模板

在你的 <template> 中,为 FollowUpModal 添加一个 v-if 来控制它的显示,同时设置一个变量来存储当前操作的记录。

  1. <template>
  2. <a-table
  3. :columns="columns"
  4. :data-source="data"
  5. :scroll="{
  6. x: columns.reduce((sum, col) => sum + (col.width || 0), 0) > 1800 ? undefined : 'max-content'
  7. }"
  8. :pagination="{
  9. current: currentPage,
  10. pageSize: pageSize,
  11. total: totalRecords,
  12. pageSizeOptions: ['10', '20', '30', '40', '100'],
  13. onShowSizeChange: handlePageSizeChange,
  14. onChange: handlePageChange,
  15. showQuickJumper: true,
  16. showSizeChanger: true,
  17. showTotal: (total, range) => `显示 ${range[0]}~${range[1]} 条记录,共 ${total} 条记录`
  18. }"
  19. >
  20. <template #bodyCell="{ column, record }">
  21. <template v-if="column.key === 'operation'">
  22. <a-button @click="openModal('followUp', record)">跟进</a-button>
  23. <a-button @click="complete(record)">完成</a-button>
  24. </template>
  25. </template>
  26. </a-table>
  27. <!-- Follow Up Modal -->
  28. <FollowUpModal
  29. v-if="isModalVisible"
  30. :record="currentRecord"
  31. @close="closeModal"
  32. />
  33. </template>

2. 在脚本中添加逻辑

接下来,在 <script setup> 部分,定义相关的状态和方法来处理模态框的打开和关闭。

  1. <script setup>
  2. import { ref } from 'vue';
  3. import FollowUpModal from '../workOrderManager/components/followUpPage.vue';
  4. const columns = ref([]);
  5. const data = ref([]);
  6. const currentPage = ref(1);
  7. const pageSize = ref(10);
  8. const totalRecords = ref(100);
  9. const isModalVisible = ref(false); // 控制模态框的显示与否
  10. const currentRecord = ref(null); // 存储当前操作的记录
  11. const openModal = (action, record) => {
  12. if (action === 'followUp') {
  13. currentRecord.value = record; // 设置当前记录
  14. isModalVisible.value = true; // 打开模态框
  15. }
  16. };
  17. const closeModal = () => {
  18. isModalVisible.value = false; // 关闭模态框
  19. };
  20. const followUp = (record) => {
  21. console.log('跟进', record);
  22. };
  23. const complete = (record) => {
  24. console.log('完成', record);
  25. };
  26. </script>

3. 在 FollowUpModal 中处理关闭事件

确保在 FollowUpModal 中,有个机制可以发出关闭事件,以便父组件能够响应并关闭模态框。例如,你可以在 FollowUpModal 中定义一个“关闭”按钮,并通过 $emit 发出事件:

  1. <template>
  2. <a-modal title="跟进" @cancel="$emit('close')" @ok="$emit('close')">
  3. <!-- 模态框内容 -->
  4. <!-- 可在这里添加表单等其他元素 -->
  5. <div>这是跟进内容...</div>
  6. <button @click="$emit('close')">关闭</button> <!-- 使用 emit 发出关闭事件 -->
  7. <!-- 或者其他提交逻辑 -->
  8. </a-modal>
  9. </template>
  10. <script setup>
  11. // 可以根据需要定义 props 和其他逻辑...
  12. defineProps(['record']);
  13. </script>

这样,当你点击“跟进”按钮时,就会打开一个带有指定内容(例如,某个记录信息)的弹窗,而点击弹窗中的“关闭”按钮就会将其隐藏。


内容由零声教学AI助手提供,问题来源于学员提问

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:https://golang.0voice.com/?id=22454

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?