diff --git a/src/app/core/guards/auth.guard.ts b/src/app/core/guards/auth.guard.ts index 23ae320d..dc51f81d 100644 --- a/src/app/core/guards/auth.guard.ts +++ b/src/app/core/guards/auth.guard.ts @@ -22,6 +22,8 @@ const auths = ['YUNLI-CART-SEARCH', 'YUNLI-CART-DAOCHU', 'YUNLI-CART-DETAIL']; export class AuthGuard implements CanActivate, CanActivateChild, CanLoad { constructor(srv: ACLService, router: Router, private eaUserSrv: CoreService, private router2: Router, private inject: Injector) {} canLoad(route: Route, segments: UrlSegment[]): boolean | UrlTree | Observable | Promise { + console.log(route); + throw true; } diff --git a/src/app/routes/demo/components/alian-demo/alian-demo.component.html b/src/app/routes/demo/components/alian-demo/alian-demo.component.html deleted file mode 100644 index e403a762..00000000 --- a/src/app/routes/demo/components/alian-demo/alian-demo.component.html +++ /dev/null @@ -1,44 +0,0 @@ - - - -
-
- -
-
- - - - -
-
- - - - -
    -
  • 删除
  • -
  • 批量审批
  • -
-
-
-
- - - 已选择 - {{ selectedRows.length }} 项   服务调用总计 {{ - totalCallNo }} 万 - 清空 - - -
- - -
\ No newline at end of file diff --git a/src/app/routes/demo/components/alian-demo/alian-demo.component.less b/src/app/routes/demo/components/alian-demo/alian-demo.component.less deleted file mode 100644 index 73710dfa..00000000 --- a/src/app/routes/demo/components/alian-demo/alian-demo.component.less +++ /dev/null @@ -1,5 +0,0 @@ -:host::ng-deep { - nz-range-picker { - width: 100%; - } -} \ No newline at end of file diff --git a/src/app/routes/demo/components/alian-demo/alian-demo.component.ts b/src/app/routes/demo/components/alian-demo/alian-demo.component.ts deleted file mode 100644 index 0dbbe39c..00000000 --- a/src/app/routes/demo/components/alian-demo/alian-demo.component.ts +++ /dev/null @@ -1,206 +0,0 @@ -import { Component, OnInit, TemplateRef, ViewChild } from '@angular/core'; -import { STComponent, STColumn, STChange } from '@delon/abc/st'; -import { SFComponent, SFDateWidgetSchema, SFSchema, SFUISchema } from '@delon/form'; -import { _HttpClient, ModalHelper } from '@delon/theme'; -import { NzMessageService } from 'ng-zorro-antd/message'; -import { NzModalService } from 'ng-zorro-antd/modal'; -import { DemoService } from '../../services/demo.service'; -import { DemoEditComponent } from '../zorro-demo/edit/edit.component'; - -@Component({ - selector: 'app-alian-demo', - templateUrl: './alian-demo.component.html', - styleUrls: ['./alian-demo.component.less'] -}) -export class AlianDemoComponent implements OnInit { - url = `/rule?_allow_anonymous=true`; - - status = [ - { index: 0, text: '关闭', value: false, type: 'default', checked: false }, - { - index: 1, - text: '运行中', - value: false, - type: 'processing', - checked: false - }, - { index: 2, text: '已上线', value: false, type: 'success', checked: false }, - { index: 3, text: '异常', value: false, type: 'error', checked: false } - ]; - @ViewChild('st', { static: true }) - st!: STComponent; - @ViewChild('sf', { static: false }) - sf!: SFComponent; - columns: STColumn[] = [ - { title: '', index: 'key', type: 'checkbox' }, - { title: '规则编号', index: 'no' }, - { title: '描述', index: 'description' }, - { - title: '服务调用次数', - index: 'callNo', - type: 'number', - format: item => `${item.callNo} 万`, - sort: { - compare: (a, b) => a.callNo - b.callNo - } - }, - { - title: '状态', - index: 'status', - render: 'status', - filter: { - menus: this.status, - fn: (filter, record) => record.status === filter.index - } - }, - { - title: '更新时间', - index: 'updatedAt', - type: 'date', - sort: { - compare: (a, b) => a.updatedAt - b.updatedAt - } - }, - { - title: '操作', - buttons: [ - { - text: '修改', - click: item => this.edit(item) - }, - { - text: '删除', - click: item => this.delete(item) - } - ] - } - ]; - searchSchema: SFSchema = { - properties: { - expand: { - type: 'boolean', - ui: { - hidden: true - } - }, - orderSn: { - type: 'string', - title: '订单号', - ui: { - autocomplete: 'off' - } - }, - receiveName: { - type: 'string', - title: '收件人' - }, - receiveMobile: { - type: 'string', - title: '收件人电话' - }, - tenantName: { - type: 'string', - title: '下单商家', - ui: { - visibleIf: { - expand: (value: boolean) => value - } - } - }, - createTime: { - title: '下单时间', - type: 'string', - ui: { - widget: 'date', - mode: 'range', - format: 'yyyy-MM-dd', - visibleIf: { - expand: (value: boolean) => value - } - } as SFDateWidgetSchema - } - } - }; - - ui: SFUISchema = { - '*': { - spanLabelFixed: 90, - grid: { span: 8, gutter: 4 } - }, - $orderSn: { - grid: { span: 8 } - }, - $receiveName: { - grid: { span: 8 } - }, - $createTime: { grid: { span: 8 } } - }; - _$expand = false; - - selectedRows: any[] = []; - totalCallNo = 0; - constructor(public service: DemoService, public msg: NzMessageService, private modal: ModalHelper) {} - - ngOnInit(): void {} - - stChange(e: STChange): void { - switch (e.type) { - case 'checkbox': - this.selectedRows = e.checkbox!; - this.totalCallNo = this.selectedRows.reduce((total, cv) => total + cv.callNo, 0); - break; - case 'filter': - this.st.load(); - break; - } - } - - remove(): void { - this.service.request('/delete/rule?_allow_anonymous=true', { nos: this.selectedRows.map(i => i.no).join(',') }).subscribe(() => { - this.st.load(); - this.st.clearCheck(); - }); - } - - approval(): void { - this.msg.success(`审批了 ${this.selectedRows.length} 笔`); - } - - add(): void { - this.modal.createStatic(DemoEditComponent, { i: { id: 0 } }).subscribe(res => { - if (res) { - console.log(res); - } - }); - } - - edit(item: any) { - this.modal - .createStatic(DemoEditComponent, { i: { no: 1, owner: '22222', callNo: 111, status: 1, description: '222' } }) - .subscribe(res => { - if (res) { - this.st.setRow(item, res); - } - }); - } - - delete(item: any) { - this.st.removeRow(item); - } - - /** - * 重置表单 - */ - resetSF() { - this.sf.reset(); - this._$expand = false; - } - - /** - * 伸缩查询条件 - */ - expandToggle() { - this._$expand = !this._$expand; - this.sf?.setValue('/expand', this._$expand); - } -} diff --git a/src/app/routes/demo/components/zorro-demo/edit/edit.component.html b/src/app/routes/demo/components/zorro-demo/edit/edit.component.html deleted file mode 100644 index 97f50494..00000000 --- a/src/app/routes/demo/components/zorro-demo/edit/edit.component.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - - diff --git a/src/app/routes/demo/components/zorro-demo/edit/edit.component.spec.ts b/src/app/routes/demo/components/zorro-demo/edit/edit.component.spec.ts deleted file mode 100644 index 5fa67a8b..00000000 --- a/src/app/routes/demo/components/zorro-demo/edit/edit.component.spec.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; -import { DemoEditComponent } from './edit.component'; - -describe('DemoEditComponent', () => { - let component: DemoEditComponent; - let fixture: ComponentFixture; - - beforeEach(waitForAsync(() => { - TestBed.configureTestingModule({ - declarations: [ DemoEditComponent ] - }) - .compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(DemoEditComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/src/app/routes/demo/components/zorro-demo/edit/edit.component.ts b/src/app/routes/demo/components/zorro-demo/edit/edit.component.ts deleted file mode 100644 index 989ed27f..00000000 --- a/src/app/routes/demo/components/zorro-demo/edit/edit.component.ts +++ /dev/null @@ -1,63 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { SFSchema, SFUISchema } from '@delon/form'; -import { _HttpClient } from '@delon/theme'; -import { NzMessageService } from 'ng-zorro-antd/message'; -import { NzModalRef } from 'ng-zorro-antd/modal'; - -@Component({ - selector: 'app-demo-edit', - templateUrl: './edit.component.html', -}) -export class DemoEditComponent implements OnInit { - record: any = {}; - i: any; - schema: SFSchema = { - properties: { - no: { type: 'string', title: '编号' }, - owner: { type: 'string', title: '姓名', maxLength: 15 }, - callNo: { type: 'number', title: '调用次数' }, - status: { type: 'number', title: '链接' }, - description: { type: 'string', title: '描述', maxLength: 140 }, - }, - required: ['owner', 'callNo', 'description'], - }; - ui: SFUISchema = { - '*': { - spanLabelFixed: 100, - grid: { span: 12 }, - }, - $no: { - widget: 'text' - }, - $href: { - widget: 'string', - }, - $description: { - widget: 'textarea', - grid: { span: 24 }, - }, - }; - - constructor( - private modal: NzModalRef, - private msgSrv: NzMessageService, - public http: _HttpClient, - ) {} - - ngOnInit(): void { - if (this.record.id > 0) - this.http.get(`/user/${this.record.id}`).subscribe(res => (this.i = res)); - } - - save(value: any): void { - this.modal.close(value); - // this.http.post(`/user/${this.record.id}`, value).subscribe(res => { - // this.msgSrv.success('保存成功'); - // this.modal.close(true); - // }); - } - - close(): void { - this.modal.destroy(); - } -} diff --git a/src/app/routes/demo/components/zorro-demo/zorro-demo.component.html b/src/app/routes/demo/components/zorro-demo/zorro-demo.component.html deleted file mode 100644 index ec55f6ee..00000000 --- a/src/app/routes/demo/components/zorro-demo/zorro-demo.component.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - -
-
-
- - 规则编号 - - - - -
-
- - 使用状态 - - - - - - - -
-
- - 调用次数 - - - - -
-
- - 更新日期 - - - - -
-
- - 使用状态 - - - - - - - -
-
- - - - - {{ expandForm ? '收起' : '展开' }} - - -
-
-
- - - - - -
    -
  • 删除
  • -
  • 批量审批
  • -
-
-
-
- - - 已选择 - {{ selectedRows.length }} 项   服务调用总计 {{ - totalCallNo }} 万 - 清空 - - -
- - - - - - - No - Name - Description - Option - - - - - - - {{ data.no }} - {{ data.callNo }} - {{ data.description }} - - Edit - - Delete - - - - -
- - - - - - 描述 - - - - - \ No newline at end of file diff --git a/src/app/routes/demo/components/zorro-demo/zorro-demo.component.less b/src/app/routes/demo/components/zorro-demo/zorro-demo.component.less deleted file mode 100644 index e69de29b..00000000 diff --git a/src/app/routes/demo/components/zorro-demo/zorro-demo.component.ts b/src/app/routes/demo/components/zorro-demo/zorro-demo.component.ts deleted file mode 100644 index 1bfa7d26..00000000 --- a/src/app/routes/demo/components/zorro-demo/zorro-demo.component.ts +++ /dev/null @@ -1,161 +0,0 @@ -import { ChangeDetectorRef, Component, OnInit, TemplateRef } from '@angular/core'; -import { NzSafeAny } from 'ng-zorro-antd/core/types'; -import { NzMessageService } from 'ng-zorro-antd/message'; -import { NzModalService } from 'ng-zorro-antd/modal'; -import { map, tap } from 'rxjs/operators'; -import { DemoService } from '../../services/demo.service'; - -@Component({ - selector: 'app-zorro-demo', - templateUrl: './zorro-demo.component.html', - styleUrls: ['./zorro-demo.component.less'] -}) -export class ZorroDemoComponent implements OnInit { - data: any[] = []; - loading = false; - expandForm = false; - - q: { - pi: number; - ps: number; - no: string; - sorter: string; - status: number | null; - statusList: NzSafeAny[]; - } = { - pi: 1, - ps: 10, - no: '', - sorter: '', - status: null, - statusList: [] - }; - - status = [ - { index: 0, text: '关闭', value: false, type: 'default', checked: false }, - { - index: 1, - text: '运行中', - value: false, - type: 'processing', - checked: false - }, - { index: 2, text: '已上线', value: false, type: 'success', checked: false }, - { index: 3, text: '异常', value: false, type: 'error', checked: false } - ]; - - selectedRows: any[] = []; - totalCallNo = 0; - description: string = ''; - checkedAll = false; - indeterminate = false; - constructor( - private service: DemoService, - public msg: NzMessageService, - private modalSrv: NzModalService, - private cdr: ChangeDetectorRef - ) {} - - ngOnInit(): void { - this.getData(); - } - - getData(): void { - this.loading = true; - this.q.statusList = this.status.filter(w => w.checked).map(item => item.index); - if (this.q.status !== null && this.q.status > -1) { - this.q.statusList.push(this.q.status); - } - this.service - .request('/rule?_allow_anonymous=true', this.q) - .pipe( - map((list: { records: Array<{ status: number; statusText: string; statusType: string }> }) => - list.records.map(i => { - const statusItem = this.status[i.status]; - i.statusText = statusItem.text; - i.statusType = statusItem.type; - return i; - }) - ), - tap(() => (this.loading = false)) - ) - .subscribe(res => { - this.data = res; - }); - } - - action(tpl: TemplateRef<{}>, data?: any): void { - if (data) { - this.description = data.description; - } - this.modalSrv.create({ - nzTitle: '新建规则', - nzContent: tpl, - nzOnOk: () => { - this.loading = true; - - // this.http.post('/rule', { description: this.description }).subscribe(() => this.getData()); - if (data) { - Object.assign(data, { description: this.description }); - } else { - this.data.push({ - checked: false, - key: this.data.length, - callNo: 111, - description: this.description - }); - this.data = [...this.data]; - } - setTimeout(() => { - this.loading = false; - }, 1000); - } - }); - } - - remove(): void { - this.service.request('/delete/rule?_allow_anonymous=true', { nos: this.selectedRows.map((i: any) => i.no).join(',') }).subscribe(() => { - this.getData(); - this.clearCheck(); - }); - } - - deleteAction(item: any) { - this.data = this.data.filter(({ no }) => no !== item.no); - } - - approval(): void { - this.msg.success(`审批了 ${this.selectedRows.length} 笔`); - } - - onAllChecked(checked: boolean): void { - this.data.filter(({ disabled }) => !disabled).forEach(item => (item.checked = checked)); - this.selectedRows = this.data.filter(({ checked }) => checked); - } - - onItemChecked(checked: boolean, item: any): void { - if (checked) { - this.selectedRows.push(item); - } else { - this.selectedRows = this.selectedRows.filter(({ no }) => no !== item.no); - } - this.refreshCheckedStatus(); - } - - refreshCheckedStatus(): void { - this.checkedAll = this.data.every(item => item.checked); - this.indeterminate = this.data.some(item => item.checked) && !this.checkedAll; - } - - clearCheck() { - this.data.forEach(item => (item.checked = false)); - this.selectedRows = []; - this.checkedAll = false; - this.indeterminate = false; - } - - reset(): void { - // wait form reset updated finished - setTimeout(() => this.getData()); - } -} diff --git a/src/app/routes/demo/demo-routing.module.ts b/src/app/routes/demo/demo-routing.module.ts deleted file mode 100644 index 2f6625d7..00000000 --- a/src/app/routes/demo/demo-routing.module.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { NgModule } from '@angular/core'; -import { RouterModule, Routes } from '@angular/router'; -import { AlianDemoComponent } from './components/alian-demo/alian-demo.component'; -import { ZorroDemoComponent } from './components/zorro-demo/zorro-demo.component'; - -const routes: Routes = [ - { path: 'zorro', component: ZorroDemoComponent }, - { path: 'alain', component: AlianDemoComponent }, -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule] -}) -export class DemoRoutingModule { } diff --git a/src/app/routes/demo/demo.module.ts b/src/app/routes/demo/demo.module.ts deleted file mode 100644 index b1828a1e..00000000 --- a/src/app/routes/demo/demo.module.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { NgModule, Type } from '@angular/core'; -import { SharedModule } from '@shared'; -import { AlianDemoComponent } from './components/alian-demo/alian-demo.component'; -import { DemoEditComponent } from './components/zorro-demo/edit/edit.component'; - -import { ZorroDemoComponent } from './components/zorro-demo/zorro-demo.component'; -import { DemoRoutingModule } from './demo-routing.module'; - -const COMPONENTS: Array> = [DemoEditComponent, ZorroDemoComponent, AlianDemoComponent]; - -@NgModule({ - imports: [SharedModule, DemoRoutingModule], - declarations: COMPONENTS -}) -export class DemoModule {} diff --git a/src/app/routes/demo/services/demo.service.ts b/src/app/routes/demo/services/demo.service.ts deleted file mode 100644 index 0bc392c4..00000000 --- a/src/app/routes/demo/services/demo.service.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { Injectable, Injector } from '@angular/core'; -import { BaseService } from 'src/app/shared/services'; - -@Injectable({ - providedIn: 'root' -}) -export class DemoService extends BaseService { - constructor(public injector: Injector) { - super(injector); - } -} diff --git a/src/app/routes/menu-manager/components/api-auth/api-auth.component.html b/src/app/routes/menu-manager/components/api-auth/api-auth.component.html index 4af86ae4..2e9b45b3 100644 --- a/src/app/routes/menu-manager/components/api-auth/api-auth.component.html +++ b/src/app/routes/menu-manager/components/api-auth/api-auth.component.html @@ -45,7 +45,7 @@ 路由地址 菜单图标 菜单排序 - 操作 + 操作 @@ -64,7 +64,7 @@ {{ item.sorted }} - + 权限配置 diff --git a/src/app/routes/menu-manager/components/index/index.component.ts b/src/app/routes/menu-manager/components/index/index.component.ts index f1f9573d..00f03d03 100644 --- a/src/app/routes/menu-manager/components/index/index.component.ts +++ b/src/app/routes/menu-manager/components/index/index.component.ts @@ -76,7 +76,7 @@ export class MenuManagerComponentsIndexComponent implements OnInit { }); modal.afterClose.subscribe(res => { if (res) { - // this.loadMemu(this.selectedPlatform.appId); + this.loadMemu(this.selectedPlatform.appId); } }); } diff --git a/src/app/routes/routes-routing.module.ts b/src/app/routes/routes-routing.module.ts index 693b3707..f3ec5f69 100644 --- a/src/app/routes/routes-routing.module.ts +++ b/src/app/routes/routes-routing.module.ts @@ -28,7 +28,6 @@ const routes: Routes = [ children: [ { path: '', redirectTo: 'dashboard', pathMatch: 'full' }, { path: 'dashboard', component: DashboardComponent }, - { path: 'demo', loadChildren: () => import('./demo/demo.module').then(m => m.DemoModule) }, { path: 'account', loadChildren: () => import('./account/account.module').then(m => m.AccountModule) diff --git a/src/app/routes/sys-setting/components/agreement-config/agreement-config.component.ts b/src/app/routes/sys-setting/components/agreement-config/agreement-config.component.ts index 90799802..823fe820 100644 --- a/src/app/routes/sys-setting/components/agreement-config/agreement-config.component.ts +++ b/src/app/routes/sys-setting/components/agreement-config/agreement-config.component.ts @@ -1,12 +1,7 @@ -import { DatePipe } from '@angular/common'; -import { Component, OnInit, TemplateRef, ViewChild } from '@angular/core'; -import { FormBuilder, FormGroup, Validators } from '@angular/forms'; -import { SFComponent, SFSchema, SFUISchema, SFUploadWidgetSchema } from '@delon/form'; +import { Component, OnInit, ViewChild } from '@angular/core'; +import { SFComponent, SFSchema } from '@delon/form'; import { _HttpClient } from '@delon/theme'; -import { Observable, Observer } from 'rxjs'; -import { Router } from '@angular/router'; import { SystemService } from '../../services/system.service'; -import { EnvironmentService } from '@env/environment.service'; @Component({ selector: 'app-agreement-config-components-base', styleUrls: ['./agreement-config.component.less'], diff --git a/src/app/routes/sys-setting/sys-setting-routing.module.ts b/src/app/routes/sys-setting/sys-setting-routing.module.ts index 2b8db6a3..93ceb933 100644 --- a/src/app/routes/sys-setting/sys-setting-routing.module.ts +++ b/src/app/routes/sys-setting/sys-setting-routing.module.ts @@ -37,6 +37,8 @@ const routes: Routes = [ { path: 'system-logs', component: SystemLogsComponent }, { path: 'user-logs', component: UserLogsComponent }, { path: 'version-logs', component: VersionLogsComponent }, + { path: 'system-supply-logs', component: SystemSupplyLogsComponent }, + { path: 'system-waybill-logs', component: SystemWaybillLogsComponent }, { path: 'audit-reason-config', component: AuditReasonConfigComponent }, { path: 'cart-config', component: CartConfigComponent }, { path: 'agreement-config', component: AgreementConfigComponentsBaseComponent }, @@ -45,11 +47,9 @@ const routes: Routes = [ { path: 'crm-management', component: CrmManagementComponent }, { path: 'network-freight', component: NetworkFreightComponent }, { path: 'close-account', component: CloseAccountComponent }, - { path: 'system-supply-logs', component: SystemSupplyLogsComponent }, - { path: 'system-waybill-logs', component: SystemWaybillLogsComponent }, { path: 'btn-management', component: BtnManagementComponent }, { path: 'announcement-message', component: AnnouncementMessageComponent }, - { path: 'insurance-set', component: InsuranceSetComponent }, + { path: 'insurance-set', component: InsuranceSetComponent } ]; @NgModule({ diff --git a/src/app/routes/usercenter/components/driver/detail/detail.component.spec.ts b/src/app/routes/usercenter/components/driver/detail/detail.component.spec.ts deleted file mode 100644 index c2215295..00000000 --- a/src/app/routes/usercenter/components/driver/detail/detail.component.spec.ts +++ /dev/null @@ -1,31 +0,0 @@ -/* - * @Author: your name - * @Date: 2021-11-29 20:19:08 - * @LastEditTime: 2021-11-29 20:31:00 - * @LastEditors: your name - * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE - * @FilePath: \tms-obc-web\src\app\routes\usercenter\components\freight\list\detail\detail.component.spec.ts - */ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { UserCenterComponentsDriverDetailComponent } from './detail.component'; - -describe('UserCenterComponentsDriverDetailComponent', () => { - let component: UserCenterComponentsDriverDetailComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [UserCenterComponentsDriverDetailComponent], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(UserCenterComponentsDriverDetailComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/src/app/routes/usercenter/components/driver/driver.component.ts b/src/app/routes/usercenter/components/driver/driver.component.ts index 6842d26f..e7812572 100644 --- a/src/app/routes/usercenter/components/driver/driver.component.ts +++ b/src/app/routes/usercenter/components/driver/driver.component.ts @@ -298,7 +298,7 @@ export class UserCenterComponentsDriverComponent implements OnInit { className: 'text-center', buttons: [ { - text: '查看  ', + text: '查看', click: item => { this.router.navigate(['./detail', item.appUserId], { relativeTo: this.ar }); // this.router.navigate(['./view', item.id], { relativeTo: this.ar, queryParams: { tenantId: item.tenantId } }); @@ -309,7 +309,7 @@ export class UserCenterComponentsDriverComponent implements OnInit { click: item => this.settingAction(item) }, { - text: '资金账户 ', + text: '资金账户', click: item => this.showAccountDetail(item) } ] diff --git a/src/app/routes/usercenter/components/freight/user/detail/detail.component.spec.ts b/src/app/routes/usercenter/components/freight/user/detail/detail.component.spec.ts deleted file mode 100644 index 00666a0b..00000000 --- a/src/app/routes/usercenter/components/freight/user/detail/detail.component.spec.ts +++ /dev/null @@ -1,31 +0,0 @@ -/* - * @Author: your name - * @Date: 2021-11-29 20:19:08 - * @LastEditTime: 2021-11-29 20:31:00 - * @LastEditors: your name - * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE - * @FilePath: \tms-obc-web\src\app\routes\usercenter\components\freight\list\detail\detail.component.spec.ts - */ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { FreightComponentsListDetailComponent } from './detail.component'; - -describe('FreightComponentsListDetailComponent', () => { - let component: FreightComponentsListDetailComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [FreightComponentsListDetailComponent], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(FreightComponentsListDetailComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -});