13 lines
495 B
JavaScript
13 lines
495 B
JavaScript
export { registerPayClazzEntity } from './utils/payClazz';
|
|
export { registerPayChannelComponent } from './components/payConfig/system/web.pc';
|
|
export { registerFrontendPayRoutine } from './components/pay/detail/index';
|
|
export { registerApplicationProjection } from './utils/application';
|
|
export const ExtraOnlineChannels = [];
|
|
export function registerOnlinePayEntity(entity, options) {
|
|
const { name } = options;
|
|
ExtraOnlineChannels.push({
|
|
entity: entity,
|
|
name,
|
|
});
|
|
}
|