找回密码
 立即注册
首页 业界区 业界 vxe-grid table 实现表格中弹窗选择数据

vxe-grid table 实现表格中弹窗选择数据

任俊慧 2025-6-6 18:24:54
当需要再表格中的某个字段是关联另外一张表示,需要将从另外表选择数据,并将数据保存在当前行中
官网:https://vxetable.cn
1.gif
  1. <template>
  2.   
  3.     <vxe-grid v-bind="gridOptions">
  4.       <template #action="{ row }">
  5.         <vxe-button mode="text" status="primary" @click="selectEvent(row)">关联订单</vxe-button>
  6.       </template>
  7.     </vxe-grid>
  8.     <vxe-modal
  9.       resize
  10.       show-footer
  11.       show-confirm-button
  12.       show-cancel-button
  13.       show-maximize
  14.       v-model="showPopup"
  15.       title="关联订单"
  16.       height="400"
  17.       width="800"
  18.       @show="showSubEvent"
  19.       @confirm="confirmSubEvent">
  20.       <vxe-grid ref="productGridRef" v-bind="productGridOptions"></vxe-grid>
  21.     </vxe-modal>
  22.   
  23. </template>
复制代码
https://gitee.com/xuliangzhan/vxe-table

来源:程序园用户自行投稿发布,如果侵权,请联系站长删除
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
您需要登录后才可以回帖 登录 | 立即注册