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