新增设置支付密码

This commit is contained in:
weiyu
2022-04-22 17:28:03 +08:00
parent 16eb5bcb72
commit 488d6f7e69
18 changed files with 657 additions and 38 deletions

View File

@ -0,0 +1,11 @@
import { NgModule } from '@angular/core';
import { CaptchaComponent } from './captcha.component';
const COMPONENTS = [CaptchaComponent];
@NgModule({
declarations: COMPONENTS,
exports: COMPONENTS
})
export class CaptchaModule {}

View File

@ -1,2 +1,3 @@
export * from './captcha.component';
export * from './dun.helper';
export * from './captcha.module';