赞
踩
/**
*@params customConfig:是否启用自定义列配置项
*@params gridHeight 组件自定义高度
*@params toolbarButton 工具栏按钮
*@params operteButton 操作列按钮
*@params queryApi grid 请求api
*@params extraQueryParams 默认请求参数
*@params needWatchToQuery 联动表格 需监听extraQueryParams 再请求
*/
true
,当页面列不多无需自定义时,可传入false
隐藏route
配置meta:{ jsonType: '静态列数据类型标识' }
并且有对应的JSON文件;或者直接在页面定义columns传入;btn: string, row?: any
: btn 当前点击的事件标识;row 操作列点击时的行数据true
时,不会触发请求<template> <div> <Grid ref="gridRef" :columns="tableColumn" :toolbar-button="toolbarButtonConfig" :operte-button="operateButtonConfig" :query-api="omsOrder" :extra-query-params="extraQueryParams" @click-fall-back="clickFallBack" @query-options="queryHeaderOptions()" /> </div> </template> <script setup lang="ts"> const gridRef = ref<ComponentRef | null>(null) const clickFallBack = (btn: string, row?: any)=>{} </script>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。