| | |
| | | align: 'center',//文字居中 |
| | | stripe:true,//斑马纹 |
| | | rowConfig: {isCurrent: true, isHover: true,height: 30},//鼠标移动或选择高亮 |
| | | id: 'OrderList', |
| | | id: 'OrderOtherMoney', |
| | | showFooter: true,//显示脚 |
| | | scrollY:{ enabled: true },//开启虚拟滚动 |
| | | showOverflow:true, |
| | |
| | | otherMoney:{} |
| | | }) |
| | | onMounted(()=>{ |
| | | if(Object.keys(prop.otherMoney).length === 0){ |
| | | return |
| | | } |
| | | xGrid.value.reloadData(prop.otherMoney.filter(item => item.column.indexOf('M')>-1)) |
| | | }) |
| | | watch(prop,(newVal)=>{ |
| | | if(Object.keys(prop.otherMoney).length === 0){ |
| | | return |
| | | } |
| | | xGrid.value.reloadData(prop.otherMoney.filter(item => item.column.indexOf('M')>-1)) |
| | | }) |
| | | |