| | |
| | | import { ActionItem, BasicColumn } from '/@/components/Table'; |
| | | import { useMessage } from '/@/hooks/web/useMessage'; |
| | | import { useI18n } from '/@/hooks/web/useI18n'; |
| | | import { FunctionType } from '/@/api/tigerapi/model/systemModel'; |
| | | |
| | | const { t } = useI18n(); |
| | | const { notification } = useMessage(); |
| | |
| | | |
| | | export function rsGrpGetSelectSuccess(d, u) { |
| | | return { |
| | | RSNG_CODE: d.values.values, |
| | | RSNG_CODE: d.values['val'], |
| | | }; |
| | | } |
| | | |
| | |
| | | rowKey: 'RSNG_CODE', |
| | | }); |
| | | } |
| | | |
| | | /* Select onChange 方法字典 */ |
| | | export const onChangeFns: Record<string, FunctionType> = { |
| | | ABC: (e) => { |
| | | notification.success({ |
| | | message: '进入了onChange函数', |
| | | description: `${e}`, |
| | | duration: 3, |
| | | }); |
| | | }, |
| | | XXX: (e) => {}, |
| | | }; |