于杰
111 分钟以前 69a25cd577d5639f2869bcf80f498b373e80137e
north-glass-erp/northglass-erp/src/components/sd/order/OrderOtherMoney.vue
@@ -16,7 +16,7 @@
  align: 'center',//文字居中
  stripe:true,//斑马纹
  rowConfig: {isCurrent: true, isHover: true,height: 30},//鼠标移动或选择高亮
  id: 'OrderList',
  id: 'OrderOtherMoney',
  showFooter: true,//显示脚
  scrollY:{ enabled: true },//开启虚拟滚动
  showOverflow:true,
@@ -144,9 +144,15 @@
  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))
})