Merge branch 'weiyu' into develop

This commit is contained in:
weiyu
2022-04-24 11:12:26 +08:00
20 changed files with 743 additions and 56 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';

View File

@ -5,6 +5,7 @@ import { apiConf } from '@conf/api.conf';
import { NgxTinymceModule } from 'ngx-tinymce';
import { environment } from '@env/environment';
const TinyMce = NgxTinymceModule.forRoot({
baseURL: 'assets/tinymce/',
config: {

View File

@ -37,6 +37,7 @@ import { ImageListModule } from './components/imagelist';
import { DictSelectComponent } from './components/dict-select';
import { PipeModule } from './pipes';
import { AccountDetailComponent } from './components/account-detail/account-detail.component';
import { CaptchaModule } from './components/captcha';
import { rebateTableModule } from './components/rebate-table';
const MODULES = [
@ -53,6 +54,7 @@ const MODULES = [
ImageListModule,
PipeModule,
rebateTableModule,
CaptchaModule,
...PRO_SHARED_MODULES
];
// #endregion