beforeHeadEvent.js 465 B

1234567891011121314151617181920212223242526
  1. import { ajax, cardCache, toast } from 'nc-lightapp-front';
  2. /**
  3. * @description: 表头编辑前事件
  4. * @param: moduleId 区域编码
  5. * @param: key 当前字段编码
  6. * @return: 布尔 true表示可编辑
  7. */
  8. export function beforeHeadEvent(props, moduleId, key, value, data) {
  9. //zth 未启用的银行账号也可以参照到
  10. if(key === "account"){
  11. toast({ color: 'success', content: "编辑了开户银行" });
  12. }
  13. return true;
  14. }