fix bug
This commit is contained in:
41
package-lock.json
generated
41
package-lock.json
generated
@ -2879,35 +2879,6 @@
|
||||
"integrity": "sha1-vShOV8hPEyXacCur/IKlMoGQwMU=",
|
||||
"dev": true
|
||||
},
|
||||
"@types/quill": {
|
||||
"version": "2.0.9",
|
||||
"resolved": "https://registry.npmmirror.com/@types/quill/-/quill-2.0.9.tgz",
|
||||
"integrity": "sha512-/n40Ypp+jF3GDLqB/5z1P+Odq1K98txXbBgRDkG6Z90LGC1AwQPtZWNeOdDg0yUlgBSUASmpeDn3eBPUuPXtuw==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"parchment": "^1.1.2",
|
||||
"quill-delta": "^4.0.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"fast-diff": {
|
||||
"version": "1.2.0",
|
||||
"resolved": "https://registry.npmmirror.com/fast-diff/-/fast-diff-1.2.0.tgz",
|
||||
"integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==",
|
||||
"dev": true
|
||||
},
|
||||
"quill-delta": {
|
||||
"version": "4.2.2",
|
||||
"resolved": "https://registry.npmmirror.com/quill-delta/-/quill-delta-4.2.2.tgz",
|
||||
"integrity": "sha512-qjbn82b/yJzOjstBgkhtBjN2TNK+ZHP/BgUQO+j6bRhWQQdmj2lH6hXG7+nwwLF41Xgn//7/83lxs9n2BkTtTg==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"fast-diff": "1.2.0",
|
||||
"lodash.clonedeep": "^4.5.0",
|
||||
"lodash.isequal": "^4.5.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"@types/selenium-webdriver": {
|
||||
"version": "3.0.19",
|
||||
"resolved": "https://registry.npmmirror.com/@types/selenium-webdriver/download/@types/selenium-webdriver-3.0.19.tgz",
|
||||
@ -10165,24 +10136,12 @@
|
||||
"resolved": "https://registry.nlark.com/lodash/download/lodash-4.17.21.tgz",
|
||||
"integrity": "sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw="
|
||||
},
|
||||
"lodash.clonedeep": {
|
||||
"version": "4.5.0",
|
||||
"resolved": "https://registry.npmmirror.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
|
||||
"integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==",
|
||||
"dev": true
|
||||
},
|
||||
"lodash.debounce": {
|
||||
"version": "4.0.8",
|
||||
"resolved": "https://registry.npm.taobao.org/lodash.debounce/download/lodash.debounce-4.0.8.tgz",
|
||||
"integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=",
|
||||
"dev": true
|
||||
},
|
||||
"lodash.isequal": {
|
||||
"version": "4.5.0",
|
||||
"resolved": "https://registry.npmmirror.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
|
||||
"integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==",
|
||||
"dev": true
|
||||
},
|
||||
"lodash.memoize": {
|
||||
"version": "4.1.2",
|
||||
"resolved": "https://registry.nlark.com/lodash.memoize/download/lodash.memoize-4.1.2.tgz",
|
||||
|
||||
@ -49,9 +49,9 @@ export class StartupService {
|
||||
let data;
|
||||
if (this.coreSrv.loginStatus) {
|
||||
// 本地菜单
|
||||
data = this.loadMockData();
|
||||
// data = this.loadMockData();
|
||||
// 远程菜单
|
||||
// data = this.loadRemoteData();
|
||||
data = this.loadRemoteData();
|
||||
} else {
|
||||
data = this.loadMockData();
|
||||
}
|
||||
@ -134,12 +134,12 @@ export class StartupService {
|
||||
const userData = this.httpClient.post(this.userSrv.$api_get_user_by_token, {}).pipe(map((res: any) => res.data));
|
||||
|
||||
// 菜单数据
|
||||
const menuData = this.httpClient
|
||||
.post(this.coreSrv.$api_get_current_user_menus, {
|
||||
appId: this.coreSrv.envSrv.getEnvironment().appId
|
||||
})
|
||||
.pipe(map((res: any) => res.data));
|
||||
// const menuData = this.httpClient.get('assets/mocks/menu-data.json').pipe(map((res: any) => res.data.menu));
|
||||
// const menuData = this.httpClient
|
||||
// .post(this.coreSrv.$api_get_current_user_menus, {
|
||||
// appId: this.coreSrv.envSrv.getEnvironment().appId
|
||||
// })
|
||||
// .pipe(map((res: any) => res.data));
|
||||
const menuData = this.httpClient.get('assets/mocks/menu-data.json').pipe(map((res: any) => res.data.menu));
|
||||
|
||||
return zip(appData, userData, menuData);
|
||||
}
|
||||
|
||||
@ -20,7 +20,14 @@ const alainConfig: AlainConfig = {
|
||||
sf: { button: { search: '查询' }, ui: { placeholder: '请输入' } },
|
||||
pageHeader: { homeI18n: 'home', recursiveBreadcrumb: true },
|
||||
auth: { login_url: '/passport/login' },
|
||||
acl: { guard_url: '/exception/403' }
|
||||
acl: { guard_url: '/exception/403' },
|
||||
chart: {
|
||||
// 以下是默认配置,如果项目无法外网访问,可以根据 `angular.json` 配置将依赖包直接使用 `./assets***` 路径
|
||||
libs: [
|
||||
'https://gw.alipayobjects.com/os/lib/antv/g2/4.1.4/dist/g2.min.js',
|
||||
'https://gw.alipayobjects.com/os/lib/antv/data-set/0.11.7/dist/data-set.js'
|
||||
]
|
||||
}
|
||||
};
|
||||
|
||||
const alainModules = [AlainThemeModule.forRoot(), DelonACLModule.forRoot()];
|
||||
|
||||
@ -124,8 +124,8 @@ export class FreightAccountService extends ShipperBaseService {
|
||||
// 根据预收款ID获取收款单明细
|
||||
$api_get_advance_collection_detail = '/api/fcc/ficoBrmYsk/getBrmYskByYskblaId';
|
||||
|
||||
constructor(public injector: Injector, public eaCacheSrv: EACacheService) {
|
||||
super(injector, eaCacheSrv);
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
}
|
||||
|
||||
getReceiptUrl(url: string, params: any) {
|
||||
|
||||
@ -28,7 +28,7 @@ export class InsuranceManagementService extends ShipperBaseService {
|
||||
// 保险费公司认证
|
||||
$api_get_submitAuthInfo = `/api/sdc/premiumInfo/submitAuthInfo`;
|
||||
|
||||
constructor(public injector: Injector, public eaCacheSrv: EACacheService) {
|
||||
super(injector, eaCacheSrv);
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
}
|
||||
}
|
||||
|
||||
@ -190,7 +190,7 @@ export class OrderManagementService extends ShipperBaseService {
|
||||
})
|
||||
);
|
||||
}
|
||||
constructor(public injector: Injector, public eaCacheSrv: EACacheService) {
|
||||
super(injector, eaCacheSrv);
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,27 +1,27 @@
|
||||
<page-header-wrapper [title]="'合伙人账户明细'" [logo]="logo">
|
||||
<ng-template #logo>
|
||||
<button nz-button (click)="goBack()">
|
||||
<!-- <button nz-button (click)="goBack()">
|
||||
<i nz-icon nzType="left" nzTheme="outline"></i>
|
||||
</button>
|
||||
</button> -->
|
||||
</ng-template>
|
||||
</page-header-wrapper>
|
||||
<nz-card>
|
||||
<sv-container layout="vertical" [noColon]="true" col="4">
|
||||
<sv [label]="labelTpl">
|
||||
<b class="text-md ">{{accountInfo?.company}}</b>
|
||||
<b class="text-md ">{{headerTotalInfo?.ltdName}}</b>
|
||||
</sv>
|
||||
<sv label="可用余额">
|
||||
{{totalInfo?.balance |currency}}
|
||||
{{headerTotalInfo?.allAmount |currency}}
|
||||
</sv>
|
||||
<sv label="收入金额">
|
||||
{{totalInfo?.income |currency}}
|
||||
{{headerTotalInfo?.incomeAmount |currency}}
|
||||
</sv>
|
||||
<sv label="支出金额">
|
||||
{{totalInfo?.spending |currency}}
|
||||
{{headerTotalInfo?.payAmount |currency}}
|
||||
</sv>
|
||||
</sv-container>
|
||||
<ng-template #labelTpl>
|
||||
<b class="text-md" style="color: black;">{{accountInfo?.name}} {{accountInfo?.phone}}</b>
|
||||
<b class="text-md" style="color: black;">{{headerTotalInfo?.name}} {{headerTotalInfo?.phone}}</b>
|
||||
</ng-template>
|
||||
</nz-card>
|
||||
<nz-card>
|
||||
@ -40,22 +40,26 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="table-content">
|
||||
<st #st [data]="service.$api_get_account_management_page " [columns]="columns"
|
||||
<st #st [data]="service.$api_get_account_detail_page " [columns]="columns"
|
||||
[req]="{ method: 'POST', allInBody: true, reName: {pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
|
||||
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
|
||||
[page]="{ show: true, showSize: true, pageSizes: [5,10, 20, 50, 100, 200, 500] }"
|
||||
[loading]="service.http.loading" [scroll]="{x:'1200px'}">
|
||||
<ng-template st-row="amount" let-item>
|
||||
<div *ngIf="item.incomeType === '1'"> - {{item.amount | currency }}</div>
|
||||
<div *ngIf="item.incomeType === '2'"> + {{item.amount | currency }}</div>
|
||||
<div *ngIf="item.incomeType === '1'" class="text-right"> - {{item.amount | currency:' ' }}</div>
|
||||
<div *ngIf="item.incomeType === '2'" class="text-right"> + {{item.amount | currency:' ' }}</div>
|
||||
</ng-template>
|
||||
<ng-template st-row="accountBalance" let-item>
|
||||
<div class="text-right">{{item?.accountBalance |currency:' '}}</div>
|
||||
</ng-template>
|
||||
|
||||
</st>
|
||||
<div class="total-footer text-md" *ngIf="st?.list?.length !== 0 ">
|
||||
合计 <label class="text-red-dark">{{ totalInfo?.total }}</label> 项,收入 <label
|
||||
合计 <label class="text-red-dark">{{ footerTotalInfo?.total }}</label> 项,收入 <label
|
||||
class="text-red-dark font-weight-bold">{{
|
||||
totalInfo?.income | currency
|
||||
footerTotalInfo?.incomeAmount | currency
|
||||
}}</label>,支出 <label class="text-red-dark font-weight-bold">{{
|
||||
totalInfo?.spending | currency }}</label>
|
||||
footerTotalInfo?.payAmount | currency }}</label>
|
||||
</div>
|
||||
</div>
|
||||
</nz-card>
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { ActivatedRoute } from '@angular/router';
|
||||
import { STColumn, STComponent } from '@delon/abc/st';
|
||||
import { SFComponent, SFDateWidgetSchema, SFSchema, SFUISchema } from '@delon/form';
|
||||
import { ModalHelper, _HttpClient } from '@delon/theme';
|
||||
@ -10,17 +11,20 @@ import { AccountManagemantService } from '../../services/account-managemant.serv
|
||||
styleUrls: ['./account-detail.component.less']
|
||||
})
|
||||
export class PartnerAccountManagementAccountDetailComponent implements OnInit {
|
||||
totalInfo: any = {
|
||||
balance: 0,
|
||||
income: 1500,
|
||||
spending: 2400,
|
||||
total: 186
|
||||
headerTotalInfo: any = {
|
||||
allAmount: 0,
|
||||
incomeAmount: 0,
|
||||
payAmount: 0,
|
||||
name: '',
|
||||
ltdName: '',
|
||||
phone: ''
|
||||
};
|
||||
accountInfo = {
|
||||
name: '张三',
|
||||
phone: '13812345678',
|
||||
company: '天津怡亚通物流科技有限公司(平安)'
|
||||
}
|
||||
footerTotalInfo: any = {
|
||||
incomeAmount: 0,
|
||||
payAmount: 0,
|
||||
total: 0
|
||||
};
|
||||
|
||||
|
||||
url = `/user`;
|
||||
schema: SFSchema = {};
|
||||
@ -31,14 +35,27 @@ export class PartnerAccountManagementAccountDetailComponent implements OnInit {
|
||||
|
||||
|
||||
columns: STColumn[] = [];
|
||||
roleId = '';
|
||||
bankType = '';
|
||||
channelSource = '';
|
||||
ltdId = '';
|
||||
constructor(public service: AccountManagemantService, public ar: ActivatedRoute) {
|
||||
|
||||
constructor(public service: AccountManagemantService) { }
|
||||
this.roleId = this.ar.snapshot.params.id;
|
||||
this.ar.queryParamMap.subscribe((res: any) => {
|
||||
this.ltdId = res?.params?.ltdId;
|
||||
this.channelSource = res?.params?.channelSource;
|
||||
this.bankType = res?.params?.bankType;
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
get reqParams() {
|
||||
return { ...this.sf?.value };
|
||||
return { ...this.sf?.value, roleId: this.roleId, ltdId: this.ltdId, channelSource: this.channelSource, bankType: this.bankType };
|
||||
}
|
||||
ngOnInit(): void {
|
||||
this.getHeaderSummary();
|
||||
this.getFooterSummary();
|
||||
this.initSF();
|
||||
this.initST();
|
||||
}
|
||||
@ -59,21 +76,21 @@ export class PartnerAccountManagementAccountDetailComponent implements OnInit {
|
||||
format: 'yyyy-MM-dd',
|
||||
} as SFDateWidgetSchema,
|
||||
},
|
||||
abnormalCause: {
|
||||
transactionNumber: {
|
||||
title: '流水号',
|
||||
type: 'string',
|
||||
ui: {
|
||||
placeholder: '请输入',
|
||||
},
|
||||
},
|
||||
abnormalCause1: {
|
||||
businessNumber: {
|
||||
title: '交易单号',
|
||||
type: 'string',
|
||||
ui: {
|
||||
placeholder: '请输入',
|
||||
},
|
||||
},
|
||||
bankType: {
|
||||
tradeType: {
|
||||
type: 'string',
|
||||
title: '交易类型',
|
||||
default: '',
|
||||
@ -90,7 +107,7 @@ export class PartnerAccountManagementAccountDetailComponent implements OnInit {
|
||||
},
|
||||
},
|
||||
},
|
||||
bankType1: {
|
||||
incomeType: {
|
||||
type: 'string',
|
||||
title: '收支类型',
|
||||
default: '',
|
||||
@ -118,16 +135,16 @@ export class PartnerAccountManagementAccountDetailComponent implements OnInit {
|
||||
*/
|
||||
initST() {
|
||||
this.columns = [
|
||||
{ title: '交易时间', index: 'carNo', className: 'text-center', width: 200 },
|
||||
{ title: '流水号', render: 'carModelLabel', className: 'text-center', width: 150 },
|
||||
{ title: '交易类型', render: 'carModelLabel', className: 'text-center', width: 200 },
|
||||
{ title: '交易单号', render: 'carModelLabel', className: 'text-center', width: 120 },
|
||||
{ title: '备注', index: 'remark', className: 'text-center', width: 180 },
|
||||
{ title: '收支类型', render: 'approvalStatus1', className: 'text-center', width: 180 },
|
||||
{ title: '交易金额', render: 'amount', className: 'text-right', width: 180 },
|
||||
{ title: '账户余额', render: 'approvalStatus3', className: 'text-right', width: 180 },
|
||||
{ title: '付款方', index: 'approvalStatus4', className: 'text-center', width: 200 },
|
||||
{ title: '收款方', index: 'approvalStatus4', className: 'text-center', width: 120 },
|
||||
{ title: '交易时间', index: 'createTime', className: 'text-center', width: 200 },
|
||||
{ title: '流水号', index: 'transactionNumber', className: 'text-center', width: 180 },
|
||||
{ title: '交易类型', index: 'tradeTypeLabel', className: 'text-center', width: 150 },
|
||||
{ title: '交易单号', index: 'businessNumber', className: 'text-center', width: 180 },
|
||||
{ title: '备注', index: 'tradeContent', className: 'text-center', width: 180 },
|
||||
{ title: '收支类型', index: 'incomeTypeLabel', className: 'text-center', width: 180 },
|
||||
{ title: '交易金额', render: 'amount', className: 'text-center', width: 150 },
|
||||
{ title: '账户余额', render: 'accountBalance', className: 'text-center', width: 150 },
|
||||
{ title: '付款方', index: 'payName', className: 'text-center', width: 200 },
|
||||
{ title: '收款方', index: 'payeeName', className: 'text-center', width: 200 },
|
||||
];
|
||||
}
|
||||
resetSF() {
|
||||
@ -145,6 +162,34 @@ export class PartnerAccountManagementAccountDetailComponent implements OnInit {
|
||||
this._$expand = !this._$expand;
|
||||
this.sf?.setValue('/_$expand', this._$expand);
|
||||
}
|
||||
/**
|
||||
* 头部汇总
|
||||
*/
|
||||
getHeaderSummary() {
|
||||
const params = {
|
||||
roleId: this.roleId,
|
||||
ltdId: this.ltdId,
|
||||
channelSource: this.channelSource,
|
||||
bankType: this.bankType
|
||||
};
|
||||
this.service.request(this.service.$api_get_account_detail_header_summary, { ...params }).subscribe(res => {
|
||||
if (res) {
|
||||
this.headerTotalInfo = res;
|
||||
console.log(res);
|
||||
}
|
||||
})
|
||||
}
|
||||
/**
|
||||
* 脚部汇总
|
||||
*/
|
||||
getFooterSummary() {
|
||||
this.service.request(this.service.$api_get_account_detail_footer_summary, this.reqParams).subscribe(res => {
|
||||
if (res) {
|
||||
this.footerTotalInfo = res;
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
search() {
|
||||
this.st.load(1);
|
||||
@ -154,4 +199,6 @@ export class PartnerAccountManagementAccountDetailComponent implements OnInit {
|
||||
goBack() {
|
||||
window.history.go(-1);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -17,22 +17,19 @@
|
||||
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
|
||||
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
|
||||
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }"
|
||||
[loading]="service.http.loading">
|
||||
<ng-template st-row="approvalStatus" let-item>
|
||||
<a [routerLink]="'/partner/account-management/am/recorded/detail/'+item?.id">{{item.yskmoney}}</a>
|
||||
[loading]="service.http.loading" multiSort>
|
||||
<ng-template st-row="allBalance" let-item>
|
||||
<div class="text-right">{{item.allBalance | currency:' '}}</div>
|
||||
</ng-template>
|
||||
<ng-template st-row="approvalStatus1" let-item>
|
||||
<div class="text-right">{{item.approvalStatus1 | currency:' '}}</div>
|
||||
</ng-template>
|
||||
<ng-template st-row="approvalStatus2" let-item>
|
||||
<ng-template st-row="unEntryAmount" let-item>
|
||||
<a class="text-right text-blue-dark"
|
||||
[routerLink]="'/partner/account-management/am/recorded/detail/'+item?.id">{{item.yskmoney | currency:'
|
||||
[routerLink]="'/partner/account-management/am/recorded/detail/'+item?.roleId">{{item.unEntryAmount | currency:'
|
||||
'}}</a>
|
||||
</ng-template>
|
||||
|
||||
<ng-template st-row="approvalStatus3" let-item>
|
||||
<div class="text-right">{{item.yskmoney | currency:' '}}</div>
|
||||
<ng-template st-row="availableBalance" let-item>
|
||||
<div class="text-right">{{item.availableBalance | currency:' '}}</div>
|
||||
</ng-template>
|
||||
|
||||
|
||||
</st>
|
||||
</nz-card>
|
||||
|
||||
@ -36,14 +36,14 @@ export class PartnerAccountManagementListComponent implements OnInit {
|
||||
initSF() {
|
||||
this.schema = {
|
||||
properties: {
|
||||
abnormalCause: {
|
||||
userName: {
|
||||
title: '合伙人名称',
|
||||
type: 'string',
|
||||
ui: {
|
||||
placeholder: '请输入',
|
||||
},
|
||||
},
|
||||
abnormalCause1: {
|
||||
phone: {
|
||||
title: '手机号',
|
||||
type: 'string',
|
||||
ui: {
|
||||
@ -59,14 +59,21 @@ export class PartnerAccountManagementListComponent implements OnInit {
|
||||
*/
|
||||
initST() {
|
||||
this.columns = [
|
||||
{ title: '合伙人名称', index: 'carNo', className: 'text-center', width: 300 },
|
||||
{ title: '手机号', render: 'carModelLabel', className: 'text-center', width: 200 },
|
||||
{ title: '账户总额(元)', render: 'approvalStatus1', className: 'text-right', sort: true, width: 200 },
|
||||
{ title: '待入账余额(元)', render: 'approvalStatus2', className: 'text-right', sort: true, width: 200 },
|
||||
{ title: '可用余额(元)', render: 'approvalStatus3', className: 'text-right', sort: true, width: 250 },
|
||||
{ title: '虚拟账户', index: 'approvalStatus4', className: 'text-center', width: 200 },
|
||||
{ title: '合伙人名称', index: 'userName', className: 'text-center', width: 250 },
|
||||
{ title: '手机号', index: 'phone', className: 'text-center', width: 200 },
|
||||
{
|
||||
title: '账户总额(元)', index: 'allBalance', className: 'text-right', sort: true, width: 150, type: 'currency',
|
||||
},
|
||||
{
|
||||
title: '待入账余额(元)', render: 'unEntryAmount', className: 'text-right', width: 150,
|
||||
},
|
||||
{
|
||||
title: '可用余额(元)', index: 'availableBalance', className: 'text-right', sort: true, width: 150, type: 'currency'
|
||||
},
|
||||
{ title: '虚拟账户', index: 'virtualAccount', className: 'text-center', width: 220 },
|
||||
{
|
||||
title: '操作',
|
||||
width: 150,
|
||||
buttons: [
|
||||
{
|
||||
text: '虚拟账户明细',
|
||||
@ -89,18 +96,17 @@ export class PartnerAccountManagementListComponent implements OnInit {
|
||||
* @param _record 当前行信息
|
||||
*/
|
||||
viewVirtual(_record: any) {
|
||||
|
||||
const modalRef = this.modal.create({
|
||||
nzTitle: '虚拟账户明细',
|
||||
nzContent: PartnerAccountManagementVirtualAccountDetailComponent,
|
||||
nzComponentParams: {
|
||||
id: _record?.id
|
||||
roleId: _record?.roleId,
|
||||
},
|
||||
nzWidth: '85%',
|
||||
nzFooter: null
|
||||
});
|
||||
modalRef.afterClose.subscribe(result => {
|
||||
});
|
||||
// modalRef.afterClose.subscribe(result => {
|
||||
// });
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -6,22 +6,25 @@
|
||||
</ng-template>
|
||||
</page-header-wrapper>
|
||||
<nz-card>
|
||||
<sv-container layout="vertical" [noColon]="true" col="4">
|
||||
<sv-container layout="vertical" [noColon]="true" col="5">
|
||||
<sv [label]="labelTpl">
|
||||
<b class="text-md ">{{accountInfo?.company}}</b>
|
||||
<b class="text-md ">{{summaryObj?.company}}</b>
|
||||
</sv>
|
||||
<sv label="可用余额">
|
||||
{{totalInfo?.balance |currency}}
|
||||
<sv label="返佣总额">
|
||||
{{summaryObj?.totalRebate |currency}}
|
||||
</sv>
|
||||
<sv label="收入金额">
|
||||
{{totalInfo?.income |currency}}
|
||||
<sv label="已入账金额">
|
||||
{{summaryObj?.totalRebate |currency}}
|
||||
</sv>
|
||||
<sv label="支出金额">
|
||||
{{totalInfo?.spending |currency}}
|
||||
<sv label="代缴个税">
|
||||
{{summaryObj?.taxPersonalSum |currency}}
|
||||
</sv>
|
||||
<sv label="待入账金额">
|
||||
{{summaryObj?.waitRecordedAmount |currency}}
|
||||
</sv>
|
||||
</sv-container>
|
||||
<ng-template #labelTpl>
|
||||
<b class="text-md" style="color: black;">{{accountInfo?.name}} {{accountInfo?.phone}}</b>
|
||||
<b class="text-md" style="color: black;">{{summaryObj?.name}}</b>
|
||||
</ng-template>
|
||||
</nz-card>
|
||||
<nz-card>
|
||||
@ -29,7 +32,7 @@
|
||||
<sf mode="search" #sf [schema]="schema" [ui]="ui" (formSubmit)="search()" (formReset)="resetSF()"></sf>
|
||||
</div>
|
||||
<div class="table-content">
|
||||
<st #st [data]="service.$api_get_account_management_page " [columns]="columns"
|
||||
<st #st [data]="service.$api_get_invoice_detail_page " [columns]="columns"
|
||||
[req]="{ method: 'POST', allInBody: true, reName: {pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
|
||||
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
|
||||
[page]="{ show: true, showSize: true, pageSizes: [5,10, 20, 50, 100, 200, 500] }"
|
||||
@ -40,11 +43,11 @@
|
||||
</ng-template>
|
||||
</st>
|
||||
<div class="total-footer text-md" *ngIf="st?.list?.length !== 0 ">
|
||||
合计 <label class="text-red-dark">{{ totalInfo?.total }}</label> 项,收入 <label
|
||||
合计 <label class="text-red-dark">{{ summaryObj?.total }}</label> 项,收入 <label
|
||||
class="text-red-dark font-weight-bold">{{
|
||||
totalInfo?.income | currency
|
||||
summaryObj?.income | currency
|
||||
}}</label>,支出 <label class="text-red-dark font-weight-bold">{{
|
||||
totalInfo?.spending | currency }}</label>
|
||||
summaryObj?.spending | currency }}</label>
|
||||
</div>
|
||||
</div>
|
||||
</nz-card>
|
||||
@ -52,13 +55,19 @@
|
||||
<nz-modal [(nzVisible)]="showBillDetail" nzTitle="账户明细" [nzFooter]="null" (nzOnCancel)="handleCancel()" nzWidth="700px">
|
||||
<div *nzModalContent>
|
||||
<div class="mb-sm">
|
||||
<span class="mr-xxl text-md font-weight-bold"><label>网络货运人:</label>{{accountInfo?.name}}</span>
|
||||
<span class="text-md font-weight-bold"><label>返佣总额(元):</label>{{totalInfo?.spending |currency: ' '}}</span>
|
||||
<span class="mr-xxl text-md font-weight-bold"><label>网络货运人:</label>{{detailRecord?.ltdName}}</span>
|
||||
<span class="text-md font-weight-bold"><label>返佣总额(元):</label>{{detailRecord?.totalRebate |currency: ' '}}</span>
|
||||
</div>
|
||||
<st #st [data]="service.$api_get_account_management_page " [columns]="billDetailColumns"
|
||||
[res]="{ reName: { list: 'data' } }" [req]="{ method: 'POST', allInBody: true, params:{}}" [page]="{show:false}">
|
||||
<ng-template st-row="amount" let-item>
|
||||
<div *ngIf="item.paAccount">{{item?.amount |currency :' '}}</div>
|
||||
<st #st [data]="billDetailList " [columns]="billDetailColumns" [res]="{ reName: { list: 'data' } }"
|
||||
[req]="{ method: 'POST', allInBody: true, params:billDetailReqParams}" [page]="{show:false}">
|
||||
<ng-template st-row="month" let-item>
|
||||
<div>
|
||||
<span>{{item?.year }}年</span>
|
||||
<span>{{item?.month }}月</span>
|
||||
</div>
|
||||
</ng-template>
|
||||
<ng-template st-row="profitAmountSum" let-item>
|
||||
<div>{{item?.profitAmountSum |currency :' '}}</div>
|
||||
</ng-template>
|
||||
|
||||
</st>
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { Router } from '@angular/router';
|
||||
import { ActivatedRoute, Router } from '@angular/router';
|
||||
import { STColumn, STComponent } from '@delon/abc/st';
|
||||
import { SFComponent, SFDateWidgetSchema, SFSchema, SFUISchema, Widget } from '@delon/form';
|
||||
import { ModalHelper, _HttpClient } from '@delon/theme';
|
||||
@ -10,17 +10,16 @@ import { AccountManagemantService } from '../../services/account-managemant.serv
|
||||
templateUrl: './recorded-detail.component.html',
|
||||
})
|
||||
export class PartnerAccountManagementRecordedDetailComponent implements OnInit {
|
||||
totalInfo: any = {
|
||||
balance: 0,
|
||||
income: 1500,
|
||||
spending: 2400,
|
||||
total: 186
|
||||
summaryObj: any = {
|
||||
waitRecordedAmount: 0,
|
||||
totalRebate: 0,
|
||||
taxPersonalSum: 0,
|
||||
recordedAmount: 0,
|
||||
ltdName: '',
|
||||
taxno: ''
|
||||
};
|
||||
accountInfo = {
|
||||
name: '张三',
|
||||
phone: '13812345678',
|
||||
company: '天津怡亚通物流科技有限公司(平安)'
|
||||
}
|
||||
|
||||
detailRecord: any = {};
|
||||
|
||||
url = `/user`;
|
||||
schema: SFSchema = {};
|
||||
@ -32,12 +31,17 @@ export class PartnerAccountManagementRecordedDetailComponent implements OnInit {
|
||||
columns: STColumn[] = [];
|
||||
billDetailColumns: STColumn[] = [];
|
||||
showBillDetail = false;
|
||||
billDetailList = [];
|
||||
roleId = '';
|
||||
|
||||
constructor(public service: AccountManagemantService, public router: Router) { }
|
||||
constructor(public service: AccountManagemantService, public router: Router, public ar: ActivatedRoute) {
|
||||
this.roleId = this.ar.snapshot.params.id;
|
||||
|
||||
}
|
||||
|
||||
|
||||
get reqParams() {
|
||||
return { ...this.sf?.value };
|
||||
return { ...this.sf?.value, partnerId: this.roleId };
|
||||
}
|
||||
|
||||
get billDetailReqParams() {
|
||||
@ -46,7 +50,7 @@ export class PartnerAccountManagementRecordedDetailComponent implements OnInit {
|
||||
ngOnInit(): void {
|
||||
this.initSF();
|
||||
this.initST();
|
||||
this.initBillDetailST();
|
||||
this.getInvoiceSummary();
|
||||
}
|
||||
|
||||
initSF() {
|
||||
@ -71,13 +75,13 @@ export class PartnerAccountManagementRecordedDetailComponent implements OnInit {
|
||||
*/
|
||||
initST() {
|
||||
this.columns = [
|
||||
{ title: '网络货运人', index: 'carNo', className: 'text-center', width: 200 },
|
||||
{ title: '银行类型', render: 'carModelLabel', className: 'text-center', width: 150 },
|
||||
{ title: '虚拟账户', render: 'carModelLabel', className: 'text-center', width: 200 },
|
||||
{ title: '返佣总额(元)', render: 'carModelLabel', className: 'text-center', width: 120 },
|
||||
{ title: '已入账金额(元)', index: 'remark', className: 'text-center', width: 180 },
|
||||
{ title: '代缴个税(元)', render: 'approvalStatus1', className: 'text-center', width: 180 },
|
||||
{ title: '待入账金额(元)', render: 'amount', className: 'text-right', width: 180 },
|
||||
{ title: '网络货运人', index: 'ltdName', className: 'text-center', width: 200 },
|
||||
{ title: '银行类型', render: 'bankTypeLabel', className: 'text-center', width: 150 },
|
||||
{ title: '虚拟账户', render: 'fictitiousAccount', className: 'text-center', width: 200 },
|
||||
{ title: '返佣总额(元)', index: 'totalRebate', className: 'text-center', width: 120, type: 'currency' },
|
||||
{ title: '已入账金额(元)', index: 'recordedAmount', className: 'text-center', width: 180, type: 'currency' },
|
||||
{ title: '代缴个税(元)', index: 'taxPersonalSum', className: 'text-center', width: 180, type: 'currency' },
|
||||
{ title: '待入账金额(元)', index: 'waitRecordedAmount', className: 'text-right', width: 180, type: 'currency' },
|
||||
{
|
||||
title: '操作', className: 'text-center', width: 300,
|
||||
buttons: [
|
||||
@ -96,8 +100,8 @@ export class PartnerAccountManagementRecordedDetailComponent implements OnInit {
|
||||
|
||||
initBillDetailST() {
|
||||
this.billDetailColumns = [
|
||||
{ title: '账单月份', index: 'carNo', className: 'text-center', width: '40%' },
|
||||
{ title: '返佣金额(元)', render: 'amount', className: 'text-center', width: '40%' },
|
||||
{ title: '账单月份', render: 'month', className: 'text-center', width: '40%' },
|
||||
{ title: '返佣金额(元)', render: 'profitAmountSum', className: 'text-center', width: '40%' },
|
||||
{
|
||||
title: '操作', className: 'text-center', width: '20%', buttons: [
|
||||
{
|
||||
@ -122,6 +126,19 @@ export class PartnerAccountManagementRecordedDetailComponent implements OnInit {
|
||||
search() {
|
||||
this.st.load(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取账单明细
|
||||
*/
|
||||
getBillDetail(ltdId: string) {
|
||||
this.service.request(this.service.$api_get_bill_detail, { ltdId }).subscribe(res => {
|
||||
if (res) {
|
||||
this.billDetailList = res;
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
export() { }
|
||||
|
||||
/**
|
||||
@ -137,10 +154,23 @@ export class PartnerAccountManagementRecordedDetailComponent implements OnInit {
|
||||
* @param record 当前行
|
||||
*/
|
||||
viewAccountDetail(record: any) {
|
||||
this.billDetailColumns = [];
|
||||
this.showBillDetail = true;
|
||||
this.initBillDetailST();
|
||||
this.getBillDetail(record?.ltdId);
|
||||
}
|
||||
|
||||
getInvoiceSummary() {
|
||||
this.service.request(this.service.$api_get_invoice_summary, { partnerId: this.roleId }).subscribe(res => {
|
||||
if (res) {
|
||||
this.summaryObj = res;
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
handleCancel() {
|
||||
this.showBillDetail = false;
|
||||
|
||||
}
|
||||
goBack() {
|
||||
window.history.go(-1);
|
||||
|
||||
@ -14,14 +14,25 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-sm">
|
||||
<st #st [data]="amService.$api_get_account_management_page" [columns]="columns" [columns]="columns"
|
||||
<st #st [data]="service. $api_get_virtual_detail_page" [columns]="columns" [columns]="columns"
|
||||
[scroll]="{ x: '1200px' }"
|
||||
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
|
||||
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
|
||||
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }"
|
||||
[loading]="amService.http.loading"></st>
|
||||
[loading]="service.http.loading">
|
||||
<ng-template st-row="allBalance" let-item>
|
||||
<div class="text-right">
|
||||
{{item.allBalance}}
|
||||
</div>
|
||||
</ng-template>
|
||||
<ng-template st-row="availableBalance" let-item>
|
||||
<div class="text-right">
|
||||
{{item.availableBalance}}
|
||||
</div>
|
||||
</ng-template>
|
||||
</st>
|
||||
</div>
|
||||
</nz-card>
|
||||
<div class="modal-footer text-center">
|
||||
<button nz-button type="button" nzType="primary" (click)="close()">确定</button>
|
||||
<button nz-button type="button" nzType="primary" (click)="close()">确 定</button>
|
||||
</div>
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { Router } from '@angular/router';
|
||||
import { STColumn, STComponent } from '@delon/abc/st';
|
||||
import { SFComponent, SFDateWidgetSchema, SFSchema, SFUISchema } from '@delon/form';
|
||||
import { _HttpClient } from '@delon/theme';
|
||||
@ -17,13 +18,16 @@ export class PartnerAccountManagementVirtualAccountDetailComponent implements On
|
||||
@ViewChild('st') private readonly st!: STComponent;
|
||||
@ViewChild('sf') private readonly sf!: SFComponent;
|
||||
columns: STColumn[] = [];
|
||||
id = '';
|
||||
roleId = '';
|
||||
_$expand = false;
|
||||
record = {};
|
||||
|
||||
constructor(public shipperservice: ShipperBaseService, public amService: AccountManagemantService, private modalRef: NzModalRef) { }
|
||||
constructor(public shipperservice: ShipperBaseService, public service: AccountManagemantService,
|
||||
private modalRef: NzModalRef, public router: Router) {
|
||||
}
|
||||
|
||||
get reqParams() {
|
||||
return { ...this.sf?.value };
|
||||
return { ...this.sf?.value, roleId: this.roleId };
|
||||
}
|
||||
ngOnInit(): void {
|
||||
this.initSF();
|
||||
@ -36,21 +40,21 @@ export class PartnerAccountManagementVirtualAccountDetailComponent implements On
|
||||
_$expand: {
|
||||
type: 'boolean', ui: { hidden: true }
|
||||
},
|
||||
abnormalCause: {
|
||||
userName: {
|
||||
title: '合伙人名称',
|
||||
type: 'string',
|
||||
ui: {
|
||||
placeholder: '请输入',
|
||||
},
|
||||
},
|
||||
abnormalCause1: {
|
||||
phone: {
|
||||
title: '手机号',
|
||||
type: 'string',
|
||||
ui: {
|
||||
placeholder: '请输入',
|
||||
},
|
||||
},
|
||||
abnormalCause2: {
|
||||
ltdId: {
|
||||
title: '网络货运人',
|
||||
type: 'string',
|
||||
default: '',
|
||||
@ -79,7 +83,7 @@ export class PartnerAccountManagementVirtualAccountDetailComponent implements On
|
||||
},
|
||||
},
|
||||
},
|
||||
abnormalCause3: {
|
||||
virtualAccount: {
|
||||
title: '虚拟账户',
|
||||
type: 'string',
|
||||
ui: {
|
||||
@ -112,16 +116,15 @@ export class PartnerAccountManagementVirtualAccountDetailComponent implements On
|
||||
*/
|
||||
initST() {
|
||||
this.columns = [
|
||||
{ title: '合伙人', index: 'carNo', className: 'text-center', width: 200 },
|
||||
{ title: '手机号', render: 'carModelLabel', className: 'text-center', width: 150 },
|
||||
{ title: '网络货运人', render: 'carModelLabel', className: 'text-center', width: 200 },
|
||||
{ title: '银行类型', render: 'carModelLabel', className: 'text-center', width: 120 },
|
||||
{ title: '虚拟账户', render: 'carModelLabel', className: 'text-center', width: 180 },
|
||||
{ title: '可用余额', render: 'approvalStatus1', className: 'text-right', width: 180 },
|
||||
{ title: '账户总余额', render: 'approvalStatus2', className: 'text-right', width: 180 },
|
||||
{ title: '可用余额(元)', render: 'approvalStatus3', className: 'text-right', width: 180 },
|
||||
{ title: '创建时间', index: 'approvalStatus4', className: 'text-center', width: 200 },
|
||||
{ title: '状态', index: 'approvalStatus4', className: 'text-center', width: 120 },
|
||||
{ title: '合伙人', index: 'name', className: 'text-center', width: 200 },
|
||||
{ title: '手机号', index: 'phone', className: 'text-center', width: 150 },
|
||||
{ title: '网络货运人', index: 'ltdName', className: 'text-center', width: 200 },
|
||||
{ title: '银行类型', index: 'bankTypeLabel', className: 'text-center', width: 120 },
|
||||
{ title: '虚拟账户', index: 'virtualAccount', className: 'text-center', width: 180 },
|
||||
{ title: '可用余额', render: 'availableBalance', className: 'text-center', width: 180 },
|
||||
{ title: '账户总余额', render: 'allBalance', className: 'text-center', width: 180 },
|
||||
{ title: '创建时间', index: 'createTime', className: 'text-center', width: 200 },
|
||||
{ title: '状态', index: 'stateDeletedLabel', className: 'text-center', width: 120 },
|
||||
{
|
||||
title: '操作',
|
||||
width: 120,
|
||||
@ -164,7 +167,14 @@ export class PartnerAccountManagementVirtualAccountDetailComponent implements On
|
||||
* @param _record 当前行信息
|
||||
*/
|
||||
viewDetail(_record: any) {
|
||||
window.open(location.origin + `/#/partner/account-management/am/detail/${_record?.id}`);
|
||||
// this.router.navigate([`/partner/account-management/am/detail/${_record?.roleId}`], {
|
||||
// queryParams: {
|
||||
// channelSource: _record?.accountType,
|
||||
// bankType: _record?.bankType,
|
||||
// ltdId: _record?.ltdId
|
||||
// }
|
||||
// });
|
||||
window.open(location.origin + `/#/partner/account-management/am/detail/${_record?.roleId}?ltdId=${_record?.ltdId}&channelSource=${_record?.accountType}&bankType=${_record?.bankType}`);
|
||||
}
|
||||
|
||||
close() {
|
||||
|
||||
@ -41,7 +41,7 @@
|
||||
</div>
|
||||
</ng-template>
|
||||
|
||||
<st #st [data]="service.$api_get_refund_page" [columns]="columns" [req]="{ process: beforeReq }"
|
||||
<st #st [data]="amService.$api_get_withdraw_record_page" [columns]="columns" [req]="{ process: beforeReq }"
|
||||
[loading]="service.http.loading" [scroll]="{ x:'1200px' }" (change)="stChange($event)"
|
||||
[res]="{ reName: { list: 'data.records', total: 'data.total' }, process: afterRes }"
|
||||
[page]="{ show: true, pageSizes: [10, 20, 50, 100, 200, 500] }">
|
||||
|
||||
@ -5,6 +5,7 @@ import { SFComponent, SFSchema, SFDateWidgetSchema } from '@delon/form';
|
||||
import { NzModalService } from 'ng-zorro-antd/modal';
|
||||
import { FreightAccountService } from 'src/app/routes/financial-management/services/freight-account.service';
|
||||
import Big from 'src/app/shared/utils/deal-precision';
|
||||
import { AccountManagemantService } from '../../services/account-managemant.service';
|
||||
|
||||
|
||||
@Component({
|
||||
@ -27,7 +28,7 @@ export class PartnerAccountManagementWithdrawalsRecordComponent implements OnIni
|
||||
refundStatus: any = '';
|
||||
|
||||
msg = '';
|
||||
constructor(public service: FreightAccountService, private nzModalService: NzModalService, private router: Router, public ar: ActivatedRoute) { }
|
||||
constructor(public service: FreightAccountService, public amService: AccountManagemantService, private nzModalService: NzModalService, private router: Router, public ar: ActivatedRoute) { }
|
||||
|
||||
ngOnInit(): void { }
|
||||
|
||||
@ -280,13 +281,13 @@ export class PartnerAccountManagementWithdrawalsRecordComponent implements OnIni
|
||||
{ title: '提现单号', index: 'refundApplyCode', width: 180, className: 'text-center' },
|
||||
{ title: '网络货运人', index: 'ltdName', width: 220, className: 'text-center' },
|
||||
{ title: '银行类型', index: 'bankTypeLabel', width: 100, className: 'text-center' },
|
||||
{ title: '账户类型', index: 'bankTypeLabel', width: 100, className: 'text-center' },
|
||||
{ title: '账户类型', index: 'accountTypeLabel', width: 100, className: 'text-center' },
|
||||
{ title: '账户名称', index: 'bankAccountName', width: 220, className: 'text-center' },
|
||||
{ title: '虚拟账户', index: 'virtualAccount', width: 180, className: 'text-center' },
|
||||
{
|
||||
title: '提现金额',
|
||||
index: 'amount',
|
||||
width: 150,
|
||||
width: 200,
|
||||
type: 'widget',
|
||||
className: 'text-right',
|
||||
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.amount }) }
|
||||
|
||||
@ -6,7 +6,16 @@ import { BaseService } from '@shared';
|
||||
})
|
||||
export class AccountManagemantService extends BaseService {
|
||||
|
||||
$api_get_account_management_page = `/api/fcc/ficoBrmH/list/page`;
|
||||
$api_get_account_management_page = `/api/bpc/accountBalancePartner/getPartnerAccountBalanceByOperator`; // 账户管理
|
||||
$api_get_virtual_detail_page = `/api/bpc/accountBalancePartner/getPartnerAccountBalanceInfoByOperator`;//虚拟账户明细
|
||||
$api_get_withdraw_record_page = `/api/fcc/refundApplicationOBC/list/partnerPage`;// 提现记录
|
||||
$api_get_account_detail_page = `/api/bpc/accountBalancePartner/getAccountBalancePartnerByOperatorPage`;// 账户明细
|
||||
$api_get_account_detail_footer_summary = `/api/bpc/accountBalancePartner/getAccountBalancePartnerIncomeDetailByOperator`;// 账户明细脚部汇总
|
||||
$api_get_account_detail_header_summary = `/api/bpc/accountBalancePartner/getAccountBalancePartnerAmountByOperator`;// 账户明细头部汇总
|
||||
$api_get_bill_detail = `/api/bpc/partnerIncomeDetail/findPartnerWaitIncomeByOperator`; // 查看账单明细
|
||||
$api_get_invoice_summary = `/api/bpc/partnerInvoiceEntry/oprationEntrySummary`; // 入账明细汇总
|
||||
$api_get_invoice_detail_page = `/api/bpc/partnerInvoiceEntry/oprationEntryDetail`; // 待入账明细列表
|
||||
|
||||
constructor(public injector: Injector) {
|
||||
super(injector)
|
||||
}
|
||||
|
||||
@ -0,0 +1,46 @@
|
||||
|
||||
<page-header-wrapper [title]="''" [logo]="logo" [content]="headerContent">
|
||||
<ng-template #logo>
|
||||
<button nz-button nz-tooltip nzTooltipTitle="返回上一页" (click)="goBack()">
|
||||
<i nz-icon nzType="left" nzTheme="outline"></i>
|
||||
</button>
|
||||
</ng-template>
|
||||
<ng-template #headerContent>
|
||||
<div nz-row class="head-box">
|
||||
<div nz-col nzSpan="1">
|
||||
<img src="./assets/images/usercenter/拉货车.png" alt="" />
|
||||
</div>
|
||||
<div nz-col nzSpan="11" class="pl-lg">
|
||||
<div class="right-h">深圳市XXXXXXX有限公司</div>
|
||||
<div class="right-s">91440300357887492H</div>
|
||||
<sv-container col="2" >
|
||||
<sv label="联系人"> </sv>
|
||||
<sv label="注册时间"> </sv>
|
||||
<sv label="合同有效期"> </sv>
|
||||
<sv label="运营主体"> </sv>
|
||||
</sv-container>
|
||||
</div>
|
||||
<div nz-col nzSpan="10">
|
||||
<div class="left-rt">待审核</div>
|
||||
<div class="left-rb">
|
||||
<button nz-button (click) ="reject()">拒绝</button>
|
||||
<button nz-button nzType="primary" (click) ="approve()">通过</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</ng-template>
|
||||
</page-header-wrapper>
|
||||
<nz-card nzTitle="建议反馈">
|
||||
<div nz-row>
|
||||
<div nz-col nzSpan="12">
|
||||
<sv-container col="1" labelWidth="120">
|
||||
<sv label="问题类型"> </sv>
|
||||
<sv label="描述或内容建议"> </sv>
|
||||
<sv label="图片"> </sv>
|
||||
<sv label="提交时间"> </sv>
|
||||
</sv-container>
|
||||
</div>
|
||||
</div>
|
||||
</nz-card>
|
||||
|
||||
|
||||
@ -0,0 +1,29 @@
|
||||
:host {
|
||||
.head-box {
|
||||
img {
|
||||
width : 80px;
|
||||
height : 80px;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.right-h {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.right-s {
|
||||
color: #7f7f7f;
|
||||
}
|
||||
|
||||
.left-rt {
|
||||
font-weight: bold;
|
||||
font-size : 16px;
|
||||
text-align : right;
|
||||
}
|
||||
|
||||
.left-rb {
|
||||
display : flex;
|
||||
justify-content: flex-end;
|
||||
padding-top : 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,71 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { ActivatedRoute, Router } from '@angular/router';
|
||||
import { STColumn } from '@delon/abc/st';
|
||||
import { _HttpClient } from '@delon/theme';
|
||||
import { NzMessageService } from 'ng-zorro-antd/message';
|
||||
import { NzModalService } from 'ng-zorro-antd/modal';
|
||||
import { ParterClaimAuditListChannelApproveComponent } from '../../../claim-audit/components/channel-approve/channel-approve.component';
|
||||
import { ParterClaimAuditListChannelRejectComponent } from '../../../claim-audit/components/channel-reject/channel-reject.component';
|
||||
import { AdviceFeedbackService } from '../../services/advice-feedback.service';
|
||||
|
||||
// import { ParterClaimAuditListChannelApproveComponent } from '../channel-approve/channel-approve.component';
|
||||
// import { ParterClaimAuditListChannelRejectComponent } from '../channel-reject/channel-reject.component';
|
||||
|
||||
@Component({
|
||||
selector: 'app-parter-feedback-detail-detail',
|
||||
templateUrl: './feedback-detail.component.html',
|
||||
styleUrls: ['./feedback-detail.component.less']
|
||||
})
|
||||
export class ParterAdviceFeedbackDetailComponent implements OnInit {
|
||||
id = this.route.snapshot.queryParams.id;
|
||||
i: any;
|
||||
imges: any;
|
||||
isVisible = false;
|
||||
|
||||
constructor(
|
||||
private route: ActivatedRoute,
|
||||
private msgSrv: NzMessageService,
|
||||
public service: AdviceFeedbackService,
|
||||
private modalService: NzModalService,
|
||||
private router: Router
|
||||
) {}
|
||||
|
||||
ngOnInit(): void {
|
||||
this.initData();
|
||||
}
|
||||
|
||||
initData() {
|
||||
// this.service.request(this.service.$api_getBulkBillDetail, { id: this.id }).subscribe(res => {
|
||||
// if (res) {
|
||||
// this.i = res;
|
||||
//
|
||||
// }
|
||||
// });
|
||||
}
|
||||
|
||||
approve() {
|
||||
const modalRef = this.modalService.create({
|
||||
nzTitle: '同意',
|
||||
nzWidth: 700,
|
||||
nzContent: ParterClaimAuditListChannelApproveComponent,
|
||||
nzComponentParams: {
|
||||
i: this.i
|
||||
},
|
||||
nzFooter: null
|
||||
});
|
||||
}
|
||||
reject() {
|
||||
const modalRef = this.modalService.create({
|
||||
nzTitle: '拒绝',
|
||||
nzWidth: 700,
|
||||
nzContent: ParterClaimAuditListChannelRejectComponent,
|
||||
nzComponentParams: {
|
||||
i: this.i
|
||||
},
|
||||
nzFooter: null
|
||||
});
|
||||
}
|
||||
goBack() {
|
||||
window.history.go(-1);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,47 @@
|
||||
<page-header-wrapper [title]="''"></page-header-wrapper>
|
||||
<!-- 搜索表单 -->
|
||||
<nz-card>
|
||||
<div nz-row nzGutter="8">
|
||||
<!-- 查询字段小于或等于3个时,不显示伸缩按钮 -->
|
||||
<div nz-col nzSpan="24" *ngIf="queryFieldCount <= 4">
|
||||
<sf
|
||||
#sf
|
||||
[schema]="schema"
|
||||
[ui]="ui"
|
||||
[mode]="'search'"
|
||||
[loading]="service.http.loading"
|
||||
(formSubmit)="search()"
|
||||
(formReset)="resetSF()"
|
||||
></sf>
|
||||
</div>
|
||||
|
||||
<!-- 查询字段大于3个时,根据展开状态调整布局 -->
|
||||
<ng-container *ngIf="queryFieldCount > 4">
|
||||
<div nz-col [nzSpan]="_$expand ? 24 : 18">
|
||||
<sf #sf [schema]="schema" [ui]="ui" [compact]="true" [button]="'none'"></sf>
|
||||
</div>
|
||||
<div nz-col [nzSpan]="_$expand ? 24 : 6" [class.text-right]="_$expand">
|
||||
<button nz-button nzType="primary" [disabled]="!sf.valid" (click)="search()" >查询</button>
|
||||
<button nz-button (click)="resetSF()" >重置</button>
|
||||
<button nz-button nzType="link" (click)="expandToggle()">
|
||||
{{ !_$expand ? '展开' : '收起' }}
|
||||
<i nz-icon [nzType]="!_$expand ? 'down' : 'up'"></i>
|
||||
</button>
|
||||
</div>
|
||||
</ng-container>
|
||||
</div>
|
||||
</nz-card>
|
||||
|
||||
<nz-card>
|
||||
<st
|
||||
#st1
|
||||
[data]="data"
|
||||
[columns]="columns1"
|
||||
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
|
||||
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
|
||||
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }"
|
||||
[loadingDelay]="500"
|
||||
[loading]="service.http.loading"
|
||||
>
|
||||
</st>
|
||||
</nz-card>
|
||||
@ -0,0 +1,228 @@
|
||||
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { ActivatedRoute, Router } from '@angular/router';
|
||||
import { STColumn, STComponent, STData, STRequestOptions } from '@delon/abc/st';
|
||||
import { SFComponent, SFSchema, SFUISchema } from '@delon/form';
|
||||
import { processSingleSort } from '@shared';
|
||||
import { NzModalService } from 'ng-zorro-antd/modal';
|
||||
import { AdviceFeedbackService } from '../../services/advice-feedback.service';
|
||||
|
||||
@Component({
|
||||
selector: 'app-parter-advice-feedback',
|
||||
templateUrl: './list.component.html'
|
||||
})
|
||||
export class ParterAdviceFeedbackListComponent implements OnInit {
|
||||
schema: SFSchema = {};
|
||||
columns1!: STColumn[];
|
||||
columns2!: STColumn[];
|
||||
@ViewChild('st1', { static: false })
|
||||
st1!: STComponent;
|
||||
ui!: SFUISchema;
|
||||
@ViewChild('sf', { static: false })
|
||||
sf!: SFComponent;
|
||||
_$expand = false;
|
||||
selectedIndex = 0;
|
||||
|
||||
data=[{name1:1111}]
|
||||
constructor(
|
||||
public router: Router,
|
||||
public ar: ActivatedRoute,
|
||||
public service: AdviceFeedbackService,
|
||||
private modalService: NzModalService
|
||||
) {}
|
||||
|
||||
/**
|
||||
* 查询参数
|
||||
*/
|
||||
get reqParams() {
|
||||
return { ...this.sf?.value };
|
||||
}
|
||||
/**
|
||||
* 查询字段个数
|
||||
*/
|
||||
get queryFieldCount(): number {
|
||||
return Object.keys(this.schema?.properties || {}).length;
|
||||
}
|
||||
/**
|
||||
* 伸缩查询条件
|
||||
*/
|
||||
expandToggle(): void {
|
||||
this._$expand = !this._$expand;
|
||||
this.sf?.setValue('/_$expand', this._$expand);
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
this.initSF();
|
||||
this.initST1();
|
||||
this.initST2();
|
||||
}
|
||||
|
||||
initSF() {
|
||||
this.schema = {
|
||||
properties: {
|
||||
_$expand: { type: 'boolean', ui: { hidden: true } },
|
||||
name: {
|
||||
type: 'string',
|
||||
title: '提交人'
|
||||
},
|
||||
name1: {
|
||||
type: 'string',
|
||||
title: '企业管理员'
|
||||
},
|
||||
name2: {
|
||||
type: 'string',
|
||||
title: '角色'
|
||||
},
|
||||
name3: {
|
||||
type: 'string',
|
||||
title: '问题类型',
|
||||
ui: {
|
||||
visibleIf: {
|
||||
_$expand: (value: boolean) => value
|
||||
}
|
||||
}
|
||||
},
|
||||
name4: {
|
||||
type: 'string',
|
||||
title: '状态',
|
||||
ui: {
|
||||
visibleIf: {
|
||||
_$expand: (value: boolean) => value
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
};
|
||||
this.ui = {
|
||||
'*': {
|
||||
grid: { span: 8, gutter: 4 }
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
initST1() {
|
||||
this.columns1 = [
|
||||
{
|
||||
title: '提交人',
|
||||
index: 'name1'
|
||||
},
|
||||
{
|
||||
title: '企业管理员',
|
||||
index: 'name1'
|
||||
},
|
||||
{
|
||||
title: '手机号',
|
||||
index: 'name1'
|
||||
},
|
||||
{
|
||||
title: '角色',
|
||||
index: 'name1'
|
||||
},
|
||||
{
|
||||
title: '问题类型',
|
||||
index: 'name1'
|
||||
},
|
||||
{
|
||||
title: '描述或建议',
|
||||
index: 'name1'
|
||||
},
|
||||
{
|
||||
title: '状态',
|
||||
index: 'name1'
|
||||
},
|
||||
{
|
||||
title: '提交时间',
|
||||
index: 'name1'
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
className: 'text-center',
|
||||
buttons: [
|
||||
{
|
||||
text: '详情',
|
||||
click: (_record, _modal, _instance) => this.partnerView(_record),
|
||||
},
|
||||
{
|
||||
text: '处理',
|
||||
click: (_record, _modal, _instance) => this.partnerView(_record),
|
||||
},
|
||||
]
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
initST2() {
|
||||
this.columns2 = [
|
||||
{
|
||||
title: '提交人',
|
||||
index: 'name1'
|
||||
},
|
||||
{
|
||||
title: '客户名称',
|
||||
index: 'name1'
|
||||
},
|
||||
{
|
||||
title: '认领备注',
|
||||
index: 'name1'
|
||||
},
|
||||
{
|
||||
title: 'CRM状态',
|
||||
index: 'name1'
|
||||
},
|
||||
{
|
||||
title: '平台审核状态',
|
||||
index: 'name1'
|
||||
},
|
||||
{
|
||||
title: '提交时间',
|
||||
index: 'name1'
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
className: 'text-center',
|
||||
buttons: [
|
||||
{
|
||||
text: '详情',
|
||||
click: (_record, _modal, _instance) => this.channelView(_record),
|
||||
},
|
||||
{
|
||||
text: '审核',
|
||||
click: (_record, _modal, _instance) => this.channelView(_record),
|
||||
},
|
||||
|
||||
]
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
partnerView(record: STData) {
|
||||
this.router.navigate(['/partner/advice-feedback/detail'], { queryParams: {} });
|
||||
}
|
||||
|
||||
channelView(record: STData) {
|
||||
this.router.navigate(['/partner/advice-feedback/detail'], { queryParams: {} });
|
||||
}
|
||||
/**
|
||||
* 重置表单
|
||||
*/
|
||||
resetSF() {
|
||||
this.sf.reset();
|
||||
}
|
||||
search() {
|
||||
// this.st1?.load(1);
|
||||
}
|
||||
|
||||
tabChange(index:any){
|
||||
console.log(index)
|
||||
switch (index) {
|
||||
case 0:
|
||||
this.initST1();
|
||||
break;
|
||||
case 1:
|
||||
this.initST2();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
import { Injectable, Injector } from '@angular/core';
|
||||
import { BaseService } from '@shared';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class AdviceFeedbackService extends BaseService {
|
||||
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
}
|
||||
}
|
||||
@ -1,6 +1,6 @@
|
||||
import { AfterViewInit, ChangeDetectorRef, Component, OnChanges, OnInit, ViewChild } from '@angular/core';
|
||||
import { ActivatedRoute } from '@angular/router';
|
||||
import { SFComponent, SFRadioWidgetSchema, SFSchema, SFSchemaEnumType, SFSelectWidgetSchema, SFTextareaWidgetSchema, SFUISchema } from '@delon/form';
|
||||
import { SFAutoCompleteWidgetSchema, SFComponent, SFRadioWidgetSchema, SFSchema, SFSchemaEnumType, SFSelectWidgetSchema, SFTextareaWidgetSchema, SFUISchema } from '@delon/form';
|
||||
import { _HttpClient } from '@delon/theme';
|
||||
import { NzModalRef, NzModalService } from 'ng-zorro-antd/modal';
|
||||
import { map } from 'rxjs/operators';
|
||||
@ -38,18 +38,37 @@ export class ParterChannelSalesEditComponent implements OnInit {
|
||||
title: '',
|
||||
ui: { hidden: true }
|
||||
},
|
||||
name1: {
|
||||
title: '业务员选择',
|
||||
name: {
|
||||
title: '渠道销售姓名',
|
||||
type: 'string',
|
||||
enum: [
|
||||
{ label: '王武', value: '1'},
|
||||
],
|
||||
maxLength: 12,
|
||||
ui: {
|
||||
widget: 'select',
|
||||
placeholder:'请选择'
|
||||
} as SFSelectWidgetSchema,
|
||||
placeholder:'请输入'
|
||||
}
|
||||
},
|
||||
name2: {
|
||||
phoneNumber: {
|
||||
title: '手机号',
|
||||
type: 'string',
|
||||
maxLength: 11,
|
||||
ui: {
|
||||
placeholder:'请输入'
|
||||
}
|
||||
},
|
||||
employeeVO: {
|
||||
title: '关联OA员工',
|
||||
type: 'string',
|
||||
ui: {
|
||||
widget: 'autocomplete',
|
||||
placeholder:'请选择',
|
||||
asyncData: (input:string) => this.service.request(this.service.$api_fuzzyQuery,{name:input}).pipe(
|
||||
map((res: any) => {
|
||||
console.log('111',res)
|
||||
return [];
|
||||
})
|
||||
)
|
||||
} as SFAutoCompleteWidgetSchema,
|
||||
},
|
||||
isAuthorization: {
|
||||
type: 'string',
|
||||
title: '授权登录运营后台',
|
||||
enum: [
|
||||
@ -59,21 +78,32 @@ export class ParterChannelSalesEditComponent implements OnInit {
|
||||
ui: {
|
||||
widget: 'radio',
|
||||
} as SFRadioWidgetSchema,
|
||||
default: 'A',
|
||||
default: '0',
|
||||
},
|
||||
name: {
|
||||
roleIds: {
|
||||
title: '',
|
||||
type: 'string',
|
||||
enum: [
|
||||
{ label: '管理员', value: '1'},
|
||||
],
|
||||
ui: {
|
||||
widget: 'select',
|
||||
placeholder:'授权角色',
|
||||
visibleIf: { name2: (value: string) => value === '1' }
|
||||
} as SFSelectWidgetSchema,
|
||||
placeholder: '授权角色',
|
||||
mode: 'multiple',
|
||||
maxMultipleCount: 5,
|
||||
asyncData: () => {
|
||||
|
||||
return this.service.request(this.service.$api_getAppRoleList).pipe(
|
||||
map((res: any) => {
|
||||
return res
|
||||
.filter((role: any) => role.roleCode !== 'Administrator')
|
||||
.map((item: any) => {
|
||||
return { label: item.roleName, value: item.id };
|
||||
});
|
||||
})
|
||||
);
|
||||
},
|
||||
name3: {
|
||||
visibleIf: { isAuthorization: (value: string) => value === '1' }
|
||||
},
|
||||
},
|
||||
remark: {
|
||||
type: 'string',
|
||||
title: '备注',
|
||||
maxLength: 50,
|
||||
@ -84,15 +114,16 @@ export class ParterChannelSalesEditComponent implements OnInit {
|
||||
} as SFTextareaWidgetSchema,
|
||||
},
|
||||
},
|
||||
required: ['name1', 'name2']
|
||||
required: ['name', 'phoneNumber', 'employeeVO', 'roleIds', 'remark']
|
||||
};
|
||||
this.ui = {
|
||||
'*': {
|
||||
spanLabelFixed: 150,
|
||||
grid: { span: 24 }
|
||||
},
|
||||
$name:{ spanLabelFixed: 10, grid: { span: 12 }},
|
||||
$name2:{ grid: { span: 12 }},
|
||||
$isAuthorization:{ grid: { span: 12 }},
|
||||
$roleIds:{ spanLabelFixed: 10, grid: { span: 12 }},
|
||||
|
||||
|
||||
};
|
||||
}
|
||||
@ -103,12 +134,12 @@ export class ParterChannelSalesEditComponent implements OnInit {
|
||||
save() {
|
||||
this.sf.validator({ emitError: true });
|
||||
if(!this.sf.valid) return;
|
||||
// this.service.request('', { ...this.sf.value }).subscribe(res => {
|
||||
// if (res) {
|
||||
// this.modalRef.destroy(true);
|
||||
// } else {
|
||||
// this.service.msgSrv.error(res.msg);
|
||||
// }
|
||||
// });
|
||||
this.service.request(this.service.$api_save, { ...this.sf.value }).subscribe(res => {
|
||||
if (res) {
|
||||
this.modalRef.destroy(true);
|
||||
} else {
|
||||
this.service.msgSrv.error(res.msg);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
<!-- 数据列表 -->
|
||||
<st
|
||||
#st
|
||||
[data]="data"
|
||||
[data]="service.$api_getPage"
|
||||
[columns]="columns"
|
||||
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
|
||||
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
|
||||
|
||||
@ -47,7 +47,7 @@ export class ParterChannelSalesListComponent implements OnInit {
|
||||
type: 'string',
|
||||
title: '销售渠道姓名'
|
||||
},
|
||||
phone: {
|
||||
telephone: {
|
||||
type: 'string',
|
||||
title: '手机号'
|
||||
},
|
||||
@ -64,31 +64,31 @@ export class ParterChannelSalesListComponent implements OnInit {
|
||||
this.columns = [
|
||||
{
|
||||
title: '销售渠道姓名',
|
||||
index: 'name1'
|
||||
index: 'name'
|
||||
},
|
||||
{
|
||||
title: '手机号',
|
||||
index: 'name1'
|
||||
index: 'telephone'
|
||||
},
|
||||
{
|
||||
title: '所属组织',
|
||||
index: 'name1'
|
||||
index: 'organLable'
|
||||
},
|
||||
{
|
||||
title: '职级',
|
||||
index: 'name1'
|
||||
index: 'station'
|
||||
},
|
||||
{
|
||||
title: '等级',
|
||||
index: 'name1'
|
||||
index: 'postLevel'
|
||||
},
|
||||
{
|
||||
title: '省市',
|
||||
index: 'name1'
|
||||
index: 'residencePlace'
|
||||
},
|
||||
{
|
||||
title: '邀请码',
|
||||
index: 'name1'
|
||||
index: 'inviteCode'
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
|
||||
@ -6,6 +6,17 @@ import { BaseService } from '@shared';
|
||||
})
|
||||
export class ChannelSalesService extends BaseService {
|
||||
|
||||
// 保存渠道销售管理
|
||||
$api_save = '/api/mdc/channelSalesManagement/save';
|
||||
|
||||
// 查询渠道销售管理表
|
||||
$api_getPage = '/api/mdc/channelSalesManagement/list/page';
|
||||
// OA员工模糊查询
|
||||
$api_fuzzyQuery = '/api/mdc/channelSalesManagement/fuzzyQuery';
|
||||
// 获取角色列表
|
||||
$api_getAppRoleList = '/api/mdc/cuc/roleInfo/getRoleList';
|
||||
|
||||
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
}
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
|
||||
.left-rb {
|
||||
display: flex;
|
||||
justify-content: end;
|
||||
justify-content: flex-end;
|
||||
padding-top: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,26 +1,29 @@
|
||||
:host {
|
||||
.head-box {
|
||||
img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
width : 80px;
|
||||
height : 80px;
|
||||
padding: 8px;
|
||||
}
|
||||
.right-h{
|
||||
|
||||
.right-h {
|
||||
font-size: 16px;
|
||||
}
|
||||
.right-s{
|
||||
|
||||
.right-s {
|
||||
color: #7f7f7f;
|
||||
}
|
||||
|
||||
.left-rt {
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
text-align: right;
|
||||
font-size : 16px;
|
||||
text-align : right;
|
||||
}
|
||||
|
||||
.left-rb {
|
||||
display: flex;
|
||||
justify-content: end;
|
||||
padding-top: 16px;
|
||||
display : flex;
|
||||
justify-content: flex-end;
|
||||
padding-top : 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -38,19 +38,15 @@ export class ParterLevelConfigEditComponent implements OnInit {
|
||||
title: '',
|
||||
ui: { hidden: true }
|
||||
},
|
||||
name: {
|
||||
title: '合伙人等级',
|
||||
gradeName: {
|
||||
title: '等级名称',
|
||||
type: 'string',
|
||||
enum: [
|
||||
{ label: '管理员', value: '1'},
|
||||
],
|
||||
ui: {
|
||||
widget: 'select',
|
||||
placeholder:'请选择',
|
||||
visibleIf: { name2: (value: string) => value === '1' }
|
||||
} as SFSelectWidgetSchema,
|
||||
},
|
||||
name3: {
|
||||
sortId: {
|
||||
title: '排序',
|
||||
type: 'string',
|
||||
},
|
||||
remark: {
|
||||
type: 'string',
|
||||
title: '备注',
|
||||
maxLength: 50,
|
||||
@ -61,7 +57,7 @@ export class ParterLevelConfigEditComponent implements OnInit {
|
||||
} as SFTextareaWidgetSchema,
|
||||
},
|
||||
},
|
||||
required: ['name1', 'name2']
|
||||
required: ['gradeName', 'sortId', 'remark']
|
||||
};
|
||||
this.ui = {
|
||||
'*': {
|
||||
@ -77,12 +73,13 @@ export class ParterLevelConfigEditComponent implements OnInit {
|
||||
save() {
|
||||
this.sf.validator({ emitError: true });
|
||||
if(!this.sf.valid) return;
|
||||
// this.service.request('', { ...this.sf.value }).subscribe(res => {
|
||||
// if (res) {
|
||||
// this.modalRef.destroy(true);
|
||||
// } else {
|
||||
// this.service.msgSrv.error(res.msg);
|
||||
// }
|
||||
// });
|
||||
this.service.request(this.service.$api_save, { ...this.sf.value }).subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('保存成功!')
|
||||
this.modalRef.destroy(true);
|
||||
} else {
|
||||
this.service.msgSrv.error(res.msg);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
<!-- 数据列表 -->
|
||||
<st
|
||||
#st
|
||||
[data]="data"
|
||||
[data]="service.$api_getList"
|
||||
[columns]="columns"
|
||||
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
|
||||
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
|
||||
|
||||
@ -43,19 +43,24 @@ export class ParterLevelConfigListComponent implements OnInit {
|
||||
initSF() {
|
||||
this.schema = {
|
||||
properties: {
|
||||
name: {
|
||||
gradeName: {
|
||||
type: 'string',
|
||||
title: '等级姓名'
|
||||
title: '等级姓名',
|
||||
},
|
||||
phone: {
|
||||
stateLocked: {
|
||||
type: 'string',
|
||||
title: '状态'
|
||||
title: '状态',
|
||||
enum:[{label:'启用',value:'1'},{label:'禁用',value:'0'}],
|
||||
ui:{
|
||||
widget:'select',
|
||||
}
|
||||
},
|
||||
}
|
||||
};
|
||||
this.ui = {
|
||||
'*': {
|
||||
grid: { span: 8, gutter: 4 }
|
||||
width:300,
|
||||
grid: { span: 12, gutter: 4 }
|
||||
}
|
||||
};
|
||||
}
|
||||
@ -64,23 +69,26 @@ export class ParterLevelConfigListComponent implements OnInit {
|
||||
this.columns = [
|
||||
{
|
||||
title: '等级姓名',
|
||||
index: 'name1'
|
||||
index: 'gradeName'
|
||||
},
|
||||
{
|
||||
title: '备注',
|
||||
index: 'name1'
|
||||
index: 'remark'
|
||||
},
|
||||
{
|
||||
title: '创建时间',
|
||||
index: 'name1'
|
||||
index: 'createTime'
|
||||
},
|
||||
{
|
||||
title: '启用时间',
|
||||
index: 'name1'
|
||||
index: 'enableTime'
|
||||
},
|
||||
{
|
||||
title: '状态',
|
||||
index: 'name1'
|
||||
index: 'stateLocked',
|
||||
format: (item: any) => {
|
||||
return item.stateLocked ? '禁用':'启用'
|
||||
}
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
@ -93,10 +101,12 @@ export class ParterLevelConfigListComponent implements OnInit {
|
||||
{
|
||||
text: '禁用',
|
||||
click: (_record, _modal, _instance) => this.stop(_record),
|
||||
iif:(item)=>!item.stateLocked
|
||||
},
|
||||
{
|
||||
text: '启用',
|
||||
click: (_record, _modal, _instance) => this.restart(_record),
|
||||
iif:(item)=>item.stateLocked
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -141,30 +151,30 @@ export class ParterLevelConfigListComponent implements OnInit {
|
||||
});
|
||||
}
|
||||
|
||||
restart(id: any) {
|
||||
restart(item: any) {
|
||||
this.modalService.confirm({
|
||||
nzTitle: '<i>冻结确认</i>',
|
||||
nzContent: `<b>确定启用该账号吗?</br>`,
|
||||
// nzOnOk: () =>
|
||||
// this.service.request('', '').subscribe(res => {
|
||||
// if (res) {
|
||||
// this.service.msgSrv.success('冻结成功!');
|
||||
// this.st.reload();
|
||||
// }
|
||||
// })
|
||||
nzOnOk: () =>
|
||||
this.service.request(this.service.$api_updatePartnerGradeConfig, {id:item.id}).subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('启用成功!');
|
||||
this.st.reload();
|
||||
}
|
||||
})
|
||||
});
|
||||
}
|
||||
stop(id: any) {
|
||||
stop(item: any) {
|
||||
this.modalService.confirm({
|
||||
nzTitle: '<i>冻结确认</i>',
|
||||
nzContent: `<b>确定禁用该账号吗?</br>`,
|
||||
// nzOnOk: () =>
|
||||
// this.service.request('', '').subscribe(res => {
|
||||
// if (res) {
|
||||
// this.service.msgSrv.success('冻结成功!');
|
||||
// this.st.reload();
|
||||
// }
|
||||
// })
|
||||
nzOnOk: () =>
|
||||
this.service.request(this.service.$api_updatePartnerGradeConfig, {id:item.id}).subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('冻结成功!');
|
||||
this.st.reload();
|
||||
}
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@ -5,6 +5,16 @@ import { BaseService } from '@shared';
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class ChannelSalesService extends BaseService {
|
||||
// 查询合伙人等级配置表
|
||||
$api_getList = '/api/mdc/partnerGradeConfig/list/page';
|
||||
// 获取合伙人等级配置表
|
||||
$api_getPartnerGradeConfig = '/api/mdc/partnerGradeConfig/get';
|
||||
// 保存合伙人等级配置表
|
||||
$api_save = '/api/mdc/partnerGradeConfig/save';
|
||||
// 删除合伙人等级配置表
|
||||
$api_del = '/api/mdc/partnerGradeConfig/deletebatch';
|
||||
// 启用/禁用等级配置
|
||||
$api_updatePartnerGradeConfig = '/api/mdc/partnerGradeConfig/updatePartnerGradeConfig';
|
||||
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
|
||||
@ -16,16 +16,16 @@
|
||||
</ng-template>
|
||||
|
||||
<!-- 企业法人信息 -->
|
||||
<ng-template sf-template="legalPersonIdentityDTO/_legalPersontitle" let-me let-ui="ui" let-schema="schema">
|
||||
<div class="form-title" style="margin-top: 40px;margin-left: -180px;">营业执照法人信息</div>
|
||||
<ng-template sf-template="legalPersonIdentity/_legalPersontitle" let-me let-ui="ui" let-schema="schema">
|
||||
<div class="form-title" style="margin-top: 40px; margin-left: -180px">营业执照法人信息</div>
|
||||
</ng-template>
|
||||
<ng-template sf-template="legalPersonIdentityDTO/_certificatePhototips" let-me let-ui="ui" let-schema="schema">
|
||||
<ng-template sf-template="legalPersonIdentity/_certificatePhototips" let-me let-ui="ui" let-schema="schema">
|
||||
<div class="pr">
|
||||
<div>请上传身份证原件的高清照片,若上传复印件,则需申请人签字;</div>
|
||||
<div>上传后系统会自动识别并填写</div>
|
||||
</div>
|
||||
</ng-template>
|
||||
<ng-template sf-template="legalPersonIdentityDTO/_certificatePhotoExmplateA" let-me let-ui="ui" let-schema="schema">
|
||||
<ng-template sf-template="legalPersonIdentity/_certificatePhotoExmplateA" let-me let-ui="ui" let-schema="schema">
|
||||
<div class="pr">
|
||||
<dl class="tips">
|
||||
<dt>正面照(人像面)</dt>
|
||||
@ -34,7 +34,7 @@
|
||||
<div class="pa"><img width="190" src="./assets/images/usercenter/certificate-demo-front.png" /></div>
|
||||
</div>
|
||||
</ng-template>
|
||||
<ng-template sf-template="legalPersonIdentityDTO/_certificatePhotoExmplateB" let-me let-ui="ui" let-schema="schema">
|
||||
<ng-template sf-template="legalPersonIdentity/_certificatePhotoExmplateB" let-me let-ui="ui" let-schema="schema">
|
||||
<div class="pr">
|
||||
<dl class="tips">
|
||||
<dt>背面照(国徽面)</dt>
|
||||
@ -45,8 +45,8 @@
|
||||
</ng-template>
|
||||
|
||||
<!-- 企业管理员信息 -->
|
||||
<ng-template sf-template="adminUserInfo/_adminTitle" let-me let-ui="ui" let-schema="schema">
|
||||
<div class="form-title" style="margin-top: 40px;margin-left: -180px;">企业管理员信息</div>
|
||||
<ng-template sf-template="_adminTitle" let-me let-ui="ui" let-schema="schema">
|
||||
<div class="form-title" style="margin-top: 40px; margin-left: -180px">企业管理员信息</div>
|
||||
</ng-template>
|
||||
<ng-template sf-template="adminUserInfo/_adminCertificatePhotoTipsA" let-me let-ui="ui" let-schema="schema">
|
||||
<div class="pr">
|
||||
@ -69,19 +69,17 @@
|
||||
|
||||
<!-- 所属城市 -->
|
||||
<ng-template sf-template="_addressTitle" let-me let-ui="ui" let-schema="schema">
|
||||
<div class="form-title" style="margin-top: 40px;margin-left: -180px;">所属城市</div>
|
||||
<div class="form-title" style="margin-top: 40px; margin-left: -180px">所属城市</div>
|
||||
</ng-template>
|
||||
|
||||
<!-- 渠道销售 -->
|
||||
<ng-template sf-template="_channelTitle" let-me let-ui="ui" let-schema="schema">
|
||||
<div class="form-title" style="margin-top: 40px;margin-left: -180px;">渠道销售</div>
|
||||
<div class="form-title" style="margin-top: 40px; margin-left: -180px">渠道销售</div>
|
||||
</ng-template>
|
||||
</sf>
|
||||
|
||||
|
||||
<div style="display: flex;justify-content: center;">
|
||||
<button nz-button type="button" nzType="primary" (click)="submitForm()"
|
||||
[nzLoading]="service.http.loading">确认新增</button>
|
||||
<div style="display: flex; justify-content: center">
|
||||
<button nz-button type="button" nzType="primary" (click)="submitForm()" [nzLoading]="service.http.loading">确认新增</button>
|
||||
<button nz-button (click)="goBack()">返回</button>
|
||||
</div>
|
||||
</nz-card>
|
||||
@ -1,19 +1,19 @@
|
||||
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { Router } from '@angular/router';
|
||||
import { Component, ViewChild } from '@angular/core';
|
||||
import { apiConf } from '@conf/api.conf';
|
||||
import {
|
||||
SFUploadWidgetSchema,
|
||||
SFComponent,
|
||||
SFSchema,
|
||||
SFUISchema,
|
||||
SFCascaderWidgetSchema,
|
||||
SFTextareaWidgetSchema,
|
||||
SFDateWidgetSchema,
|
||||
SFCheckboxWidgetSchema,
|
||||
SFTreeSelectWidgetSchema
|
||||
} from '@delon/form';
|
||||
import { NzTreeNode } from 'ng-zorro-antd/tree';
|
||||
import { NzUploadFile } from 'ng-zorro-antd/upload';
|
||||
import { of } from 'rxjs';
|
||||
import { map } from 'rxjs/operators';
|
||||
|
||||
import { PartnerListService } from '../../services/partner-list.service';
|
||||
|
||||
const IMAGECONFIG = {
|
||||
@ -43,7 +43,7 @@ const DATECONFIG = {
|
||||
templateUrl: './add-etp-partner.component.html',
|
||||
styleUrls: ['./add-etp-partner.component.less']
|
||||
})
|
||||
export class AddEtpPartnerComponent implements OnInit {
|
||||
export class AddEtpPartnerComponent {
|
||||
@ViewChild('sf', { static: false })
|
||||
sf!: SFComponent;
|
||||
schema: SFSchema = this.initBasicInfoSF();
|
||||
@ -64,66 +64,54 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
}
|
||||
};
|
||||
|
||||
constructor(private router: Router, public service: PartnerListService) {}
|
||||
ngOnInit() {}
|
||||
constructor(public service: PartnerListService) {}
|
||||
|
||||
submitForm() {
|
||||
if (!this.sf.valid ) {
|
||||
if (!this.sf.valid) {
|
||||
this.sf.validator({ emitError: true });
|
||||
this.service.msgSrv.warning('请修改填写错误信息');
|
||||
return;
|
||||
}
|
||||
const enterpriseRegistrationTime = new Date(this.sf.value.enterpriseRegistrationTime);
|
||||
const operatingStartTime = new Date(this.sf.value.operatingStartTime);
|
||||
if (enterpriseRegistrationTime.getTime() > operatingStartTime.getTime()) {
|
||||
this.service.msgSrv.warning('营业期限不能小于成立日期');
|
||||
if (this.sf.value.cityCodesList?.length > 3) {
|
||||
this.sf.validator({ emitError: true });
|
||||
this.service.msgSrv.warning('所属城市不能超过3个');
|
||||
return;
|
||||
}
|
||||
if (this.sf.value.operatingEndTime) {
|
||||
// 校验企业营业期限
|
||||
const operatingStartTime = new Date(this.sf.value.operatingStartTime);
|
||||
const operatingEndTime = new Date(this.sf.value.operatingEndTime);
|
||||
if (operatingStartTime.getTime() > operatingEndTime.getTime()) {
|
||||
this.service.msgSrv.warning('营业期限不能小于期限开始日期');
|
||||
this.service.msgSrv.warning('营业截止日期不能小于开始日期');
|
||||
return;
|
||||
}
|
||||
}
|
||||
const validStartTime = new Date(this.sf.value.legalPersonIdentityDTO.validStartTime);
|
||||
if (this.sf.value.legalPersonIdentityDTO.validEndTime) {
|
||||
const validEndTime = new Date(this.sf.value.legalPersonIdentityDTO.validEndTime);
|
||||
// 校验法人证件有效期限
|
||||
if (this.sf.value.legalPersonIdentity.validEndTime) {
|
||||
const validStartTime = new Date(this.sf.value.legalPersonIdentity.validStartTime);
|
||||
const validEndTime = new Date(this.sf.value.legalPersonIdentity.validEndTime);
|
||||
if (validStartTime.getTime() > validEndTime.getTime()) {
|
||||
this.service.msgSrv.warning('法人证件有效截止日期小于开始日期');
|
||||
this.service.msgSrv.warning('法人证件有效截止日期不能小于开始日期');
|
||||
return;
|
||||
}
|
||||
}
|
||||
// 校验管理员证件有效期限
|
||||
if (this.sf.value.adminUserInfo.validEndTime) {
|
||||
const validStartTime = new Date(this.sf.value.adminUserInfo.validStartTime);
|
||||
const validEndTime = new Date(this.sf.value.adminUserInfo.validEndTime);
|
||||
if (validStartTime.getTime() > validEndTime.getTime()) {
|
||||
this.service.msgSrv.warning('管理员证件有效截止日期小于开始日期');
|
||||
return;
|
||||
}
|
||||
}
|
||||
const sfVlaue = this.sf.value;
|
||||
const params = {};
|
||||
Object.assign(
|
||||
params,
|
||||
{ ...this.sf.value },
|
||||
{
|
||||
enterpriseAddressCode: this.sf.value.enterpriseAddressCode[2],
|
||||
oftenUsedServices: sfVlaue.oftenUsedServices,
|
||||
registerAddress: sfVlaue.registerAddress,
|
||||
registerPhone: sfVlaue.registerPhone,
|
||||
creditPhoto: sfVlaue.creditPhoto,
|
||||
creditPhotoWatermark: sfVlaue.creditPhotoWatermark,
|
||||
promotersTelephone: sfVlaue.promotersTelephone,
|
||||
networkTransporter: sfVlaue.networkTransporter,
|
||||
adminUserInfo: {
|
||||
certificateNumber: sfVlaue.certificateNumber,
|
||||
certificatePhotoBack: sfVlaue.certificatePhotoBack,
|
||||
certificatePhotoBackWatermark: sfVlaue.certificatePhotoBackWatermark,
|
||||
certificatePhotoFront: sfVlaue.certificatePhotoFront,
|
||||
certificatePhotoFrontWatermark: sfVlaue.certificatePhotoFrontWatermark,
|
||||
name: sfVlaue.name
|
||||
Object.assign(params, { ...this.sf.value, source: 2 });
|
||||
// console.log(params);
|
||||
|
||||
this.service.request(this.service.$api_save_entp_partner, params).subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('新增企业合伙人成功');
|
||||
this.goBack();
|
||||
}
|
||||
}
|
||||
);
|
||||
// this.service.request(this.service.$api_save_enterprise_admin, params).subscribe(res => {
|
||||
// if (res) {
|
||||
// this.service.msgSrv.success('企业新增成功');
|
||||
// this.goBack();
|
||||
// }
|
||||
// });
|
||||
});
|
||||
}
|
||||
|
||||
/*
|
||||
@ -146,23 +134,23 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
if (isFront === 'front') {
|
||||
// 正面
|
||||
if (res.name) {
|
||||
this.sf.setValue('/legalPersonIdentityDTO/name', res.name);
|
||||
this.sf.setValue('/legalPersonIdentity/name', res.name);
|
||||
}
|
||||
if (res.number) {
|
||||
this.sf.setValue('/legalPersonIdentityDTO/certificateType', 0);
|
||||
this.sf.setValue('/legalPersonIdentityDTO/certificateNumber', res.number);
|
||||
this.sf.setValue('/legalPersonIdentity/certificateType', 0);
|
||||
this.sf.setValue('/legalPersonIdentity/certificateNumber', res.number);
|
||||
}
|
||||
}
|
||||
if (isFront === 'back') {
|
||||
// 背面
|
||||
if (res.validFrom) {
|
||||
this.sf.setValue('/legalPersonIdentityDTO/validStartTime', res.validFrom);
|
||||
this.sf.setValue('/legalPersonIdentity/validStartTime', res.validFrom);
|
||||
}
|
||||
if (res.validTo) {
|
||||
this.sf.setValue('/legalPersonIdentityDTO/validEndTime', res.validTo);
|
||||
this.sf.setValue('/legalPersonIdentityDTO/_isLoingDate', false);
|
||||
this.sf.setValue('/legalPersonIdentity/validEndTime', res.validTo);
|
||||
this.sf.setValue('/legalPersonIdentity/_isLoingDate', false);
|
||||
} else {
|
||||
this.sf.setValue('/legalPersonIdentityDTO/_isLoingDate', true);
|
||||
this.sf.setValue('/legalPersonIdentity/_isLoingDate', true);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -171,10 +159,22 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
if (isFront === 'front') {
|
||||
// 正面
|
||||
if (res.name) {
|
||||
this.sf.setValue('/name', res.name);
|
||||
this.sf.setValue('/adminUserInfo/name', res.name);
|
||||
}
|
||||
if (res.number) {
|
||||
this.sf.setValue('/certificateNumber', res.number);
|
||||
this.sf.setValue('/adminUserInfo/certificateNumber', res.number);
|
||||
}
|
||||
}
|
||||
if (isFront === 'back') {
|
||||
// 背面
|
||||
if (res.validFrom) {
|
||||
this.sf.setValue('/adminUserInfo/validStartTime', res.validFrom);
|
||||
}
|
||||
if (res.validTo) {
|
||||
this.sf.setValue('/adminUserInfo/validEndTime', res.validTo);
|
||||
this.sf.setValue('/adminUserInfo/_isLoingDate', false);
|
||||
} else {
|
||||
this.sf.setValue('/adminUserInfo/_isLoingDate', true);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -192,29 +192,15 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
if (res.name) {
|
||||
this.sf.setValue('/enterpriseName', res.name);
|
||||
}
|
||||
if (res.type) {
|
||||
this.sf.setValue('/enterpriseType', res.type);
|
||||
}
|
||||
if (res.addressRegionCodes) {
|
||||
this.sf.setValue('/enterpriseAddressCode', res.addressRegionCodes);
|
||||
}
|
||||
if (res.address) {
|
||||
this.sf.setValue('/enterpriseAddress', res.address);
|
||||
}
|
||||
if (res.foundDate) {
|
||||
this.sf.setValue('/enterpriseRegistrationTime', res.foundDate);
|
||||
}
|
||||
if (res.businessTermStartDate) {
|
||||
this.sf.setValue('/operatingStartTime', res.businessTermStartDate);
|
||||
}
|
||||
if (res.businessTermEndDate) {
|
||||
this.sf.setValue('/operatingEndTime', res.businessTermEndDate);
|
||||
this.sf.setValue('/_isLoingDate', false);
|
||||
} else {
|
||||
this.sf.setValue('/_isLoingDate', true);
|
||||
}
|
||||
if (res.businessScope) {
|
||||
this.sf.setValue('/businessScope', res.businessScope);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
@ -308,7 +294,7 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
},
|
||||
|
||||
// 法人信息
|
||||
legalPersonIdentityDTO: {
|
||||
legalPersonIdentity: {
|
||||
type: 'object',
|
||||
properties: {
|
||||
_legalPersontitle: { title: '', type: 'string', ui: { widget: 'custom' } },
|
||||
@ -322,7 +308,7 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
descriptionI18n: '图片支持jpg、jpeg、png、gif格式,大小不超过5M',
|
||||
change: args => {
|
||||
if (args.type === 'success') {
|
||||
this.sf.setValue('/legalPersonIdentityDTO/certificatePhotoFront', args.fileList[0].response.data.fullFilePath);
|
||||
this.sf.setValue('/legalPersonIdentity/certificatePhotoFront', args.fileList[0].response.data.fullFilePath);
|
||||
this.checkIdCard(args.fileList[0].response.data.fullFilePath, 'front', 1);
|
||||
}
|
||||
}
|
||||
@ -339,7 +325,7 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
descriptionI18n: '图片支持jpg、jpeg、png、gif格式,大小不超过5M',
|
||||
change: args => {
|
||||
if (args.type === 'success') {
|
||||
this.sf.setValue('/legalPersonIdentityDTO/certificatePhotoBack', args.fileList[0].response.data.fullFilePath);
|
||||
this.sf.setValue('/legalPersonIdentity/certificatePhotoBack', args.fileList[0].response.data.fullFilePath);
|
||||
this.checkIdCard(args.fileList[0].response.data.fullFilePath, 'back', 1);
|
||||
}
|
||||
}
|
||||
@ -404,7 +390,7 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
required: '请选择截止日期'
|
||||
},
|
||||
change: i => {
|
||||
this.sf?.setValue('/legalPersonIdentityDTO/_isLoingDate', false);
|
||||
this.sf?.setValue('/legalPersonIdentity/_isLoingDate', false);
|
||||
}
|
||||
} as SFDateWidgetSchema
|
||||
},
|
||||
@ -416,7 +402,7 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
grid: { span: 6 },
|
||||
class: 'input-back',
|
||||
widget: 'checkbox',
|
||||
change: i => this.sf?.setValue('/legalPersonIdentityDTO/validEndTime', null)
|
||||
change: i => this.sf?.setValue('/legalPersonIdentity/validEndTime', null)
|
||||
} as SFCheckboxWidgetSchema
|
||||
}
|
||||
},
|
||||
@ -430,10 +416,6 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
'validStartTime'
|
||||
]
|
||||
},
|
||||
// 企业管理员信息
|
||||
adminUserInfo: {
|
||||
type: 'object',
|
||||
properties: {
|
||||
_adminTitle: { title: '', type: 'string', ui: { widget: 'custom' } },
|
||||
adminMobile: {
|
||||
title: ' 企业管理员手机号',
|
||||
@ -447,6 +429,10 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
errors: { required: '请输入企业管理员手机号', format: '手机号格式错误' }
|
||||
}
|
||||
},
|
||||
// 企业管理员信息
|
||||
adminUserInfo: {
|
||||
type: 'object',
|
||||
properties: {
|
||||
_adminCertificatePhotoTipsA: {
|
||||
title: '企业管理员证件照',
|
||||
type: 'string',
|
||||
@ -465,7 +451,7 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
descriptionI18n: '图片支持jpg、jpeg、png、gif格式,大小不超过5M',
|
||||
change: args => {
|
||||
if (args.type === 'success') {
|
||||
this.sf.setValue('/certificatePhotoFront', args.fileList[0].response.data.fullFilePath);
|
||||
this.sf.setValue('/adminUserInfo/certificatePhotoFront', args.fileList[0].response.data.fullFilePath);
|
||||
this.checkIdCard(args.fileList[0].response.data.fullFilePath, 'front', 0);
|
||||
}
|
||||
}
|
||||
@ -487,7 +473,8 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
descriptionI18n: '图片支持jpg、jpeg、png、gif格式,大小不超过5M',
|
||||
change: args => {
|
||||
if (args.type === 'success') {
|
||||
this.sf.setValue('/certificatePhotoBack', args.fileList[0].response.data.fullFilePath);
|
||||
this.sf.setValue('/adminUserInfo/certificatePhotoBack', args.fileList[0].response.data.fullFilePath);
|
||||
this.checkIdCard(args.fileList[0].response.data.fullFilePath, 'back', 0);
|
||||
}
|
||||
}
|
||||
} as SFUploadWidgetSchema
|
||||
@ -512,7 +499,7 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
placeholder: '请输入企业管理员身份证号'
|
||||
}
|
||||
},
|
||||
operatingStartTime: {
|
||||
validStartTime: {
|
||||
title: '身份证有效开始日期',
|
||||
type: 'string',
|
||||
ui: {
|
||||
@ -523,7 +510,7 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
}
|
||||
} as SFDateWidgetSchema
|
||||
},
|
||||
operatingEndTime: {
|
||||
validEndTime: {
|
||||
title: '身份证有效截止日期',
|
||||
type: 'string',
|
||||
ui: {
|
||||
@ -545,34 +532,38 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
grid: { span: 6 },
|
||||
class: 'input-back',
|
||||
widget: 'checkbox',
|
||||
change: i => this.sf?.setValue('/adminUserInfo/operatingEndTime', null)
|
||||
change: i => this.sf?.setValue('/adminUserInfo/validEndTime', null)
|
||||
} as SFCheckboxWidgetSchema
|
||||
}
|
||||
},
|
||||
required: ['_adminCertificatePhotoTipsA', 'adminMobile', 'name', 'certificateNumber','operatingStartTime']
|
||||
required: ['_adminCertificatePhotoTipsA', 'name', 'certificateNumber', 'operatingStartTime']
|
||||
},
|
||||
// 所属城市
|
||||
_addressTitle: { title: '', type: 'string', ui: { widget: 'custom' } },
|
||||
status3: {
|
||||
cityCodesList: {
|
||||
type: 'string',
|
||||
title: '所属城市',
|
||||
default: ['WAIT_BUYER_PAY', 'TRADE_FINISHED'],
|
||||
ui: {
|
||||
widget: 'tree-select',
|
||||
grid: { xxl: 13, xl: 18, lg: 24, md: 24 },
|
||||
placeholder: '请选择城市(最多3个)',
|
||||
checkable: true,
|
||||
class: 'city-tree-select',
|
||||
asyncData: () =>
|
||||
of([
|
||||
{ title: '待支付', key: 'WAIT_BUYER_PAY' },
|
||||
{ title: '已支付', key: 'TRADE_SUCCESS' },
|
||||
{ title: '交易完成', key: 'TRADE_FINISHED' }
|
||||
])
|
||||
} as SFTreeSelectWidgetSchema,
|
||||
this.getRegionDetailByCode('').pipe(
|
||||
map((res: any) =>
|
||||
res.map((item: any) => ({ ...item, title: item.name, key: item.regionCode, disabled: true, isDisableCheckbox: true }))
|
||||
)
|
||||
),
|
||||
expandChange: ({ node }: { node: NzTreeNode }) =>
|
||||
this.getRegionDetailByCode(node.key).pipe(
|
||||
map((res: any) => res.map((item: any) => ({ ...item, title: item.name, key: item.regionCode, isLeaf: true })))
|
||||
)
|
||||
} as SFTreeSelectWidgetSchema
|
||||
},
|
||||
// 渠道销售
|
||||
_channelTitle: { title: '', type: 'string', ui: { widget: 'custom' } },
|
||||
channel: {
|
||||
invitationCode: {
|
||||
title: '渠道销售邀请码',
|
||||
type: 'string',
|
||||
minLength: 1,
|
||||
@ -586,7 +577,16 @@ export class AddEtpPartnerComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
},
|
||||
required: ['_licenseTips', 'licensePhotoWatermark', 'unifiedSocialCreditCode', 'enterpriseName', 'operatingStartTime', 'status3','channel']
|
||||
required: [
|
||||
'_licenseTips',
|
||||
'licensePhotoWatermark',
|
||||
'unifiedSocialCreditCode',
|
||||
'enterpriseName',
|
||||
'operatingStartTime',
|
||||
'cityCodesList',
|
||||
'adminMobile',
|
||||
'invitationCode'
|
||||
]
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<sf #sf [ui]="ui" [schema]="schema" [button]="'none'">
|
||||
<!-- 合伙人信息 -->
|
||||
<ng-template sf-template="adminUserInfo/_adminTitle" let-me let-ui="ui" let-schema="schema">
|
||||
<div class="form-title" style="margin-top: 40px;margin-left: -180px;">合伙人信息</div>
|
||||
<div class="form-title" style="margin-top: 40px; margin-left: -180px">合伙人信息</div>
|
||||
</ng-template>
|
||||
<ng-template sf-template="adminUserInfo/_adminCertificatePhotoTipsA" let-me let-ui="ui" let-schema="schema">
|
||||
<div class="pr">
|
||||
@ -26,19 +26,17 @@
|
||||
|
||||
<!-- 所属城市 -->
|
||||
<ng-template sf-template="_addressTitle" let-me let-ui="ui" let-schema="schema">
|
||||
<div class="form-title" style="margin-top: 40px;margin-left: -180px;">所属城市</div>
|
||||
<div class="form-title" style="margin-top: 40px; margin-left: -180px">所属城市</div>
|
||||
</ng-template>
|
||||
|
||||
<!-- 渠道销售 -->
|
||||
<ng-template sf-template="_channelTitle" let-me let-ui="ui" let-schema="schema">
|
||||
<div class="form-title" style="margin-top: 40px;margin-left: -180px;">渠道销售</div>
|
||||
<div class="form-title" style="margin-top: 40px; margin-left: -180px">渠道销售</div>
|
||||
</ng-template>
|
||||
</sf>
|
||||
|
||||
|
||||
<div style="display: flex;justify-content: center;">
|
||||
<button nz-button type="button" nzType="primary" (click)="submitForm()"
|
||||
[nzLoading]="service.http.loading">确认新增</button>
|
||||
<div style="display: flex; justify-content: center">
|
||||
<button nz-button type="button" nzType="primary" (click)="submitForm()" [nzLoading]="service.http.loading">确认新增</button>
|
||||
<button nz-button (click)="goBack()">返回</button>
|
||||
</div>
|
||||
</nz-card>
|
||||
@ -1,9 +1,20 @@
|
||||
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { Component, ViewChild } from '@angular/core';
|
||||
import { Router } from '@angular/router';
|
||||
import { apiConf } from '@conf/api.conf';
|
||||
import { SFUploadWidgetSchema, SFComponent, SFSchema, SFUISchema, SFDateWidgetSchema, SFCheckboxWidgetSchema, SFTreeSelectWidgetSchema } from '@delon/form';
|
||||
import {
|
||||
SFUploadWidgetSchema,
|
||||
SFComponent,
|
||||
SFSchema,
|
||||
SFUISchema,
|
||||
SFDateWidgetSchema,
|
||||
SFCheckboxWidgetSchema,
|
||||
SFTreeSelectWidgetSchema
|
||||
} from '@delon/form';
|
||||
import { NzTreeNode } from 'ng-zorro-antd/tree';
|
||||
import { NzUploadFile } from 'ng-zorro-antd/upload';
|
||||
import { of } from 'rxjs';
|
||||
import { map } from 'rxjs/operators';
|
||||
|
||||
import { PartnerListService } from '../../services/partner-list.service';
|
||||
|
||||
const IMAGECONFIG = {
|
||||
@ -33,7 +44,7 @@ const DATECONFIG = {
|
||||
templateUrl: './add-personal-partner.component.html',
|
||||
styleUrls: ['./add-personal-partner.component.less']
|
||||
})
|
||||
export class AddPersonalPartnerComponent implements OnInit {
|
||||
export class AddPersonalPartnerComponent {
|
||||
@ViewChild('sf', { static: false })
|
||||
sf!: SFComponent;
|
||||
schema: SFSchema = this.initBasicInfoSF();
|
||||
@ -55,7 +66,6 @@ export class AddPersonalPartnerComponent implements OnInit {
|
||||
};
|
||||
|
||||
constructor(private router: Router, public service: PartnerListService) {}
|
||||
ngOnInit() {}
|
||||
|
||||
submitForm() {
|
||||
if (!this.sf.valid) {
|
||||
@ -63,57 +73,28 @@ export class AddPersonalPartnerComponent implements OnInit {
|
||||
this.service.msgSrv.warning('请修改填写错误信息');
|
||||
return;
|
||||
}
|
||||
const enterpriseRegistrationTime = new Date(this.sf.value.enterpriseRegistrationTime);
|
||||
const operatingStartTime = new Date(this.sf.value.operatingStartTime);
|
||||
if (enterpriseRegistrationTime.getTime() > operatingStartTime.getTime()) {
|
||||
this.service.msgSrv.warning('营业期限不能小于成立日期');
|
||||
if (this.sf.value.cityCodesList?.length > 3) {
|
||||
this.sf.validator({ emitError: true });
|
||||
this.service.msgSrv.warning('所属城市不能超过3个');
|
||||
return;
|
||||
}
|
||||
if (this.sf.value.operatingEndTime) {
|
||||
const operatingEndTime = new Date(this.sf.value.operatingEndTime);
|
||||
if (operatingStartTime.getTime() > operatingEndTime.getTime()) {
|
||||
this.service.msgSrv.warning('营业期限不能小于期限开始日期');
|
||||
return;
|
||||
}
|
||||
}
|
||||
const validStartTime = new Date(this.sf.value.legalPersonIdentityDTO.validStartTime);
|
||||
if (this.sf.value.legalPersonIdentityDTO.validEndTime) {
|
||||
const validEndTime = new Date(this.sf.value.legalPersonIdentityDTO.validEndTime);
|
||||
if (this.sf.value.validEndTime) {
|
||||
const validStartTime = new Date(this.sf.value.validStartTime);
|
||||
const validEndTime = new Date(this.sf.value.validEndTime);
|
||||
if (validStartTime.getTime() > validEndTime.getTime()) {
|
||||
this.service.msgSrv.warning('法人证件有效截止日期小于开始日期');
|
||||
this.service.msgSrv.warning('身份证有效截止日期不能小于开始日期');
|
||||
return;
|
||||
}
|
||||
}
|
||||
const sfVlaue = this.sf.value;
|
||||
const params = {};
|
||||
Object.assign(
|
||||
params,
|
||||
{ ...this.sf.value },
|
||||
{
|
||||
enterpriseAddressCode: this.sf.value.enterpriseAddressCode[2],
|
||||
oftenUsedServices: sfVlaue.oftenUsedServices,
|
||||
registerAddress: sfVlaue.registerAddress,
|
||||
registerPhone: sfVlaue.registerPhone,
|
||||
creditPhoto: sfVlaue.creditPhoto,
|
||||
creditPhotoWatermark: sfVlaue.creditPhotoWatermark,
|
||||
promotersTelephone: sfVlaue.promotersTelephone,
|
||||
networkTransporter: sfVlaue.networkTransporter,
|
||||
adminUserInfo: {
|
||||
certificateNumber: sfVlaue.certificateNumber,
|
||||
certificatePhotoBack: sfVlaue.certificatePhotoBack,
|
||||
certificatePhotoBackWatermark: sfVlaue.certificatePhotoBackWatermark,
|
||||
certificatePhotoFront: sfVlaue.certificatePhotoFront,
|
||||
certificatePhotoFrontWatermark: sfVlaue.certificatePhotoFrontWatermark,
|
||||
name: sfVlaue.name
|
||||
Object.assign(params, { ...this.sf.value, source: 2 });
|
||||
|
||||
this.service.request(this.service.$api_save_personal_partner, params).subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('新增个人合伙人成功');
|
||||
this.goBack();
|
||||
}
|
||||
}
|
||||
);
|
||||
// this.service.request(this.service.$api_save_enterprise_admin, params).subscribe(res => {
|
||||
// if (res) {
|
||||
// this.service.msgSrv.success('企业新增成功');
|
||||
// this.goBack();
|
||||
// }
|
||||
// });
|
||||
});
|
||||
}
|
||||
|
||||
/*
|
||||
@ -124,48 +105,34 @@ export class AddPersonalPartnerComponent implements OnInit {
|
||||
}
|
||||
|
||||
// 识别身份证 参数isFront:front-正面、back-背面;type:0-申请人身份证,1-法定代表人身份证
|
||||
checkIdCard(imgurl: any, isFront: string, type: number) {
|
||||
checkIdCard(imgurl: any, isFront: string) {
|
||||
const params = {
|
||||
idCardUrl: imgurl,
|
||||
side: isFront
|
||||
};
|
||||
this.service.request(this.service.$api_ocr_recognize_id_card, params).subscribe(res => {
|
||||
if (res) {
|
||||
if (type === 1) {
|
||||
// 法定代表人证件照
|
||||
if (isFront === 'front') {
|
||||
// 正面
|
||||
if (res.name) {
|
||||
this.sf.setValue('/legalPersonIdentityDTO/name', res.name);
|
||||
this.sf.setValue('/adminUserInfo/name', res.name);
|
||||
}
|
||||
if (res.number) {
|
||||
this.sf.setValue('/legalPersonIdentityDTO/certificateType', 0);
|
||||
this.sf.setValue('/legalPersonIdentityDTO/certificateNumber', res.number);
|
||||
this.sf.setValue('/adminUserInfo/certificateType', 0);
|
||||
this.sf.setValue('/adminUserInfo/certificateNumber', res.number);
|
||||
}
|
||||
}
|
||||
if (isFront === 'back') {
|
||||
// 背面
|
||||
if (res.validFrom) {
|
||||
this.sf.setValue('/legalPersonIdentityDTO/validStartTime', res.validFrom);
|
||||
this.sf.setValue('/adminUserInfo/validStartTime', res.validFrom);
|
||||
}
|
||||
if (res.validTo) {
|
||||
this.sf.setValue('/legalPersonIdentityDTO/validEndTime', res.validTo);
|
||||
this.sf.setValue('/legalPersonIdentityDTO/_isLoingDate', false);
|
||||
this.sf.setValue('/adminUserInfo/validEndTime', res.validTo);
|
||||
this.sf.setValue('/adminUserInfo/_isLoingDate', false);
|
||||
} else {
|
||||
this.sf.setValue('/legalPersonIdentityDTO/_isLoingDate', true);
|
||||
}
|
||||
}
|
||||
}
|
||||
// 企业管理员证件照
|
||||
if (type === 0) {
|
||||
if (isFront === 'front') {
|
||||
// 正面
|
||||
if (res.name) {
|
||||
this.sf.setValue('/name', res.name);
|
||||
}
|
||||
if (res.number) {
|
||||
this.sf.setValue('/certificateNumber', res.number);
|
||||
}
|
||||
this.sf.setValue('/adminUserInfo/_isLoingDate', true);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -178,13 +145,9 @@ export class AddPersonalPartnerComponent implements OnInit {
|
||||
|
||||
private initBasicInfoSF(): SFSchema {
|
||||
return {
|
||||
properties: {
|
||||
// 合伙人信息
|
||||
adminUserInfo: {
|
||||
type: 'object',
|
||||
properties: {
|
||||
_adminTitle: { title: '', type: 'string', ui: { widget: 'custom' } },
|
||||
adminMobile: {
|
||||
mobile: {
|
||||
title: ' 手机号',
|
||||
type: 'string',
|
||||
minLength: 1,
|
||||
@ -196,6 +159,10 @@ export class AddPersonalPartnerComponent implements OnInit {
|
||||
errors: { required: '请输入手机号', format: '手机号格式错误' }
|
||||
}
|
||||
},
|
||||
// 合伙人信息
|
||||
adminUserInfo: {
|
||||
type: 'object',
|
||||
properties: {
|
||||
_adminCertificatePhotoTipsA: {
|
||||
title: '证件照',
|
||||
type: 'string',
|
||||
@ -206,6 +173,7 @@ export class AddPersonalPartnerComponent implements OnInit {
|
||||
},
|
||||
certificatePhotoFront: { title: '', type: 'string', ui: { hidden: true } },
|
||||
certificatePhotoBack: { title: '', type: 'string', ui: { hidden: true } },
|
||||
certificateType: { title: '', type: 'string', ui: { hidden: true }, default: 0 },
|
||||
certificatePhotoFrontWatermark: {
|
||||
type: 'string',
|
||||
title: '',
|
||||
@ -214,8 +182,8 @@ export class AddPersonalPartnerComponent implements OnInit {
|
||||
descriptionI18n: '图片支持jpg、jpeg、png、gif格式,大小不超过5M',
|
||||
change: args => {
|
||||
if (args.type === 'success') {
|
||||
this.sf.setValue('/certificatePhotoFront', args.fileList[0].response.data.fullFilePath);
|
||||
this.checkIdCard(args.fileList[0].response.data.fullFilePath, 'front', 0);
|
||||
this.sf.setValue('/adminUserInfo/certificatePhotoFront', args.fileList[0].response.data.fullFilePath);
|
||||
this.checkIdCard(args.fileList[0].response.data.fullFilePath, 'front');
|
||||
}
|
||||
}
|
||||
} as SFUploadWidgetSchema
|
||||
@ -236,7 +204,8 @@ export class AddPersonalPartnerComponent implements OnInit {
|
||||
descriptionI18n: '图片支持jpg、jpeg、png、gif格式,大小不超过5M',
|
||||
change: args => {
|
||||
if (args.type === 'success') {
|
||||
this.sf.setValue('/certificatePhotoBack', args.fileList[0].response.data.fullFilePath);
|
||||
this.sf.setValue('/adminUserInfo/certificatePhotoBack', args.fileList[0].response.data.fullFilePath);
|
||||
this.checkIdCard(args.fileList[0].response.data.fullFilePath, 'back');
|
||||
}
|
||||
}
|
||||
} as SFUploadWidgetSchema
|
||||
@ -261,7 +230,7 @@ export class AddPersonalPartnerComponent implements OnInit {
|
||||
placeholder: '请输入身份证号'
|
||||
}
|
||||
},
|
||||
operatingStartTime: {
|
||||
validStartTime: {
|
||||
title: '身份证有效开始日期',
|
||||
type: 'string',
|
||||
ui: {
|
||||
@ -272,7 +241,7 @@ export class AddPersonalPartnerComponent implements OnInit {
|
||||
}
|
||||
} as SFDateWidgetSchema
|
||||
},
|
||||
operatingEndTime: {
|
||||
validEndTime: {
|
||||
title: '身份证有效截止日期',
|
||||
type: 'string',
|
||||
ui: {
|
||||
@ -294,34 +263,38 @@ export class AddPersonalPartnerComponent implements OnInit {
|
||||
grid: { span: 6 },
|
||||
class: 'input-back',
|
||||
widget: 'checkbox',
|
||||
change: i => this.sf?.setValue('/adminUserInfo/operatingEndTime', null)
|
||||
change: i => this.sf?.setValue('/adminUserInfo/validEndTime', null)
|
||||
} as SFCheckboxWidgetSchema
|
||||
}
|
||||
},
|
||||
required: ['_adminCertificatePhotoTipsA', 'adminMobile', 'name', 'certificateNumber', 'operatingStartTime']
|
||||
required: ['_adminCertificatePhotoTipsA', 'adminMobile', 'name', 'certificateNumber', 'validStartTime']
|
||||
},
|
||||
// 所属城市
|
||||
_addressTitle: { title: '', type: 'string', ui: { widget: 'custom' } },
|
||||
status3: {
|
||||
cityCodesList: {
|
||||
type: 'string',
|
||||
title: '所属城市',
|
||||
default: ['WAIT_BUYER_PAY', 'TRADE_FINISHED'],
|
||||
ui: {
|
||||
widget: 'tree-select',
|
||||
grid: { xxl: 13, xl: 18, lg: 24, md: 24 },
|
||||
placeholder: '请选择城市(最多3个)',
|
||||
checkable: true,
|
||||
class: 'city-tree-select',
|
||||
asyncData: () =>
|
||||
of([
|
||||
{ title: '待支付', key: 'WAIT_BUYER_PAY' },
|
||||
{ title: '已支付', key: 'TRADE_SUCCESS' },
|
||||
{ title: '交易完成', key: 'TRADE_FINISHED' }
|
||||
])
|
||||
this.getRegionDetailByCode('').pipe(
|
||||
map((res: any) =>
|
||||
res.map((item: any) => ({ ...item, title: item.name, key: item.regionCode, disabled: true, isDisableCheckbox: true }))
|
||||
)
|
||||
),
|
||||
expandChange: ({ node }: { node: NzTreeNode }) =>
|
||||
this.getRegionDetailByCode(node.key).pipe(
|
||||
map((res: any) => res.map((item: any) => ({ ...item, title: item.name, key: item.regionCode, isLeaf: true })))
|
||||
)
|
||||
} as SFTreeSelectWidgetSchema
|
||||
},
|
||||
// 渠道销售
|
||||
_channelTitle: { title: '', type: 'string', ui: { widget: 'custom' } },
|
||||
channel: {
|
||||
invitationCode: {
|
||||
title: '渠道销售邀请码',
|
||||
type: 'string',
|
||||
minLength: 1,
|
||||
@ -335,10 +308,7 @@ export class AddPersonalPartnerComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
},
|
||||
required: [
|
||||
'status3',
|
||||
'channel'
|
||||
]
|
||||
required: ['cityCodesList', 'invitationCode']
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,12 +1,10 @@
|
||||
<page-header-wrapper [title]="'合伙人列表'">
|
||||
</page-header-wrapper>
|
||||
<page-header-wrapper [title]="'合伙人列表'"> </page-header-wrapper>
|
||||
|
||||
<nz-card class="search-box" nzBordered>
|
||||
<div nz-row nzGutter="8">
|
||||
<div nz-col [nzXl]="_$expand ? 24 : 17" [nzLg]="24" [nzSm]="24" [nzXs]="24">
|
||||
<sf #sf [schema]="searchSchema"
|
||||
[ui]="{ '*': { spanLabelFixed: 110,grid: { lg: 8, md: 12, sm: 12, xs: 24 } }}" [compact]="true"
|
||||
[button]="'none'"></sf>
|
||||
<sf #sf [schema]="searchSchema" [ui]="{ '*': { spanLabelFixed: 110, grid: { lg: 8, md: 12, sm: 12, xs: 24 } } }"
|
||||
[compact]="true" [button]="'none'"></sf>
|
||||
</div>
|
||||
<div nz-col [nzXl]="_$expand ? 24 : 7" [nzLg]="24" [nzSm]="24" [nzXs]="24" class="text-right"
|
||||
[class.expend-options]="_$expand">
|
||||
@ -23,24 +21,22 @@
|
||||
<nz-card class="content-box" nzBordered>
|
||||
<div class="d-flex align-items-center mb-md mt-md">
|
||||
<button nz-button (click)="this.routeTo('/partner/partner-list/add-etp-partner')" nzType="primary">新增企业合伙人</button>
|
||||
<button nz-button (click)="this.routeTo('/partner/partner-list/add-personal-partner')" nzType="primary">新增个人合伙人</button>
|
||||
<button nz-button (click)="this.routeTo('/partner/partner-list/add-personal-partner')"
|
||||
nzType="primary">新增个人合伙人</button>
|
||||
</div>
|
||||
|
||||
<st #st [data]="service.$mock_url" [columns]="columns" [req]="{ process: beforeReq }"
|
||||
[loading]="service.http.loading" [scroll]="{ x:'1200px' }">
|
||||
<st #st [data]="service.$api_get_partner_page" [columns]="columns" [req]="{ process: beforeReq }"
|
||||
[loading]="service.http.loading" [scroll]="{ x: '1200px' }" [page]="{}">
|
||||
</st>
|
||||
</nz-card>
|
||||
|
||||
<ng-template #editTemplate>
|
||||
<div nz-row nzGutter="8">
|
||||
<div nz-col nzSpan="24" se-container [labelWidth]="120">
|
||||
<se [col]="1" label="合伙人名称">
|
||||
深圳某某有限公司
|
||||
</se>
|
||||
<se [col]="1" label="合伙人名称"> {{selectItem?.enterpriseName}} </se>
|
||||
<se [col]="1" label="返佣模板" required>
|
||||
<nz-select ngModel="lucy" style="width: 100%;">
|
||||
<nz-option nzValue="jack" nzLabel="Jack"></nz-option>
|
||||
<nz-option nzValue="lucy" nzLabel="Lucy"></nz-option>
|
||||
<nz-select [(ngModel)]="templateId" style="width: 100%">
|
||||
<nz-option [nzValue]="item.value" [nzLabel]="item.label" *ngFor="let item of customers"></nz-option>
|
||||
</nz-select>
|
||||
</se>
|
||||
</div>
|
||||
@ -51,14 +47,10 @@
|
||||
<ng-template #editCannel>
|
||||
<div nz-row nzGutter="8">
|
||||
<div nz-col nzSpan="24" se-container [labelWidth]="140" [col]="1">
|
||||
<se label="合伙人名称">
|
||||
深圳某某有限公司
|
||||
</se>
|
||||
<se label="当前渠道销售">
|
||||
张三/13999999999
|
||||
</se>
|
||||
<se label="合伙人名称"> 深圳某某有限公司 </se>
|
||||
<se label="当前渠道销售"> 张三/13999999999 </se>
|
||||
<se label="渠道销售修改为" required>
|
||||
<nz-select ngModel="lucy" style="width: 100%;">
|
||||
<nz-select ngModel="lucy" style="width: 100%">
|
||||
<nz-option nzValue="jack" nzLabel="Jack"></nz-option>
|
||||
<nz-option nzValue="lucy" nzLabel="Lucy"></nz-option>
|
||||
</nz-select>
|
||||
@ -67,7 +59,7 @@
|
||||
<textarea rows="3" nz-input></textarea>
|
||||
</se>
|
||||
<se label="一并转移的客户">
|
||||
<p style="margin-top: 8px;">已选(0)</p>
|
||||
<p style="margin-top: 8px">已选(0)</p>
|
||||
<nz-table #rowSelectionTable [nzData]="customers" nzSize="small" nzBordered>
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
@ -1,9 +1,10 @@
|
||||
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { Component, ViewChild } from '@angular/core';
|
||||
import { Router } from '@angular/router';
|
||||
import { STComponent, STColumn, STRequestOptions, STChange } from '@delon/abc/st';
|
||||
import { SFComponent, SFSchema, SFDateWidgetSchema } from '@delon/form';
|
||||
import { NzModalService } from 'ng-zorro-antd/modal';
|
||||
import { AddCollectionInvoiceModalComponent } from 'src/app/routes/ticket-management/components/input-invoice/add-collection-invoice-modal/add-collection-invoice-modal.component';
|
||||
|
||||
import { PartnerListService } from '../../services/partner-list.service';
|
||||
import { PartnerAuditModalComponent } from '../partner-audit-modal/partner-audit-modal.component';
|
||||
|
||||
@ -12,7 +13,7 @@ import { PartnerAuditModalComponent } from '../partner-audit-modal/partner-audit
|
||||
templateUrl: './partner-list.component.html',
|
||||
styleUrls: ['../../../../commom/less/box.less']
|
||||
})
|
||||
export class PartnerListComponent implements OnInit {
|
||||
export class PartnerListComponent {
|
||||
@ViewChild('st', { static: true })
|
||||
st!: STComponent;
|
||||
@ViewChild('sf', { static: false })
|
||||
@ -23,14 +24,22 @@ export class PartnerListComponent implements OnInit {
|
||||
|
||||
@ViewChild('editTemplate', { static: true })
|
||||
editTemplate: any;
|
||||
templateId: any;
|
||||
templates: any[] = [];
|
||||
|
||||
@ViewChild('editCannel', { static: true })
|
||||
editCannel: any;
|
||||
customers: any[] = [];
|
||||
|
||||
constructor(public service: PartnerListService, private nzModalService: NzModalService, private router: Router) {}
|
||||
selectItem: any = {};
|
||||
|
||||
ngOnInit(): void {}
|
||||
constructor(public service: PartnerListService, private nzModalService: NzModalService, private router: Router) {
|
||||
this.service.getRebateConfig().subscribe(res => {
|
||||
if (res) {
|
||||
this.customers = res;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
beforeReq = (requestOptions: STRequestOptions) => {
|
||||
if (this.sf) {
|
||||
@ -47,16 +56,21 @@ export class PartnerListComponent implements OnInit {
|
||||
const modal = this.nzModalService.create({
|
||||
nzTitle: '审核',
|
||||
nzContent: PartnerAuditModalComponent,
|
||||
nzComponentParams: { info: item },
|
||||
nzComponentParams: { info: { ...item, enterpriseName: item.enterpriseName || item.contactName } },
|
||||
nzFooter: null
|
||||
});
|
||||
}
|
||||
|
||||
editTemplateAction(item: any) {
|
||||
this.selectItem = item;
|
||||
const modal = this.nzModalService.create({
|
||||
nzTitle: '修改返佣模板',
|
||||
nzContent: this.editTemplate,
|
||||
nzOnOk: () => {
|
||||
if (!this.templateId) {
|
||||
this.service.msgSrv.warning('请选择返佣模板');
|
||||
return false;
|
||||
}
|
||||
this.confirmEditTemplate();
|
||||
return false;
|
||||
}
|
||||
@ -67,24 +81,36 @@ export class PartnerListComponent implements OnInit {
|
||||
const modal = this.nzModalService.confirm({
|
||||
nzTitle: '确定要修改返佣模板吗?',
|
||||
nzOnOk: () => {
|
||||
this.service
|
||||
.request(this.service.$api_update_partner_template, {
|
||||
id: this.selectItem.id,
|
||||
templateId: this.templateId
|
||||
})
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('修改成功');
|
||||
this.nzModalService.closeAll();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
editCannelAction(item: any) {
|
||||
const modal = this.nzModalService.create({
|
||||
nzTitle: '修改返佣模板',
|
||||
nzWidth: 650,
|
||||
nzContent: this.editCannel,
|
||||
nzOnOk: () => {
|
||||
this.confirmEditCannel();
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
confirmEditCannel() {
|
||||
editCannelAction(item: any) {
|
||||
this.selectItem = item;
|
||||
const modal = this.nzModalService.create({
|
||||
nzTitle: '修改渠道销售',
|
||||
nzWidth: 650,
|
||||
nzContent: this.editCannel,
|
||||
nzOnOk: () => {
|
||||
this.confirmEditCannel(item);
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
confirmEditCannel(item: any) {
|
||||
const modal = this.nzModalService.confirm({
|
||||
nzTitle: '确定提交吗?',
|
||||
nzOnOk: () => {
|
||||
@ -93,6 +119,29 @@ export class PartnerListComponent implements OnInit {
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 重新发起crm
|
||||
* @param item
|
||||
*/
|
||||
reSendCRM(item: any) {
|
||||
const modal = this.nzModalService.confirm({
|
||||
nzTitle: '是否确定重新发起CRM?',
|
||||
nzOnOk: () => {
|
||||
this.service
|
||||
.request(this.service.$api_resend_crm, {
|
||||
id: item.id
|
||||
})
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('发起成功');
|
||||
} else {
|
||||
this.service.msgSrv.warning('发起失败');
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
routeTo(route: string) {
|
||||
this.router.navigate([route]);
|
||||
}
|
||||
@ -122,19 +171,19 @@ export class PartnerListComponent implements OnInit {
|
||||
hidden: true
|
||||
}
|
||||
},
|
||||
paycode: {
|
||||
enterpriseName: {
|
||||
type: 'string',
|
||||
title: '合伙人名称'
|
||||
},
|
||||
paycode2: {
|
||||
contactName: {
|
||||
type: 'string',
|
||||
title: '企业管理员'
|
||||
},
|
||||
paycod3e: {
|
||||
contactMobile: {
|
||||
type: 'string',
|
||||
title: '手机号'
|
||||
},
|
||||
paycod31e: {
|
||||
channelId: {
|
||||
type: 'string',
|
||||
title: '渠道销售',
|
||||
ui: {
|
||||
@ -144,32 +193,37 @@ export class PartnerListComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
},
|
||||
orderS2n: {
|
||||
partnerType: {
|
||||
type: 'string',
|
||||
title: '类型',
|
||||
enum: [
|
||||
{ value: '', label: '全部' },
|
||||
{ value: 1, label: '企业' },
|
||||
{ value: 2, label: '个人' }
|
||||
],
|
||||
ui: {
|
||||
widget: 'dict-select',
|
||||
containsAllLabel: true,
|
||||
params: { dictKey: 'refund:apply:status' },
|
||||
widget: 'select',
|
||||
placeholder: '请选择',
|
||||
visibleIf: {
|
||||
expand: (value: boolean) => value
|
||||
}
|
||||
}
|
||||
},
|
||||
paytype: {
|
||||
default: ''
|
||||
},
|
||||
approvalStatus: {
|
||||
type: 'string',
|
||||
title: '认证审核状态',
|
||||
ui: {
|
||||
widget: 'dict-select',
|
||||
containsAllLabel: true,
|
||||
params: { dictKey: 'pay:mode' },
|
||||
placeholder: '请选择',
|
||||
visibleIf: {
|
||||
expand: (value: boolean) => value
|
||||
}
|
||||
}
|
||||
},
|
||||
paymode: {
|
||||
signStatus: {
|
||||
type: 'string',
|
||||
title: '签约状态',
|
||||
ui: {
|
||||
@ -182,7 +236,7 @@ export class PartnerListComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
},
|
||||
paymo1de: {
|
||||
crmStatus: {
|
||||
type: 'string',
|
||||
title: 'CRM状态',
|
||||
ui: {
|
||||
@ -198,41 +252,47 @@ export class PartnerListComponent implements OnInit {
|
||||
paymo11de: {
|
||||
type: 'string',
|
||||
title: '注册渠道',
|
||||
enum: [
|
||||
{ value: '', label: '全部' },
|
||||
{ value: 1, label: '合伙人注册' },
|
||||
{ value: 2, label: '平台添加' }
|
||||
],
|
||||
ui: {
|
||||
widget: 'dict-select',
|
||||
containsAllLabel: true,
|
||||
params: { dictKey: 'pay:mode' },
|
||||
widget: 'select',
|
||||
placeholder: '请选择',
|
||||
visibleIf: {
|
||||
expand: (value: boolean) => value
|
||||
}
|
||||
}
|
||||
},
|
||||
paymo11d1e: {
|
||||
default: ''
|
||||
},
|
||||
templateId: {
|
||||
type: 'string',
|
||||
title: '返佣模板',
|
||||
ui: {
|
||||
widget: 'dict-select',
|
||||
containsAllLabel: true,
|
||||
params: { dictKey: 'pay:mode' },
|
||||
widget: 'select',
|
||||
placeholder: '请选择',
|
||||
visibleIf: {
|
||||
expand: (value: boolean) => value
|
||||
}
|
||||
}
|
||||
},
|
||||
paymo11d11e: {
|
||||
lockedStatus: {
|
||||
type: 'string',
|
||||
title: '合伙人状态',
|
||||
enum: [
|
||||
{ value: '', label: '全部' },
|
||||
{ value: 0, label: '启用' },
|
||||
{ value: 1, label: '冻结' }
|
||||
],
|
||||
ui: {
|
||||
widget: 'dict-select',
|
||||
containsAllLabel: true,
|
||||
params: { dictKey: 'pay:mode' },
|
||||
widget: 'select',
|
||||
placeholder: '请选择',
|
||||
visibleIf: {
|
||||
expand: (value: boolean) => value
|
||||
}
|
||||
}
|
||||
},
|
||||
default: ''
|
||||
},
|
||||
createTime: {
|
||||
title: '注册时间',
|
||||
@ -251,20 +311,63 @@ export class PartnerListComponent implements OnInit {
|
||||
|
||||
private initST(): STColumn[] {
|
||||
return [
|
||||
{ title: '合伙人名称', index: 'payCode', width: 180 },
|
||||
{ title: '付款编码', index: 'ltdName', width: 160 },
|
||||
{ title: '邀请码', index: 'payDate', className: 'text-center', width: 130 },
|
||||
{ title: '企业管理员', index: 'payDate', width: 150 },
|
||||
{ title: '手机号', index: 'payDate', className: 'text-center', width: 150 },
|
||||
{ title: '类型', index: 'payDate', className: 'text-center', width: 130 },
|
||||
{ title: '注册渠道', index: 'payDate', type: 'date', width: 130 },
|
||||
{ title: '注册时间', index: 'payDate', className: 'text-center', width: 170 },
|
||||
{ title: '渠道销售', index: 'payDate', width: 170 },
|
||||
{ title: '返佣模板', index: 'payDate', width: 150 },
|
||||
{ title: '认证审核状态', index: 'payDate', width: 150 },
|
||||
{ title: '签约状态', index: 'payDate', width: 150 },
|
||||
{ title: 'CRM状态', index: 'payDate', width: 150 },
|
||||
{ title: '合伙人状态', index: 'payDate', className: 'text-center', width: 140 },
|
||||
{ title: '合伙人名称', index: 'enterpriseName', width: 180, format: item => `${item.enterpriseName || item.contactName}` },
|
||||
{ title: '付款编码', index: 'payCode', width: 160 },
|
||||
{ title: '邀请码', index: 'invitationCode', className: 'text-center', width: 130 },
|
||||
{ title: '企业管理员', index: 'contactName', width: 150 },
|
||||
{ title: '手机号', index: 'contactMobile', className: 'text-center', width: 150 },
|
||||
{ title: '类型', index: 'partnerType', className: 'text-center', width: 130, type: 'enum', enum: { 1: '企业', 2: '个人' } },
|
||||
{ title: '注册渠道', index: 'source', type: 'enum', enum: { 1: '合伙人注册', 2: '平台添加' }, width: 130 },
|
||||
{ title: '注册时间', index: 'createTime', className: 'text-center', width: 170 },
|
||||
{ title: '渠道销售', index: 'channelId', width: 170 },
|
||||
{ title: '返佣模板', index: 'templateName', width: 150 },
|
||||
{
|
||||
title: '认证审核状态',
|
||||
index: 'approvalStatus',
|
||||
width: 150,
|
||||
type: 'badge',
|
||||
badge: {
|
||||
0: { text: '草稿', color: 'default' },
|
||||
10: { text: '待审核', color: 'processing' },
|
||||
20: { text: '审核通过', color: 'success' },
|
||||
30: { text: '驳回', color: 'error' }
|
||||
}
|
||||
},
|
||||
{
|
||||
title: '签约状态',
|
||||
index: 'signStatus',
|
||||
width: 150,
|
||||
type: 'badge',
|
||||
badge: {
|
||||
10: { text: '待合伙人签约', color: 'default' },
|
||||
15: { text: '签约中', color: 'processing' },
|
||||
20: { text: '平台签约完成', color: 'success' },
|
||||
30: { text: '驳回', color: 'error' }
|
||||
}
|
||||
},
|
||||
{
|
||||
title: 'CRM状态',
|
||||
index: 'crmStatus',
|
||||
width: 150,
|
||||
type: 'badge',
|
||||
badge: {
|
||||
0: { text: '未发起', color: 'default' },
|
||||
10: { text: '待审核', color: 'processing' },
|
||||
20: { text: '审核通过', color: 'success' },
|
||||
30: { text: '驳回', color: 'error' }
|
||||
}
|
||||
},
|
||||
{
|
||||
title: '合伙人状态',
|
||||
index: 'lockedStatus',
|
||||
className: 'text-center',
|
||||
width: 140,
|
||||
type: 'badge',
|
||||
badge: {
|
||||
0: { text: '启用', color: 'success' },
|
||||
1: { text: '冻结', color: 'error' }
|
||||
}
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
fixed: 'right',
|
||||
@ -272,8 +375,18 @@ export class PartnerListComponent implements OnInit {
|
||||
buttons: [
|
||||
{ type: 'divider' },
|
||||
{
|
||||
text: '详情<br>',
|
||||
click: item => this.router.navigate(['/partner/partner-list/detail/' + item.id])
|
||||
text: '详情',
|
||||
click: item => {
|
||||
if (item.partnerType === 1) {
|
||||
this.router.navigate([`/partner/partner-list/etp-detail/${item.id}`]);
|
||||
} else {
|
||||
this.router.navigate([`/partner/partner-list/personal-detail/${item.id}`]);
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
text: '审核<br>',
|
||||
click: item => this.auditPartner(item)
|
||||
},
|
||||
{
|
||||
text: '修改返佣模板',
|
||||
@ -283,13 +396,9 @@ export class PartnerListComponent implements OnInit {
|
||||
text: '修改渠道销售',
|
||||
click: item => this.editCannelAction(item)
|
||||
},
|
||||
{
|
||||
text: '审核<br>',
|
||||
click: item => this.auditPartner(item)
|
||||
},
|
||||
{
|
||||
text: '重发CRM流程',
|
||||
click: item => this.router.navigate(['/partner/account-management/list/detail/' + item.id])
|
||||
click: item => this.reSendCRM(item)
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@ -3,5 +3,5 @@
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button nz-button type="button" (click)="close()">取消</button>
|
||||
<button nz-button type="button" nzType="primary" (click)="sure()" [disabled]="!sf.valid">保存</button>
|
||||
<button nz-button type="button" nzType="primary" (click)="sure()" [disabled]="!sf.valid">确定</button>
|
||||
</div>
|
||||
@ -34,7 +34,7 @@ export class PartnerAuditModalComponent implements OnInit {
|
||||
title: '合伙人名称',
|
||||
type: 'string',
|
||||
ui: { widget: 'text' },
|
||||
default: user.name
|
||||
default: user.enterpriseName
|
||||
},
|
||||
status: {
|
||||
title: '审核结果',
|
||||
@ -50,7 +50,7 @@ export class PartnerAuditModalComponent implements OnInit {
|
||||
},
|
||||
default: true
|
||||
},
|
||||
a: {
|
||||
channelId: {
|
||||
title: '渠道销售',
|
||||
type: 'string',
|
||||
enum: [
|
||||
@ -70,7 +70,7 @@ export class PartnerAuditModalComponent implements OnInit {
|
||||
},
|
||||
default: ''
|
||||
},
|
||||
b: {
|
||||
approvalOpinion: {
|
||||
title: '备注',
|
||||
type: 'string',
|
||||
maxLength: 100,
|
||||
@ -88,43 +88,41 @@ export class PartnerAuditModalComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
},
|
||||
required: ['a', 'b']
|
||||
required: ['channelId', 'approvalOpinion']
|
||||
};
|
||||
}
|
||||
|
||||
sure() {
|
||||
if (this.info.isPass || this.sf.value.status) {
|
||||
this.nzModalService.confirm({
|
||||
nzTitle: `确定以“${this.info.userName}/${this.info.mobile}”的名义重新发起CRM《付款对象合同管理》吗?`,
|
||||
nzTitle: `确定以“${this.info.channelIdLabel}”的名义重新发起CRM《付款对象合同管理》吗?`,
|
||||
nzOnOk: () => {
|
||||
this.audit();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
this.audit();
|
||||
}
|
||||
}
|
||||
|
||||
audit() {
|
||||
const params: any = {
|
||||
...this.sf.value,
|
||||
id: this.info.id,
|
||||
auditStatusEnum: this.info.isPass || this.sf.value.status ? '20' : '30'
|
||||
};
|
||||
this.service
|
||||
.request(this.service.$api_audit_partner, {
|
||||
auditStatusEnum: params.auditStatusEnum,
|
||||
id: params.id,
|
||||
approvalOpinion: params.approvalOpinion
|
||||
})
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('审核成功!');
|
||||
this.close();
|
||||
}
|
||||
});
|
||||
// if (!this.sf.value.roleId || this.sf.value.roleId.length === 0) {
|
||||
// this.service.msgSrv.error('员工角色不能为空!');
|
||||
// return;
|
||||
// }
|
||||
// if (this.i.userId === 0) {
|
||||
// const params: any = {
|
||||
// ...this.sf.value
|
||||
// };
|
||||
// this.service.request(this.service.$api_add_staff, params).subscribe(res => {
|
||||
// if (res) {
|
||||
// this.service.msgSrv.success('保存成功!');
|
||||
// this.modal.close(true);
|
||||
// }
|
||||
// });
|
||||
// } else {
|
||||
// const params: any = {
|
||||
// appUserId: this.i.appUserId,
|
||||
// ...this.sf.value
|
||||
// };
|
||||
// this.service.request(this.service.$api_edit_staff, params).subscribe(res => {
|
||||
// if (res) {
|
||||
// this.service.msgSrv.success('编辑成功!');
|
||||
// this.modal.close(true);
|
||||
// }
|
||||
// });
|
||||
// }
|
||||
}
|
||||
|
||||
close() {
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
<!-- 页头 -->
|
||||
<page-header-wrapper [logo]="logo" [content]="content" [title]="'合伙人详情'" [ngClass]="{'affix': scrollTop>210}">
|
||||
<page-header-wrapper [logo]="logo" [content]="content" [title]="'合伙人详情'" [ngClass]="{ affix: scrollTop > 210 }">
|
||||
<ng-template #logo>
|
||||
<button nz-button nz-tooltip nzTooltipTitle="返回上一页" (click)="goBack()">
|
||||
<i nz-icon nzType="left" nzTheme="outline"></i>
|
||||
@ -10,14 +10,13 @@
|
||||
<div class="user-info" nz-row>
|
||||
<div nz-col [nzXl]="18" [nzLg]="24" [nzSm]="24" [nzXs]="24" class="d-flex">
|
||||
<img [src]="detailData?.enterpriseLogo" />
|
||||
<div style="flex: 1;">
|
||||
<div style="flex: 1">
|
||||
<div nz-row>
|
||||
<div nz-col [nzLg]="12" [nzSm]="24" [nzXs]="24">
|
||||
<p style="margin-bottom: 0;">{{ detailData?.enterpriseName }}</p>
|
||||
<p style="margin-bottom: 0">{{ detailData?.enterpriseName }}</p>
|
||||
</div>
|
||||
<div nz-col [nzLg]="12" [nzSm]="24" [nzXs]="24">
|
||||
<nz-badge nzStatus="success" nzText="正常" *ngIf="detailData?.stateLocked === 0">
|
||||
</nz-badge>
|
||||
<nz-badge nzStatus="success" nzText="正常" *ngIf="detailData?.stateLocked === 0"> </nz-badge>
|
||||
<nz-badge nzStatus="error" nzText="冻结" *ngIf="detailData?.stateLocked === 1"></nz-badge>
|
||||
</div>
|
||||
</div>
|
||||
@ -25,55 +24,39 @@
|
||||
<div nz-col [nzLg]="12" [nzSm]="24" [nzXs]="24">
|
||||
<p>{{ detailData?.unifiedSocialCreditCode }}</p>
|
||||
</div>
|
||||
<div nz-col [nzLg]="12" [nzSm]="24" [nzXs]="24">
|
||||
企业合伙人
|
||||
</div>
|
||||
<div nz-col [nzLg]="12" [nzSm]="24" [nzXs]="24"> 企业合伙人 </div>
|
||||
</div>
|
||||
<div nz-row>
|
||||
<div nz-col [nzLg]="12" [nzSm]="24" [nzXs]="24"> 注册时间:{{ detailData?.createTime }} </div>
|
||||
<div nz-col [nzLg]="12" [nzSm]="24" [nzXs]="24">
|
||||
注册时间:{{detailData?.createTime}}
|
||||
</div>
|
||||
<div nz-col [nzLg]="12" [nzSm]="24" [nzXs]="24">
|
||||
所属城市:{{detailData?.createTime}}
|
||||
所属城市:{{enterpriseDefaultCityName}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div nz-col [nzXl]="6" [nzLg]="24" [nzSm]="24" [nzXs]="24" class="text-right mt-sm">
|
||||
<ng-container *ngIf="isEdit;else editButton">
|
||||
<button [disabled]="service.http.loading" nz-button (click)="reset()">
|
||||
取消
|
||||
</button>
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger (click)="save()">
|
||||
保存
|
||||
</button>
|
||||
<ng-container *ngIf="isEdit; else editButton">
|
||||
<button [disabled]="service.http.loading" nz-button (click)="reset()"> 取消 </button>
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger (click)="save()"> 保存 </button>
|
||||
</ng-container>
|
||||
<ng-template #editButton>
|
||||
<ng-container>
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger (click)="auditPartner(true)">
|
||||
通过
|
||||
</button>
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger (click)="auditPartner(false)">
|
||||
驳回
|
||||
</button>
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger (click)="auditPartner(true)"> 通过 </button>
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger (click)="auditPartner(false)"> 驳回 </button>
|
||||
</ng-container>
|
||||
<ng-container *ngIf="detailData?.approvalStatus!=10">
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger nz-popconfirm
|
||||
[nzPopconfirmTitle]="enable" (nzOnConfirm)="freezeOrResume(0)"
|
||||
nzPopconfirmPlacement="bottomRight" *ngIf="detailData?.stateLocked" acl
|
||||
[acl-ability]="['USERCENTER-FREIGHT-ENTERPRISE-D-lock']">
|
||||
<ng-container *ngIf="detailData?.approvalStatus != 10">
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger nz-popconfirm [nzPopconfirmTitle]="enable"
|
||||
(nzOnConfirm)="freezeOrResume(0)" nzPopconfirmPlacement="bottomRight" *ngIf="detailData?.stateLocked"
|
||||
acl [acl-ability]="['USERCENTER-FREIGHT-ENTERPRISE-D-lock']">
|
||||
启用
|
||||
</button>
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger nz-popconfirm
|
||||
[nzPopconfirmTitle]="frozen" (nzOnConfirm)="freezeOrResume(1)"
|
||||
nzPopconfirmPlacement="bottomRight" *ngIf="!detailData?.stateLocked" acl
|
||||
[acl-ability]="['USERCENTER-FREIGHT-ENTERPRISE-D-lock']">
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger nz-popconfirm [nzPopconfirmTitle]="frozen"
|
||||
(nzOnConfirm)="freezeOrResume(1)" nzPopconfirmPlacement="bottomRight" *ngIf="!detailData?.stateLocked"
|
||||
acl [acl-ability]="['USERCENTER-FREIGHT-ENTERPRISE-D-lock']">
|
||||
冻结
|
||||
</button>
|
||||
</ng-container>
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger (click)="ratify()">
|
||||
修改
|
||||
</button>
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger (click)="ratify()"> 修改 </button>
|
||||
</ng-template>
|
||||
</div>
|
||||
</div>
|
||||
@ -81,66 +64,76 @@
|
||||
</ng-template>
|
||||
|
||||
<ng-template #frozen>
|
||||
<ng-container
|
||||
*ngTemplateOutlet="PopconfirmTempalte;context:{title:'确定冻结该企业吗?',content:'停用后,该企业将被限制使用,不限于访问受限、无法发布货源等,请谨慎操作'}">
|
||||
<ng-container *ngTemplateOutlet="
|
||||
PopconfirmTempalte;
|
||||
context: { title: '确定冻结该合伙人吗?', content: '停用后,该合伙人将被限制使用,不限于访问受限、邀请客户、佣金收益等,请谨慎操作' }
|
||||
">
|
||||
</ng-container>
|
||||
</ng-template>
|
||||
<ng-template #enable>
|
||||
<ng-container
|
||||
*ngTemplateOutlet="PopconfirmTempalte;context:{title:'确定启用该企业吗?',content:'启用后,该企业将恢复正常使用功能,请再次确认'}">
|
||||
</ng-container>
|
||||
</ng-template>
|
||||
<ng-template #Payenable>
|
||||
<ng-container
|
||||
*ngTemplateOutlet="PopconfirmTempalte;context:{title:'确定关闭该企业支付权限吗?',content:'停用后,该企业将被限制使用支付功能,请谨慎操作'}">
|
||||
</ng-container>
|
||||
</ng-template>
|
||||
<ng-template #Payfrozen>
|
||||
<ng-container
|
||||
*ngTemplateOutlet="PopconfirmTempalte;context:{title:'确定开通该企业支付权限吗?',content:'启用后,该企业将恢复正常支付功能,请再次确认'}">
|
||||
<ng-container *ngTemplateOutlet="
|
||||
PopconfirmTempalte;
|
||||
context: { title: '确定启用该合伙人吗?', content: '启用后,该该合伙人将恢复正常使用功能,请再次确认' }
|
||||
">
|
||||
</ng-container>
|
||||
</ng-template>
|
||||
</page-header-wrapper>
|
||||
|
||||
<nz-card [class]="isEdit?'edit-box':'readOnly-box'">
|
||||
<nz-card [class]="isEdit ? 'edit-box' : 'readOnly-box'">
|
||||
<sv-container col="3">
|
||||
<sv-title>企业管理员信息</sv-title>
|
||||
<sv label="姓名">
|
||||
<input nz-input type="text" [(ngModel)]="detailData.adminUserInfo.name" [readonly]="!isEdit"
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit?'':'-'">
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit ? '' : '-'" />
|
||||
</sv>
|
||||
<sv label="手机号">
|
||||
<input nz-input type="text" [(ngModel)]="detailData.adminUserInfo.mobile" [readonly]="!isEdit"
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit?'':'-'">
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit ? '' : '-'" />
|
||||
</sv>
|
||||
<sv label="身份证号">
|
||||
<input nz-input type="text" [(ngModel)]="detailData.adminUserInfo.certificateNumber" [readonly]="!isEdit"
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit?'':'-'">
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit ? '' : '-'" />
|
||||
</sv>
|
||||
<sv label="身份证照" col="2">
|
||||
<div class="d-flex">
|
||||
<ng-container
|
||||
*ngTemplateOutlet="uploadTemplate;context:{data:detailData?.adminUserInfo,status:isEdit,key:'certificatePhotoFrontWatermark',key2:'certificatePhotoFront',hover:'certificateBackFront'}">
|
||||
<ng-container *ngTemplateOutlet="
|
||||
uploadTemplate;
|
||||
context: {
|
||||
data: detailData?.adminUserInfo,
|
||||
status: isEdit,
|
||||
key: 'certificatePhotoFrontWatermark',
|
||||
key2: 'certificatePhotoFront',
|
||||
hover: 'certificateBackFront'
|
||||
}
|
||||
">
|
||||
</ng-container>
|
||||
<ng-container
|
||||
*ngTemplateOutlet="uploadTemplate;context:{data:detailData?.adminUserInfo,status:isEdit,key:'certificatePhotoBackWatermark',key2:'certificatePhotoBack',hover:'certificateBack'}">
|
||||
<ng-container *ngTemplateOutlet="
|
||||
uploadTemplate;
|
||||
context: {
|
||||
data: detailData?.adminUserInfo,
|
||||
status: isEdit,
|
||||
key: 'certificatePhotoBackWatermark',
|
||||
key2: 'certificatePhotoBack',
|
||||
hover: 'certificateBack'
|
||||
}
|
||||
">
|
||||
</ng-container>
|
||||
</div>
|
||||
</sv>
|
||||
<sv label="身份证有效期" col="1">
|
||||
<nz-date-picker [(ngModel)]="detailData.operatingStartTime" [nzDisabled]="!isEdit" nzPlaceHolder=" "
|
||||
[nzBorderless]="!isEdit" [nzSuffixIcon]="isEdit?'calendar':''" style="width: 100px;" class="calendar">
|
||||
<nz-date-picker [(ngModel)]="detailData.adminUserInfo.validStartTime" [nzDisabled]="!isEdit" nzPlaceHolder=" "
|
||||
[nzBorderless]="!isEdit" [nzSuffixIcon]="isEdit ? 'calendar' : ''" style="width: 100px" class="calendar">
|
||||
</nz-date-picker>
|
||||
-
|
||||
<ng-container *ngIf="!isEdit && !detailData?.operatingEndTime && detailData?.operatingStartTime">
|
||||
<label style="padding-left: 11px;">长期</label>
|
||||
<ng-container *ngIf="!isEdit && !detailData?.adminUserInfo.validEndTime && detailData?.adminUserInfo.validStartTime">
|
||||
<label style="padding-left: 11px">长期</label>
|
||||
</ng-container>
|
||||
<nz-date-picker [(ngModel)]="detailData.operatingEndTime" [nzDisabled]="!isEdit" nzPlaceHolder=" "
|
||||
[nzBorderless]="!isEdit" [nzSuffixIcon]="isEdit?'calendar':''" style="width: 100px;" class="calendar">
|
||||
<nz-date-picker [(ngModel)]="detailData.adminUserInfo.validEndTime" [nzDisabled]="!isEdit" nzPlaceHolder=" "
|
||||
[nzBorderless]="!isEdit" [nzSuffixIcon]="isEdit ? 'calendar' : ''" style="width: 100px" class="calendar">
|
||||
</nz-date-picker>
|
||||
<ng-container *ngIf="isEdit">
|
||||
<label nz-checkbox [ngModel]="!!!detailData.operatingEndTime"
|
||||
(ngModelChange)="$event?detailData.operatingEndTime='':''" class="ml-sm">长期</label>
|
||||
<label nz-checkbox [ngModel]="!!!detailData.adminUserInfo.validEndTime"
|
||||
(ngModelChange)="$event ? (detailData.adminUserInfo.validEndTime = '') : ''" class="ml-sm">长期</label>
|
||||
</ng-container>
|
||||
</sv>
|
||||
</sv-container>
|
||||
@ -149,56 +142,60 @@
|
||||
<sv-container col="3" class="mt16">
|
||||
<sv-title>
|
||||
<label class="mr-md">企业基本信息</label>
|
||||
<label *ngIf="detailData?.approvalStatus===10" style="color: #1890ff;"><i nz-icon nzType="info-circle"
|
||||
<label *ngIf="detailData?.approvalStatus === 10" style="color: #1890ff"><i nz-icon nzType="info-circle"
|
||||
nzTheme="fill" class="mr-xs"></i>待审核
|
||||
</label>
|
||||
<label *ngIf="detailData?.approvalStatus===20" style="color: #52c41a;"><i nz-icon nzType="check-circle"
|
||||
<label *ngIf="detailData?.approvalStatus === 20" style="color: #52c41a"><i nz-icon nzType="check-circle"
|
||||
nzTheme="fill" class="mr-xs"></i>审核通过
|
||||
</label>
|
||||
<label *ngIf="detailData?.approvalStatus===30" style="color: #ff4d4f;"><i nz-icon nzType="close-circle"
|
||||
nzTheme="fill" class="mr-xs"></i>驳回 驳回原因:{{detailData?.approvalOpinion}}
|
||||
<label *ngIf="detailData?.approvalStatus === 30" style="color: #ff4d4f"><i nz-icon nzType="close-circle"
|
||||
nzTheme="fill" class="mr-xs"></i>驳回 驳回原因:{{ detailData?.approvalOpinion }}
|
||||
</label>
|
||||
<p style="margin-bottom: 0;">
|
||||
<p style="margin-bottom: 0">
|
||||
四要素验证:
|
||||
<label *ngIf="detailData?.esignCheckStatus===0" style="color: #ff4d4f;"><i nz-icon nzType="info-circle"
|
||||
nzTheme="fill" class="mr-xs"></i>不通过 驳回原因:{{detailData?.esignCheckMsg}}
|
||||
<label *ngIf="detailData?.esignCheckStatus === 0" style="color: #ff4d4f"><i nz-icon nzType="info-circle"
|
||||
nzTheme="fill" class="mr-xs"></i>不通过 驳回原因:{{ detailData?.esignCheckMsg }}
|
||||
</label>
|
||||
<label *ngIf="detailData?.esignCheckStatus===1" style="color: #52c41a;"><i nz-icon nzType="check-circle"
|
||||
<label *ngIf="detailData?.esignCheckStatus === 1" style="color: #52c41a"><i nz-icon nzType="check-circle"
|
||||
nzTheme="fill" class="mr-xs"></i>通过
|
||||
</label>
|
||||
<label *ngIf="detailData?.esignCheckStatus===2" style="color: #1890ff;"><i nz-icon
|
||||
nzType="close-circle" nzTheme="fill" class="mr-xs"></i>未认证
|
||||
<label *ngIf="detailData?.esignCheckStatus === 2" style="color: #1890ff"><i nz-icon nzType="close-circle"
|
||||
nzTheme="fill" class="mr-xs"></i>未认证
|
||||
</label>
|
||||
</p>
|
||||
</sv-title>
|
||||
<sv label="公司名称">
|
||||
<input nz-input type="text" [(ngModel)]="detailData.enterpriseName" [readonly]="!isEdit"
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit?'':'-'">
|
||||
<!-- <input nz-input type="text" [(ngModel)]="" [readonly]="!isEdit" [nzBorderless]="!isEdit"
|
||||
[placeholder]="isEdit ? '' : '-'" /> -->
|
||||
{{detailData.enterpriseName}}
|
||||
</sv>
|
||||
<sv label="统一社会信用代码">
|
||||
<input nz-input type="text" [(ngModel)]="detailData.unifiedSocialCreditCode" [readonly]="!isEdit"
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit?'':'-'">
|
||||
<!-- <input nz-input type="text" [(ngModel)]="detailData.unifiedSocialCreditCode" [readonly]="!isEdit"
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit ? '' : '-'" /> -->
|
||||
{{detailData.unifiedSocialCreditCode}}
|
||||
</sv>
|
||||
<sv label="营业执照" col="2">
|
||||
<ng-container
|
||||
*ngTemplateOutlet="uploadTemplate;context:{data:detailData,status:isEdit,key:'licensePhotoWatermark',key2:'licensePhoto',hover:'detailPhoto'}">
|
||||
<ng-container *ngTemplateOutlet="
|
||||
uploadTemplate;
|
||||
context: { data: detailData, status: isEdit, key: 'licensePhotoWatermark', key2: 'licensePhoto', hover: 'detailPhoto' }
|
||||
">
|
||||
</ng-container>
|
||||
</sv>
|
||||
|
||||
<sv label="营业期限" col="1">
|
||||
<nz-date-picker [(ngModel)]="detailData.operatingStartTime" [nzDisabled]="!isEdit" nzPlaceHolder=" "
|
||||
[nzBorderless]="!isEdit" [nzSuffixIcon]="isEdit?'calendar':''" style="width: 100px;" class="calendar">
|
||||
[nzBorderless]="!isEdit" [nzSuffixIcon]="isEdit ? 'calendar' : ''" style="width: 100px" class="calendar">
|
||||
</nz-date-picker>
|
||||
-
|
||||
<ng-container *ngIf="!isEdit && !detailData?.operatingEndTime && detailData?.operatingStartTime">
|
||||
<label style="padding-left: 11px;">长期</label>
|
||||
<label style="padding-left: 11px">长期</label>
|
||||
</ng-container>
|
||||
<nz-date-picker [(ngModel)]="detailData.operatingEndTime" [nzDisabled]="!isEdit" nzPlaceHolder=" "
|
||||
[nzBorderless]="!isEdit" [nzSuffixIcon]="isEdit?'calendar':''" style="width: 100px;" class="calendar">
|
||||
[nzBorderless]="!isEdit" [nzSuffixIcon]="isEdit ? 'calendar' : ''" style="width: 100px" class="calendar">
|
||||
</nz-date-picker>
|
||||
<ng-container *ngIf="isEdit">
|
||||
<label nz-checkbox [ngModel]="!!!detailData.operatingEndTime"
|
||||
(ngModelChange)="$event?detailData.operatingEndTime='':''" class="ml-sm">长期</label>
|
||||
(ngModelChange)="$event ? (detailData.operatingEndTime = '') : ''" class="ml-sm">长期</label>
|
||||
</ng-container>
|
||||
</sv>
|
||||
</sv-container>
|
||||
@ -206,49 +203,66 @@
|
||||
<sv-container col="3" class="mt16">
|
||||
<sv-title>企业法人信息</sv-title>
|
||||
<sv label="法定代表人">
|
||||
<input nz-input type="text" [(ngModel)]="detailData.legalPersonIdentityVO.name" [readonly]="!isEdit"
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit?'':'-'">
|
||||
<input nz-input type="text" [(ngModel)]="detailData.legalPersonIdentity.name" [readonly]="!isEdit"
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit ? '' : '-'" />
|
||||
</sv>
|
||||
<sv label="身份证号码">
|
||||
<input nz-input type="text" [(ngModel)]="detailData.legalPersonIdentityVO.certificateNumber"
|
||||
[readonly]="!isEdit" [nzBorderless]="!isEdit" [placeholder]="isEdit?'':'-'">
|
||||
<input nz-input type="text" [(ngModel)]="detailData.legalPersonIdentity.certificateNumber" [readonly]="!isEdit"
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit ? '' : '-'" />
|
||||
</sv>
|
||||
<sv label="身份证有效期" col="1">
|
||||
<nz-date-picker [(ngModel)]="detailData.legalPersonIdentityVO.validStartTime" [nzDisabled]="!isEdit"
|
||||
nzPlaceHolder=" " [nzBorderless]="!isEdit" [nzSuffixIcon]="isEdit?'calendar':''" style="width: 100px;"
|
||||
<nz-date-picker [(ngModel)]="detailData.legalPersonIdentity.validStartTime" [nzDisabled]="!isEdit"
|
||||
nzPlaceHolder=" " [nzBorderless]="!isEdit" [nzSuffixIcon]="isEdit ? 'calendar' : ''" style="width: 100px"
|
||||
class="calendar"></nz-date-picker>
|
||||
-
|
||||
<ng-container
|
||||
*ngIf="!isEdit && !detailData?.legalPersonIdentityVO?.validEndTime && detailData.legalPersonIdentityVO.validStartTime">
|
||||
<label style="padding-left: 11px;">长期</label>
|
||||
*ngIf="!isEdit && !detailData?.legalPersonIdentity?.validEndTime && detailData.legalPersonIdentity.validStartTime">
|
||||
<label style="padding-left: 11px">长期</label>
|
||||
</ng-container>
|
||||
<nz-date-picker [(ngModel)]="detailData.legalPersonIdentityVO.validEndTime" [nzDisabled]="!isEdit"
|
||||
nzPlaceHolder=" " [nzBorderless]="!isEdit" [nzSuffixIcon]="isEdit?'calendar':''" style="width: 100px;"
|
||||
class="calendar"></nz-date-picker>
|
||||
<nz-date-picker [(ngModel)]="detailData.legalPersonIdentity.validEndTime" [nzDisabled]="!isEdit" nzPlaceHolder=" "
|
||||
[nzBorderless]="!isEdit" [nzSuffixIcon]="isEdit ? 'calendar' : ''" style="width: 100px" class="calendar">
|
||||
</nz-date-picker>
|
||||
<ng-container *ngIf="isEdit">
|
||||
<label nz-checkbox [ngModel]="!!!detailData.legalPersonIdentityVO.validEndTime"
|
||||
(ngModelChange)="$event?detailData.legalPersonIdentityVO.validEndTime='':''"
|
||||
class="ml-sm">长期</label>
|
||||
<label nz-checkbox [ngModel]="!!!detailData.legalPersonIdentity.validEndTime"
|
||||
(ngModelChange)="$event ? (detailData.legalPersonIdentity.validEndTime = '') : ''" class="ml-sm">长期</label>
|
||||
</ng-container>
|
||||
</sv>
|
||||
<sv label="身份证照" col="1">
|
||||
<div class="d-flex">
|
||||
<ng-container
|
||||
*ngTemplateOutlet="uploadTemplate;context:{data:detailData?.legalPersonIdentityVO,status:isEdit,key:'certificatePhotoFrontWatermark',key2:'certificatePhotoFront',hover:'legalFront'}">
|
||||
<ng-container *ngTemplateOutlet="
|
||||
uploadTemplate;
|
||||
context: {
|
||||
data: detailData?.legalPersonIdentity,
|
||||
status: isEdit,
|
||||
key: 'certificatePhotoFrontWatermark',
|
||||
key2: 'certificatePhotoFront',
|
||||
hover: 'legalFront'
|
||||
}
|
||||
">
|
||||
</ng-container>
|
||||
<ng-container
|
||||
*ngTemplateOutlet="uploadTemplate;context:{data:detailData?.legalPersonIdentityVO,status:isEdit,key:'certificatePhotoBackWatermark',key2:'certificatePhotoBack',hover:'legalBack'}">
|
||||
<ng-container *ngTemplateOutlet="
|
||||
uploadTemplate;
|
||||
context: {
|
||||
data: detailData?.legalPersonIdentity,
|
||||
status: isEdit,
|
||||
key: 'certificatePhotoBackWatermark',
|
||||
key2: 'certificatePhotoBack',
|
||||
hover: 'legalBack'
|
||||
}
|
||||
">
|
||||
</ng-container>
|
||||
</div>
|
||||
</sv>
|
||||
<sv label="所属城市">
|
||||
<ng-container *ngIf="isEdit; else cascaderelseTemplate">
|
||||
<nz-cascader [(ngModel)]="enterpriseAddressCode" [nzLoadData]="loadRegionData">
|
||||
</nz-cascader>
|
||||
<nz-tree-select #areaTreeSelect style="width: 350px" [(ngModel)]="enterpriseAddressCode"
|
||||
[nzDropdownStyle]="{ 'max-height': '300px' }" [nzExpandedKeys]="enterpriseDefaultAddressCode"
|
||||
[nzNodes]="areaList" [nzAsyncData]="true" [nzCheckStrictly]="true" nzCheckable
|
||||
(nzExpandChange)="onExpandChange($event.node)" nzDropdownClassName="area-tree-select">
|
||||
</nz-tree-select>
|
||||
</ng-container>
|
||||
<ng-template #cascaderelseTemplate>
|
||||
{{ detailData?.fullRegionVO?.provinceName }}{{ detailData?.fullRegionVO?.cityName }}{{
|
||||
detailData?.fullRegionVO?.areaName }}
|
||||
{{ enterpriseDefaultCityName || '-' }}
|
||||
</ng-template>
|
||||
</sv>
|
||||
</sv-container>
|
||||
@ -256,15 +270,9 @@
|
||||
<nz-divider></nz-divider>
|
||||
<sv-container col="3" class="mt16">
|
||||
<sv-title>渠道销售信息</sv-title>
|
||||
<sv label="姓名">
|
||||
张学友
|
||||
</sv>
|
||||
<sv label="手机号">
|
||||
13999999999
|
||||
</sv>
|
||||
<sv label="绑定时间">
|
||||
2021-09-23 14:43:31
|
||||
</sv>
|
||||
<sv label="姓名"> {{ detailData?.channelName }} </sv>
|
||||
<sv label="手机号"> {{ detailData?.channelMobile }} </sv>
|
||||
<sv label="绑定时间"> {{ detailData?.bindChannelTime }} </sv>
|
||||
</sv-container>
|
||||
</nz-card>
|
||||
|
||||
@ -272,8 +280,8 @@
|
||||
<sv-container col="3" class="mt16">
|
||||
<sv-title>修改渠道销售记录</sv-title>
|
||||
<sv label="">
|
||||
<st #st [data]="service.$mock_url" [columns]="columns.logsColumn" [loading]="service.http.loading" bordered
|
||||
size="small" [page]="{show:false}" [scroll]="{ x:'1200px' }">
|
||||
<st #st [data]="service.$api_get_personal_channel_list" [columns]="columns.logsColumn"
|
||||
[loading]="service.http.loading" bordered size="small" [page]="{ show: false }" [scroll]="{ x: '1200px' }">
|
||||
</st>
|
||||
</sv>
|
||||
</sv-container>
|
||||
@ -282,10 +290,10 @@
|
||||
<ng-template #PopconfirmTempalte let-title="title" let-content="content">
|
||||
<div class="ant-popover-message">
|
||||
<i nz-icon nzType="info-circle" nzTheme="fill"></i>
|
||||
<div class="ant-popover-message-title ng-star-inserted self-ant-popover-title" style="font-size: 16px">{{title}}
|
||||
<div class="ant-popover-message-title ng-star-inserted self-ant-popover-title" style="font-size: 16px">{{ title }}
|
||||
</div>
|
||||
<div class="ant-popover-message-title ng-star-inserted">
|
||||
{{content}}
|
||||
{{ content }}
|
||||
</div>
|
||||
</div>
|
||||
</ng-template>
|
||||
@ -293,22 +301,16 @@
|
||||
<ng-template #uploadTemplate let-data="data" let-status="status" let-key="key" let-key2="key2" let-hover="hover">
|
||||
<nz-upload class="avatar-uploader" [nzAction]="uploadURl" nzName="multipartFile" nzListType="picture-card"
|
||||
[nzShowUploadList]="false" nzFileType="image/png,image/jpeg,image/jpg,image/gif"
|
||||
[nzDisabled]="!isEdit || disabledUpload" (nzChange)="changeUpload($event,data,key,key2,hover)">
|
||||
[nzDisabled]="!isEdit || disabledUpload" (nzChange)="changeUpload($event, data, key, key2, hover)">
|
||||
<ng-container *ngIf="!data[key] && isEdit">
|
||||
<i class="upload-icon" nz-icon [nzType]="service.http.loading ? 'loading' : 'plus'"></i>
|
||||
<div class="ant-upload-text">上传</div>
|
||||
</ng-container>
|
||||
<div *ngIf="data[key]" (mouseover)="detailData[hover]=true" (mouseleave)="detailData[hover]=false"
|
||||
(click)="$event.cancelBubble=true" class="image-hover">
|
||||
<img [src]="data[key]" style="width: 200px;height: 160px;" (click)="service.showImg(data[key])" />
|
||||
<div class="mask" *ngIf="detailData[hover] && isEdit"></div>
|
||||
<div class="mask-over" *ngIf="detailData[hover] && isEdit">
|
||||
<i nz-icon nzType="close-circle" nzTheme="fill" class="delete-icon"
|
||||
(click)="deleteImg(data,key,key2)"></i>
|
||||
<div style="display: flex;align-items: center;">
|
||||
<i nz-icon nzType="eye" nzTheme="fill" class="show-icon" (click)="service.showImg(data[key])"></i>
|
||||
</div>
|
||||
</div>
|
||||
<div *ngIf="data[key]" (mouseover)="detailData[hover] = true" (mouseleave)="detailData[hover] = false"
|
||||
(click)="$event.cancelBubble = true" class="image-hover">
|
||||
<img nz-image [nzSrc]="data[key]" style="width: 200px; height: 160px" />
|
||||
<i nz-icon *ngIf="detailData[hover] && isEdit" nzType="close-circle" nzTheme="fill" class="delete-icon"
|
||||
(click)="deleteImg(data, key, key2)"></i>
|
||||
</div>
|
||||
</nz-upload>
|
||||
</ng-template>
|
||||
@ -316,11 +318,11 @@
|
||||
<ng-template #logModal>
|
||||
<h2>转移客户数:10</h2>
|
||||
<st #st [data]="service.$mock_url" [columns]="columns.changeColumn" [loading]="service.http.loading" bordered
|
||||
size="small" [page]="{show:false}" [scroll]="{ x:'750px' }">
|
||||
size="small" [page]="{ show: false }" [scroll]="{ x: '750px' }">
|
||||
</st>
|
||||
<h2>不转移客户数:10</h2>
|
||||
<st #st [data]="service.$mock_url" [columns]="columns.beChangeColumn" [loading]="service.http.loading" bordered
|
||||
size="small" [page]="{show:false}" [scroll]="{ x:'750px' }">
|
||||
size="small" [page]="{ show: false }" [scroll]="{ x: '750px' }">
|
||||
</st>
|
||||
<p>
|
||||
客户转移:客户跟着上级合伙人转移一并到新渠道销售下,会同步发起CRM《客户转移》流程;不转移的,客户会与上级合伙人解绑,修改成功后,修改时间也是合伙人与客户的结算结束时间,成为原来渠道销售的直客。
|
||||
|
||||
@ -27,4 +27,11 @@
|
||||
z-index : 999 !important;
|
||||
width : 100% !important;
|
||||
}
|
||||
|
||||
.image-hover .delete-icon {
|
||||
top : unset !important;
|
||||
right : unset !important;
|
||||
margin-top : -15px;
|
||||
margin-left: -15px;
|
||||
}
|
||||
}
|
||||
@ -1,10 +1,13 @@
|
||||
import { DatePipe } from '@angular/common';
|
||||
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { Component, OnDestroy, OnInit, ViewChild } from '@angular/core';
|
||||
import { ActivatedRoute } from '@angular/router';
|
||||
import { apiConf } from '@conf/api.conf';
|
||||
import { STColumn } from '@delon/abc/st';
|
||||
import { NzModalService } from 'ng-zorro-antd/modal';
|
||||
import { NzFormatEmitEvent, NzTreeNode, NzTreeNodeOptions } from 'ng-zorro-antd/tree';
|
||||
import { NzTreeSelectComponent } from 'ng-zorro-antd/tree-select';
|
||||
import { Subscription, fromEvent } from 'rxjs';
|
||||
|
||||
import { PartnerListService } from '../../services/partner-list.service';
|
||||
import { PartnerAuditModalComponent } from '../partner-audit-modal/partner-audit-modal.component';
|
||||
|
||||
@ -14,21 +17,25 @@ import { PartnerAuditModalComponent } from '../partner-audit-modal/partner-audit
|
||||
styleUrls: ['./partner-detail.component.less'],
|
||||
providers: [DatePipe]
|
||||
})
|
||||
export class PartnerDetailComponent implements OnInit {
|
||||
export class PartnerDetailComponent implements OnInit, OnDestroy {
|
||||
@ViewChild('logModal')
|
||||
logModal: any;
|
||||
@ViewChild('areaTreeSelect')
|
||||
areaTreeSelect!: NzTreeSelectComponent;
|
||||
|
||||
columns: { logsColumn: STColumn[]; changeColumn: STColumn[]; beChangeColumn: STColumn[] } = this.initST();
|
||||
|
||||
detailData: any = { adminUserInfo: { name: '' }, legalPersonIdentityVO: { name: '' } };
|
||||
detailData: any = { adminUserInfo: { name: '' }, legalPersonIdentity: { name: '' } };
|
||||
tempalateData = { ...this.detailData };
|
||||
|
||||
isEdit = false;
|
||||
|
||||
uploadURl = apiConf.waterFileUpload;
|
||||
disabledUpload = false;
|
||||
enterpriseAddressCode: any = [];
|
||||
ltdId: any = [];
|
||||
enterpriseAddressCode: string[] = [];
|
||||
enterpriseDefaultAddressCode: string[] = [];
|
||||
enterpriseDefaultCityName: string = '';
|
||||
areaList = [];
|
||||
|
||||
esignCheckStatus: any = {
|
||||
0: '不通过',
|
||||
@ -50,35 +57,55 @@ export class PartnerDetailComponent implements OnInit {
|
||||
|
||||
ngOnInit() {
|
||||
this.initData();
|
||||
this.loadltdId();
|
||||
this.loadlAreaList();
|
||||
this.subscribeScoll = fromEvent(window, 'scroll').subscribe(event => {
|
||||
this.scrollTop = document.documentElement.scrollTop;
|
||||
});
|
||||
}
|
||||
loadltdId() {
|
||||
// this.service.getNetworkFreightForwarder().subscribe(res => {
|
||||
// if (res) {
|
||||
// this.ltdId = res;
|
||||
// }
|
||||
// });
|
||||
|
||||
loadlAreaList() {
|
||||
this.service.request(this.service.$api_get_region_by_code, { regionCode: '' }).subscribe(res => {
|
||||
if (res) {
|
||||
this.areaList = res.map((item: any) => ({
|
||||
...item,
|
||||
isLeaf: false,
|
||||
title: item.name,
|
||||
key: item.regionCode.toString(),
|
||||
disabled: true,
|
||||
isDisableCheckbox: true
|
||||
}));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
initData() {
|
||||
// this.service
|
||||
// .request(this.service.$api_get_freight_detail, {
|
||||
// id: this.route.snapshot.params.id
|
||||
// })
|
||||
// .subscribe(res => {
|
||||
// if (res) {
|
||||
// this.detailData = res;
|
||||
// this.tempalateData = { ...this.detailData };
|
||||
// this.enterpriseAddressCode = [
|
||||
// Number(this.detailData.fullRegionVO?.provinceCode),
|
||||
// Number(this.detailData.fullRegionVO?.cityCode),
|
||||
// Number(this.detailData.fullRegionVO?.areaCode)
|
||||
// ];
|
||||
// }
|
||||
// });
|
||||
this.service
|
||||
.request(this.service.$api_get_ent_partner_detail, {
|
||||
id: this.route.snapshot.params.id
|
||||
})
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.detailData = res;
|
||||
// 存储数据源
|
||||
this.tempalateData = { ...this.detailData };
|
||||
// 拼接所属城市
|
||||
if (this.detailData?.cityCodesList?.length > 0) {
|
||||
this.enterpriseAddressCode = (this.detailData?.cityCodesList as any[]).map(city => city.cityCode);
|
||||
this.enterpriseDefaultCityName = (this.detailData?.cityCodesList as any[]).map(city => city.cityName).join('、');
|
||||
this.enterpriseDefaultAddressCode = [
|
||||
...new Set<string>((this.detailData?.cityCodesList as any[]).map(city => city.provinceCode))
|
||||
];
|
||||
}
|
||||
// 拼接渠道销售信息
|
||||
if (this.detailData?.channelIdLabel) {
|
||||
const channel = (this.detailData.channelIdLabel as string).split('/');
|
||||
Object.assign(this.detailData, {
|
||||
channelName: channel[0],
|
||||
channelMobile: channel[1]
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
goBack() {
|
||||
@ -88,23 +115,23 @@ export class PartnerDetailComponent implements OnInit {
|
||||
* 冻结
|
||||
*/
|
||||
freezeOrResume(type: number) {
|
||||
// this.service.http
|
||||
// .post(this.service.$api_lock_freight, {
|
||||
// id: this.route.snapshot.params.id,
|
||||
// statedLocked: !!type
|
||||
// })
|
||||
// .subscribe(res => {
|
||||
// if (res.data === true) {
|
||||
// if (type === 0) {
|
||||
// this.service.msgSrv.success(`启用成功!`);
|
||||
// } else {
|
||||
// this.service.msgSrv.success(`冻结成功!`);
|
||||
// }
|
||||
// this.initData();
|
||||
// } else {
|
||||
// this.service.msgSrv.error(res.msg || '操作失败!');
|
||||
// }
|
||||
// });
|
||||
this.service.http
|
||||
.post(this.service.$api_lock_freight, {
|
||||
id: this.route.snapshot.params.id,
|
||||
statedLocked: !!type
|
||||
})
|
||||
.subscribe(res => {
|
||||
if (res.data === true) {
|
||||
if (type === 0) {
|
||||
this.service.msgSrv.success(`启用成功!`);
|
||||
} else {
|
||||
this.service.msgSrv.success(`冻结成功!`);
|
||||
}
|
||||
this.initData();
|
||||
} else {
|
||||
this.service.msgSrv.error(res.msg || '操作失败!');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
auditPartner(isPass: boolean) {
|
||||
@ -128,6 +155,18 @@ export class PartnerDetailComponent implements OnInit {
|
||||
|
||||
ratify() {
|
||||
this.isEdit = true;
|
||||
// 搜索展开省份并选中节点
|
||||
setTimeout(() => {
|
||||
if (this.enterpriseDefaultAddressCode?.length > 0 && this.areaTreeSelect) {
|
||||
this.enterpriseDefaultAddressCode.forEach(code => {
|
||||
const node = this.areaTreeSelect.getTreeNodeByKey(code);
|
||||
if (node) {
|
||||
node.setExpanded(true);
|
||||
this.onExpandChange(node);
|
||||
}
|
||||
});
|
||||
}
|
||||
}, 500);
|
||||
}
|
||||
|
||||
deleteImg(data: any, key: string, key2: string) {
|
||||
@ -159,25 +198,54 @@ export class PartnerDetailComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
|
||||
onExpandChange(node: NzTreeNode | null | undefined): void {
|
||||
if (node && node.getChildren().length === 0 && node.isExpanded) {
|
||||
this.loadRegionData(node).then(data => {
|
||||
node.addChildren(data);
|
||||
// 更新选中数据
|
||||
this.areaTreeSelect.updateSelectedNodes(true);
|
||||
// 修改子节点选中状态
|
||||
const children = node.getChildren();
|
||||
if (children?.length > 0) {
|
||||
children.forEach(childNode => {
|
||||
if (this.enterpriseAddressCode.find(area => area === childNode.key)) {
|
||||
childNode.setChecked(true);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 级联获取地区数据
|
||||
*
|
||||
* @param node 节点
|
||||
* @param index 层级
|
||||
* @returns
|
||||
*/
|
||||
loadRegionData = (node: any, index: number) => {
|
||||
loadRegionData(node: NzTreeNode): Promise<NzTreeNodeOptions[]> {
|
||||
let rs: any[] = [];
|
||||
return new Promise(resolve => {
|
||||
this.service.request(this.service.$api_get_region_by_code, { regionCode: node?.regionCode || '' }).subscribe(
|
||||
this.service.request(this.service.$api_get_region_by_code, { regionCode: node?.origin.regionCode || '' }).subscribe(
|
||||
res => {
|
||||
node.children = res.map((item: any) => ({ ...item, isLeaf: index === 1, value: item.regionCode, label: item.name }));
|
||||
rs = res.map((item: any) => ({
|
||||
...item,
|
||||
isLeaf: true,
|
||||
title: item.name,
|
||||
key: item.regionCode.toString(),
|
||||
isSelectable: true,
|
||||
isSelected: true,
|
||||
isChecked: true
|
||||
}));
|
||||
},
|
||||
_ => {},
|
||||
() => {
|
||||
resolve(node);
|
||||
resolve(rs);
|
||||
}
|
||||
);
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
reset() {
|
||||
this.detailData = { ...this.tempalateData };
|
||||
@ -185,49 +253,35 @@ export class PartnerDetailComponent implements OnInit {
|
||||
}
|
||||
|
||||
save() {
|
||||
if (this.enterpriseAddressCode?.length > 3) {
|
||||
this.service.msgSrv.warning('所属城市不能超过3个');
|
||||
return;
|
||||
}
|
||||
const dateil = { ...this.detailData };
|
||||
Object.assign(dateil.legalPersonIdentityVO, {
|
||||
validStartTime: this.datePipe.transform(dateil.legalPersonIdentityVO.validStartTime, 'yyyy-MM-dd'),
|
||||
validEndTime: this.datePipe.transform(dateil.legalPersonIdentityVO.validEndTime, 'yyyy-MM-dd')
|
||||
Object.assign(dateil.legalPersonIdentity, {
|
||||
validStartTime: this.datePipe.transform(dateil.legalPersonIdentity.validStartTime, 'yyyy-MM-dd'),
|
||||
validEndTime: this.datePipe.transform(dateil.legalPersonIdentity.validEndTime, 'yyyy-MM-dd')
|
||||
});
|
||||
Object.assign(dateil.adminUserInfo, {
|
||||
validStartTime: this.datePipe.transform(dateil.adminUserInfo.validStartTime, 'yyyy-MM-dd'),
|
||||
validEndTime: this.datePipe.transform(dateil.adminUserInfo.validEndTime, 'yyyy-MM-dd')
|
||||
});
|
||||
const params = {};
|
||||
Object.assign(params, {
|
||||
adminMobile: dateil.adminMobile,
|
||||
adminAppUserId: dateil.adminAppUserId,
|
||||
adminUserInfo: { ...dateil.adminUserInfo },
|
||||
bankAccount: dateil.bankAccount,
|
||||
businessScope: dateil.businessScope,
|
||||
createBank: dateil.createBank,
|
||||
creditPhoto: dateil.creditPhoto,
|
||||
creditPhotoWatermark: dateil.creditPhotoWatermark,
|
||||
enterpriseAddress: dateil.enterpriseAddress,
|
||||
enterpriseAddressCode: this.enterpriseAddressCode[2],
|
||||
enterpriseLogo: dateil.enterpriseLogo,
|
||||
enterpriseName: dateil.enterpriseName,
|
||||
...dateil,
|
||||
cityCodesList: this.enterpriseAddressCode,
|
||||
enterpriseRegistrationTime: this.datePipe.transform(dateil.enterpriseRegistrationTime, 'yyyy-MM-dd'),
|
||||
enterpriseType: dateil.enterpriseType,
|
||||
id: dateil.id,
|
||||
legalPersonIdentityDTO: { ...dateil.legalPersonIdentityVO },
|
||||
licensePhoto: dateil.licensePhoto,
|
||||
licensePhotoWatermark: dateil.licensePhotoWatermark,
|
||||
networkTransporter: dateil.networkTransporter,
|
||||
oftenUsedServices: dateil.oftenUsedServices,
|
||||
operatingEndTime: this.datePipe.transform(dateil.operatingEndTime, 'yyyy-MM-dd'),
|
||||
operatingStartTime: this.datePipe.transform(dateil.operatingStartTime, 'yyyy-MM-dd'),
|
||||
promotersTelephone: dateil.promotersTelephone,
|
||||
registerAddress: dateil.registerAddress,
|
||||
registerPhone: dateil.registerPhone,
|
||||
registrationCapital: dateil.registrationCapital,
|
||||
taxAuthority: dateil.taxAuthority,
|
||||
unifiedSocialCreditCode: dateil.unifiedSocialCreditCode
|
||||
operatingStartTime: this.datePipe.transform(dateil.operatingStartTime, 'yyyy-MM-dd')
|
||||
});
|
||||
|
||||
this.service.request(this.service.$api_save_entp_partner, params).subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('企业合伙人修改成功');
|
||||
this.initData();
|
||||
this.isEdit = false;
|
||||
}
|
||||
});
|
||||
// this.service.request(this.service.$api_save_enterprise_admin, params).subscribe(res => {
|
||||
// if (res) {
|
||||
// this.service.msgSrv.success('企业修改成功');
|
||||
// this.initData();
|
||||
// this.isEdit = false;
|
||||
// }
|
||||
// });
|
||||
}
|
||||
|
||||
// 识别身份证 参数isFront:front-正面、back-背面;type:0-申请人身份证,1-法定代表人身份证
|
||||
@ -236,97 +290,89 @@ export class PartnerDetailComponent implements OnInit {
|
||||
idCardUrl: imgurl,
|
||||
side: isFront
|
||||
};
|
||||
// this.service.request(this.service.$api_ocr_recognize_id_card, params).subscribe(res => {
|
||||
// if (res) {
|
||||
// if (type === 1) {
|
||||
// // 法定代表人证件照
|
||||
// if (isFront === 'front') {
|
||||
// // 正面
|
||||
// if (res.name) {
|
||||
// this.detailData.legalPersonIdentityVO.name = res.name;
|
||||
// }
|
||||
// if (res.number) {
|
||||
// this.detailData.legalPersonIdentityVO.certificateNumber = res.number;
|
||||
// }
|
||||
// }
|
||||
// if (isFront === 'back') {
|
||||
// // 背面
|
||||
// if (res.validFrom) {
|
||||
// this.detailData.legalPersonIdentityVO.validStartTime = res.validFrom;
|
||||
// }
|
||||
// if (res.validTo) {
|
||||
// this.detailData.legalPersonIdentityVO.validEndTime = res.validTo;
|
||||
// } else {
|
||||
// this.detailData.legalPersonIdentityVO.validEndTime = null;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// // 企业管理员证件照
|
||||
// if (type === 0) {
|
||||
// if (isFront === 'front') {
|
||||
// // 正面
|
||||
// if (res.name) {
|
||||
// this.detailData.adminUserInfo.name = res.name;
|
||||
// }
|
||||
// if (res.number) {
|
||||
// this.detailData.adminUserInfo.certificateNumber = res.number;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// });
|
||||
this.service.request(this.service.$api_ocr_recognize_id_card, params).subscribe(res => {
|
||||
if (res) {
|
||||
if (type === 1) {
|
||||
// 法定代表人证件照
|
||||
if (isFront === 'front') {
|
||||
// 正面
|
||||
if (res.name) {
|
||||
this.detailData.legalPersonIdentity.name = res.name;
|
||||
}
|
||||
if (res.number) {
|
||||
this.detailData.legalPersonIdentity.certificateType = 0;
|
||||
this.detailData.legalPersonIdentity.certificateNumber = res.number;
|
||||
}
|
||||
}
|
||||
if (isFront === 'back') {
|
||||
// 背面
|
||||
if (res.validFrom) {
|
||||
this.detailData.legalPersonIdentity.validStartTime = res.validFrom;
|
||||
}
|
||||
if (res.validTo) {
|
||||
this.detailData.legalPersonIdentity.validEndTime = res.validTo;
|
||||
} else {
|
||||
this.detailData.legalPersonIdentity.validEndTime = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
// 企业管理员证件照
|
||||
if (type === 0) {
|
||||
if (isFront === 'front') {
|
||||
// 正面
|
||||
if (res.name) {
|
||||
this.detailData.adminUserInfo.name = res.name;
|
||||
}
|
||||
if (res.number) {
|
||||
this.detailData.adminUserInfo.certificateNumber = res.number;
|
||||
}
|
||||
}
|
||||
if (isFront === 'back') {
|
||||
// 背面
|
||||
if (res.validFrom) {
|
||||
this.detailData.adminUserInfo.validStartTime = res.validFrom;
|
||||
}
|
||||
if (res.validTo) {
|
||||
this.detailData.adminUserInfo.validEndTime = res.validTo;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// 识别营业执照
|
||||
checkBusinessLicense(imgurl: any) {
|
||||
// this.service.request(this.service.$api_ocr_recognize_business_license, { businessLicenseUrl: imgurl }).subscribe(res => {
|
||||
// if (res) {
|
||||
this.service.request(this.service.$api_ocr_recognize_business_license, { businessLicenseUrl: imgurl }).subscribe(res => {
|
||||
if (res) {
|
||||
// if (res.registrationNumber) {
|
||||
// this.detailData.unifiedSocialCreditCode = res.registrationNumber;
|
||||
// }
|
||||
// if (res.name) {
|
||||
// this.detailData.enterpriseName = res.name;
|
||||
// }
|
||||
// if (res.type) {
|
||||
// this.detailData.enterpriseType = res.type;
|
||||
// }
|
||||
// if (res.addressRegionCodes) {
|
||||
// this.detailData.enterpriseAddressCode = res.addressRegionCodes;
|
||||
// }
|
||||
// if (res.address) {
|
||||
// this.detailData.enterpriseAddress = res.address;
|
||||
// }
|
||||
// if (res.registeredCapital) {
|
||||
// this.detailData.registrationCapital = res.registeredCapital;
|
||||
// }
|
||||
// if (res.foundDate) {
|
||||
// this.detailData.enterpriseRegistrationTime = res.foundDate;
|
||||
// }
|
||||
// if (res.businessTermStartDate) {
|
||||
// this.detailData.operatingStartTime = res.businessTermStartDate;
|
||||
// }
|
||||
// if (res.businessTermEndDate) {
|
||||
// this.detailData.operatingEndTime = res.businessTermEndDate;
|
||||
// } else {
|
||||
// this.detailData.operatingEndTime = null;
|
||||
// }
|
||||
// if (res.businessScope) {
|
||||
// this.detailData.businessScope = res.businessScope;
|
||||
// }
|
||||
// }
|
||||
// });
|
||||
if (res.businessTermStartDate) {
|
||||
this.detailData.operatingStartTime = res.businessTermStartDate;
|
||||
}
|
||||
if (res.businessTermEndDate) {
|
||||
this.detailData.operatingEndTime = res.businessTermEndDate;
|
||||
} else {
|
||||
this.detailData.operatingEndTime = null;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private initST(): { logsColumn: STColumn[]; changeColumn: STColumn[]; beChangeColumn: STColumn[] } {
|
||||
return {
|
||||
logsColumn: [
|
||||
{ title: '修改后渠道销售', index: 'payCode', width: 180 },
|
||||
{ title: '修改前渠道销售', index: 'ltdName', width: 160 },
|
||||
{ title: '转移客户数', index: 'payDate', className: 'text-center', width: 130 },
|
||||
{ title: '生效节点', index: 'payDate', width: 150 },
|
||||
{ title: '备注', index: 'payDate', className: 'text-center', width: 150 },
|
||||
{ title: '修改时间', index: 'payDate', className: 'text-center', width: 130 },
|
||||
{ title: '操作人', index: 'payDate', type: 'date', width: 130 },
|
||||
{ title: '修改后渠道销售', index: 'newChannelName', width: 180 },
|
||||
{ title: '修改前渠道销售', index: 'originalChannelName', width: 160 },
|
||||
{ title: '转移客户数', index: 'quantity', className: 'text-center', width: 130 },
|
||||
{ title: '生效节点', index: 'effectiveNode', width: 150, type: 'enum', enum: { 1: '立即生效', 2: 'CRM审核后生效' } },
|
||||
{ title: '备注', index: 'remark', className: 'text-center', width: 150 },
|
||||
{ title: '修改时间', index: 'effectiveTime', className: 'text-center', width: 130, type: 'date' },
|
||||
{ title: '操作人', index: 'modifyUserId', width: 130 },
|
||||
{
|
||||
title: '操作',
|
||||
fixed: 'right',
|
||||
|
||||
@ -0,0 +1,182 @@
|
||||
<!-- 页头 -->
|
||||
<page-header-wrapper [logo]="logo" [content]="content" [title]="'合伙人详情'">
|
||||
<ng-template #logo>
|
||||
<button nz-button nz-tooltip nzTooltipTitle="返回上一页" (click)="goBack()">
|
||||
<i nz-icon nzType="left" nzTheme="outline"></i>
|
||||
</button>
|
||||
</ng-template>
|
||||
<ng-template #content>
|
||||
<nz-skeleton [nzLoading]="false">
|
||||
<div class="user-info" nz-row>
|
||||
<div nz-col [nzXl]="18" [nzLg]="24" [nzSm]="24" [nzXs]="24" class="d-flex">
|
||||
<img [src]="detailData?.enterpriseLogo" />
|
||||
<div style="flex: 1">
|
||||
<div nz-row>
|
||||
<div nz-col [nzLg]="12" [nzSm]="24" [nzXs]="24">
|
||||
<p style="margin-bottom: 0">{{ detailData?.adminUserInfo?.name }}</p>
|
||||
</div>
|
||||
<div nz-col [nzLg]="12" [nzSm]="24" [nzXs]="24">
|
||||
<nz-badge nzStatus="success" nzText="正常" *ngIf="detailData?.stateLocked === 0"> </nz-badge>
|
||||
<nz-badge nzStatus="error" nzText="冻结" *ngIf="detailData?.stateLocked === 1"></nz-badge>
|
||||
</div>
|
||||
</div>
|
||||
<div nz-row>
|
||||
<div nz-col [nzLg]="12" [nzSm]="24" [nzXs]="24">
|
||||
<p>{{ detailData?.adminUserInfo?.certificateNumber }}</p>
|
||||
</div>
|
||||
<div nz-col [nzLg]="12" [nzSm]="24" [nzXs]="24"> 个人合伙人 </div>
|
||||
</div>
|
||||
<div nz-row>
|
||||
<div nz-col [nzLg]="12" [nzSm]="24" [nzXs]="24"> 注册时间:{{ detailData?.createTime }} </div>
|
||||
<div nz-col [nzLg]="12" [nzSm]="24" [nzXs]="24">
|
||||
所属城市:{{enterpriseDefaultCityName}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div nz-col [nzXl]="6" [nzLg]="24" [nzSm]="24" [nzXs]="24" class="text-right mt-sm">
|
||||
<ng-container *ngIf="isEdit; else editButton">
|
||||
<button [disabled]="service.http.loading" nz-button (click)="reset()"> 取消 </button>
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger (click)="save()"> 保存 </button>
|
||||
</ng-container>
|
||||
<ng-template #editButton>
|
||||
<ng-container>
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger (click)="auditPartner(true)"> 通过 </button>
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger (click)="auditPartner(false)"> 驳回 </button>
|
||||
</ng-container>
|
||||
<ng-container *ngIf="detailData?.approvalStatus != 10">
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger nz-popconfirm [nzPopconfirmTitle]="enable"
|
||||
(nzOnConfirm)="freezeOrResume(0)" nzPopconfirmPlacement="bottomRight" *ngIf="detailData?.stateLocked"
|
||||
acl [acl-ability]="['USERCENTER-FREIGHT-ENTERPRISE-D-lock']">
|
||||
启用
|
||||
</button>
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger nz-popconfirm [nzPopconfirmTitle]="frozen"
|
||||
(nzOnConfirm)="freezeOrResume(1)" nzPopconfirmPlacement="bottomRight" *ngIf="!detailData?.stateLocked"
|
||||
acl [acl-ability]="['USERCENTER-FREIGHT-ENTERPRISE-D-lock']">
|
||||
冻结
|
||||
</button>
|
||||
</ng-container>
|
||||
<button [disabled]="service.http.loading" nz-button nzDanger (click)="ratify()"> 修改 </button>
|
||||
</ng-template>
|
||||
</div>
|
||||
</div>
|
||||
</nz-skeleton>
|
||||
</ng-template>
|
||||
|
||||
<ng-template #frozen>
|
||||
<ng-container *ngTemplateOutlet="
|
||||
PopconfirmTempalte;
|
||||
context: { title: '确定冻结该合伙人吗?', content: '停用后,该合伙人将被限制使用,不限于访问受限、邀请客户、佣金收益等,请谨慎操作' }
|
||||
">
|
||||
</ng-container>
|
||||
</ng-template>
|
||||
<ng-template #enable>
|
||||
<ng-container *ngTemplateOutlet="
|
||||
PopconfirmTempalte;
|
||||
context: { title: '确定启用该合伙人吗?', content: '启用后,该该合伙人将恢复正常使用功能,请再次确认' }
|
||||
">
|
||||
</ng-container>
|
||||
</ng-template>
|
||||
</page-header-wrapper>
|
||||
|
||||
<nz-card [class]="isEdit ? 'edit-box' : 'readOnly-box'">
|
||||
<sv-container col="3" class="mt16">
|
||||
<sv-title>合伙人信息</sv-title>
|
||||
<sv label="姓名">
|
||||
<input nz-input type="text" [(ngModel)]="detailData.adminUserInfo.name" [readonly]="!isEdit"
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit ? '' : '-'" />
|
||||
</sv>
|
||||
<sv label="手机号">
|
||||
<!-- <input nz-input type="text" [(ngModel)]="detailData.adminUserInfo.certificateNumber" [readonly]="!isEdit"
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit ? '' : '-'" /> -->
|
||||
{{detailData.adminUserInfo.mobile}}
|
||||
</sv>
|
||||
<sv label="身份证号">
|
||||
<input nz-input type="text" [(ngModel)]="detailData.adminUserInfo.certificateNumber" [readonly]="!isEdit"
|
||||
[nzBorderless]="!isEdit" [placeholder]="isEdit ? '' : '-'" />
|
||||
</sv>
|
||||
<sv label="身份证有效期" col="1">
|
||||
<nz-date-picker [(ngModel)]="detailData.adminUserInfo.validStartTime" [nzDisabled]="!isEdit" nzPlaceHolder=" "
|
||||
[nzBorderless]="!isEdit" [nzSuffixIcon]="isEdit ? 'calendar' : ''" style="width: 100px" class="calendar">
|
||||
</nz-date-picker>
|
||||
-
|
||||
<ng-container
|
||||
*ngIf="!isEdit && !detailData?.adminUserInfo?.validEndTime && detailData.adminUserInfo.validStartTime">
|
||||
<label style="padding-left: 11px">长期</label>
|
||||
</ng-container>
|
||||
<nz-date-picker [(ngModel)]="detailData.adminUserInfo.validEndTime" [nzDisabled]="!isEdit" nzPlaceHolder=" "
|
||||
[nzBorderless]="!isEdit" [nzSuffixIcon]="isEdit ? 'calendar' : ''" style="width: 100px" class="calendar">
|
||||
</nz-date-picker>
|
||||
<ng-container *ngIf="isEdit">
|
||||
<label nz-checkbox [ngModel]="!!!detailData.adminUserInfo.validEndTime"
|
||||
(ngModelChange)="$event ? (detailData.adminUserInfo.validEndTime = '') : ''" class="ml-sm">长期</label>
|
||||
</ng-container>
|
||||
</sv>
|
||||
<sv label="身份证照" col="1">
|
||||
<div class="d-flex">
|
||||
<ng-container *ngTemplateOutlet="
|
||||
uploadTemplate;
|
||||
context: {
|
||||
data: detailData?.adminUserInfo,
|
||||
status: isEdit,
|
||||
key: 'certificatePhotoFrontWatermark',
|
||||
key2: 'certificatePhotoFront',
|
||||
hover: 'legalFront'
|
||||
}
|
||||
">
|
||||
</ng-container>
|
||||
<ng-container *ngTemplateOutlet="
|
||||
uploadTemplate;
|
||||
context: {
|
||||
data: detailData?.adminUserInfo,
|
||||
status: isEdit,
|
||||
key: 'certificatePhotoBackWatermark',
|
||||
key2: 'certificatePhotoBack',
|
||||
hover: 'legalBack'
|
||||
}
|
||||
">
|
||||
</ng-container>
|
||||
</div>
|
||||
</sv>
|
||||
<sv label="所属城市">
|
||||
<ng-container *ngIf="isEdit; else cascaderelseTemplate">
|
||||
<nz-tree-select #areaTreeSelect style="width: 350px" [(ngModel)]="enterpriseAddressCode"
|
||||
[nzDropdownStyle]="{ 'max-height': '300px' }" [nzExpandedKeys]="enterpriseDefaultAddressCode"
|
||||
[nzNodes]="areaList" [nzAsyncData]="true" [nzCheckStrictly]="true" nzCheckable
|
||||
(nzExpandChange)="onExpandChange($event.node)" nzDropdownClassName="area-tree-select">
|
||||
</nz-tree-select>
|
||||
</ng-container>
|
||||
<ng-template #cascaderelseTemplate>
|
||||
{{ enterpriseDefaultCityName || '-' }}
|
||||
</ng-template>
|
||||
</sv>
|
||||
</sv-container>
|
||||
</nz-card>
|
||||
|
||||
<ng-template #PopconfirmTempalte let-title="title" let-content="content">
|
||||
<div class="ant-popover-message">
|
||||
<i nz-icon nzType="info-circle" nzTheme="fill"></i>
|
||||
<div class="ant-popover-message-title ng-star-inserted self-ant-popover-title" style="font-size: 16px">{{ title }}
|
||||
</div>
|
||||
<div class="ant-popover-message-title ng-star-inserted">
|
||||
{{ content }}
|
||||
</div>
|
||||
</div>
|
||||
</ng-template>
|
||||
|
||||
<ng-template #uploadTemplate let-data="data" let-status="status" let-key="key" let-key2="key2" let-hover="hover">
|
||||
<nz-upload class="avatar-uploader" [nzAction]="uploadURl" nzName="multipartFile" nzListType="picture-card"
|
||||
[nzShowUploadList]="false" nzFileType="image/png,image/jpeg,image/jpg,image/gif"
|
||||
[nzDisabled]="!isEdit || disabledUpload" (nzChange)="changeUpload($event, data, key, key2, hover)">
|
||||
<ng-container *ngIf="!data[key] && isEdit">
|
||||
<i class="upload-icon" nz-icon [nzType]="service.http.loading ? 'loading' : 'plus'"></i>
|
||||
<div class="ant-upload-text">上传</div>
|
||||
</ng-container>
|
||||
<div *ngIf="data[key]" (mouseover)="detailData[hover] = true" (mouseleave)="detailData[hover] = false"
|
||||
(click)="$event.cancelBubble = true" class="image-hover">
|
||||
<img nz-image [nzSrc]="data[key]" style="width: 200px; height: 160px" />
|
||||
<i nz-icon *ngIf="detailData[hover] && isEdit" nzType="close-circle" nzTheme="fill" class="delete-icon"
|
||||
(click)="deleteImg(data, key, key2)"></i>
|
||||
</div>
|
||||
</nz-upload>
|
||||
</ng-template>
|
||||
@ -0,0 +1,37 @@
|
||||
@import '../../../../usercenter/less/edit.less';
|
||||
|
||||
|
||||
.user-info {
|
||||
font-size: 16px;
|
||||
|
||||
.enterprise-name {
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
img {
|
||||
width : 64px;
|
||||
height : 64px;
|
||||
margin-right : 15px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.user-info-des {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
:host::ng-deep {
|
||||
.affix {
|
||||
position: fixed !important;
|
||||
top : 20px !important;
|
||||
z-index : 999 !important;
|
||||
width : 100% !important;
|
||||
}
|
||||
|
||||
.image-hover .delete-icon {
|
||||
top : unset !important;
|
||||
right : unset !important;
|
||||
margin-top : -15px;
|
||||
margin-left: -15px;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,264 @@
|
||||
import { DatePipe } from '@angular/common';
|
||||
import { Component, OnDestroy, OnInit, ViewChild } from '@angular/core';
|
||||
import { ActivatedRoute } from '@angular/router';
|
||||
import { apiConf } from '@conf/api.conf';
|
||||
import { STColumn } from '@delon/abc/st';
|
||||
import { NzModalService } from 'ng-zorro-antd/modal';
|
||||
import { NzTreeNode, NzTreeNodeOptions } from 'ng-zorro-antd/tree';
|
||||
import { NzTreeSelectComponent } from 'ng-zorro-antd/tree-select';
|
||||
import { Subscription, fromEvent } from 'rxjs';
|
||||
|
||||
import { PartnerListService } from '../../services/partner-list.service';
|
||||
import { PartnerAuditModalComponent } from '../partner-audit-modal/partner-audit-modal.component';
|
||||
|
||||
@Component({
|
||||
selector: 'app-personal-partner-detail',
|
||||
templateUrl: './personal-partner-detail.component.html',
|
||||
styleUrls: ['./personal-partner-detail.component.less'],
|
||||
providers: [DatePipe]
|
||||
})
|
||||
export class PersonalPartnerDetailComponent implements OnInit {
|
||||
@ViewChild('areaTreeSelect')
|
||||
areaTreeSelect!: NzTreeSelectComponent;
|
||||
|
||||
detailData: any = { adminUserInfo: { name: '' }, legalPersonIdentity: { name: '' } };
|
||||
tempalateData = { ...this.detailData };
|
||||
|
||||
isEdit = false;
|
||||
|
||||
uploadURl = apiConf.waterFileUpload;
|
||||
disabledUpload = false;
|
||||
enterpriseAddressCode: string[] = [];
|
||||
enterpriseDefaultAddressCode: string[] = [];
|
||||
enterpriseDefaultCityName: string = '';
|
||||
areaList = [];
|
||||
|
||||
constructor(
|
||||
public service: PartnerListService,
|
||||
private route: ActivatedRoute,
|
||||
private nzModalService: NzModalService,
|
||||
private datePipe: DatePipe
|
||||
) {}
|
||||
|
||||
ngOnInit() {
|
||||
this.initData();
|
||||
this.loadlAreaList();
|
||||
}
|
||||
|
||||
loadlAreaList() {
|
||||
this.service.request(this.service.$api_get_region_by_code, { regionCode: '' }).subscribe(res => {
|
||||
if (res) {
|
||||
this.areaList = res.map((item: any) => ({
|
||||
...item,
|
||||
isLeaf: false,
|
||||
title: item.name,
|
||||
key: item.regionCode.toString(),
|
||||
disabled: true,
|
||||
isDisableCheckbox: true
|
||||
}));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
initData() {
|
||||
this.service
|
||||
.request(this.service.$api_get_personal_partner_detail, {
|
||||
id: this.route.snapshot.params.id
|
||||
})
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.detailData = res;
|
||||
console.log(this.detailData);
|
||||
|
||||
this.tempalateData = { ...this.detailData };
|
||||
// 拼接所属城市
|
||||
if (this.detailData?.cityCodesList?.length > 0) {
|
||||
this.enterpriseAddressCode = (this.detailData?.cityCodesList as any[]).map(city => city.cityCode);
|
||||
this.enterpriseDefaultCityName = (this.detailData?.cityCodesList as any[]).map(city => city.cityName).join('、');
|
||||
this.enterpriseDefaultAddressCode = [
|
||||
...new Set<string>((this.detailData?.cityCodesList as any[]).map(city => city.provinceCode))
|
||||
];
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
goBack() {
|
||||
window.history.go(-1);
|
||||
}
|
||||
/**
|
||||
* 冻结
|
||||
*/
|
||||
freezeOrResume(type: number) {
|
||||
this.service.http
|
||||
.post(this.service.$api_lock_freight, {
|
||||
id: this.route.snapshot.params.id,
|
||||
statedLocked: !!type
|
||||
})
|
||||
.subscribe(res => {
|
||||
if (res.data === true) {
|
||||
if (type === 0) {
|
||||
this.service.msgSrv.success(`启用成功!`);
|
||||
} else {
|
||||
this.service.msgSrv.success(`冻结成功!`);
|
||||
}
|
||||
this.initData();
|
||||
} else {
|
||||
this.service.msgSrv.error(res.msg || '操作失败!');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
auditPartner(isPass: boolean) {
|
||||
const modal = this.nzModalService.create({
|
||||
nzTitle: '审核',
|
||||
nzContent: PartnerAuditModalComponent,
|
||||
nzComponentParams: { info: { ...this.detailData, isPass, enterpriseName: this.detailData.adminUserInfo?.name } },
|
||||
nzFooter: null
|
||||
});
|
||||
}
|
||||
|
||||
ratify() {
|
||||
this.isEdit = true;
|
||||
// 搜索展开省份并选中节点
|
||||
setTimeout(() => {
|
||||
if (this.enterpriseDefaultAddressCode?.length > 0 && this.areaTreeSelect) {
|
||||
this.enterpriseDefaultAddressCode.forEach(code => {
|
||||
const node = this.areaTreeSelect.getTreeNodeByKey(code);
|
||||
if (node) {
|
||||
node.setExpanded(true);
|
||||
this.onExpandChange(node);
|
||||
}
|
||||
});
|
||||
}
|
||||
}, 500);
|
||||
}
|
||||
|
||||
deleteImg(data: any, key: string, key2: string) {
|
||||
this.nzModalService.warning({
|
||||
nzTitle: '是否确认删除该图片',
|
||||
nzOnOk: () => {
|
||||
this.disabledUpload = true;
|
||||
data[key] = '';
|
||||
data[key2] = '';
|
||||
setTimeout(() => {
|
||||
this.disabledUpload = false;
|
||||
}, 100);
|
||||
}
|
||||
});
|
||||
}
|
||||
changeUpload({ file, fileList, type }: any, data: any, key: string, key2: string, id: string) {
|
||||
if (type === 'success') {
|
||||
data[key] = file.response.data?.fullFileWatermarkPath;
|
||||
data[key2] = file.response.data?.fullFilePath;
|
||||
if (id === 'legalFront' || id === 'legalBack') {
|
||||
this.checkIdCard(file.response.data?.fullFilePath, id === 'legalFront' ? 'front' : 'back');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
onExpandChange(node: NzTreeNode | null | undefined): void {
|
||||
if (node && node.getChildren().length === 0 && node.isExpanded) {
|
||||
this.loadRegionData(node).then(data => {
|
||||
node.addChildren(data);
|
||||
// 更新选中数据
|
||||
this.areaTreeSelect.updateSelectedNodes(true);
|
||||
// 修改子节点选中状态
|
||||
const children = node.getChildren();
|
||||
if (children?.length > 0) {
|
||||
children.forEach(childNode => {
|
||||
if (this.enterpriseAddressCode.find(area => area === childNode.key)) {
|
||||
childNode.setChecked(true);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 级联获取地区数据
|
||||
*
|
||||
* @param node 节点
|
||||
* @param index 层级
|
||||
* @returns
|
||||
*/
|
||||
loadRegionData(node: NzTreeNode): Promise<NzTreeNodeOptions[]> {
|
||||
let rs: any[] = [];
|
||||
return new Promise(resolve => {
|
||||
this.service.request(this.service.$api_get_region_by_code, { regionCode: node?.origin.regionCode || '' }).subscribe(
|
||||
res => {
|
||||
rs = res.map((item: any) => ({
|
||||
...item,
|
||||
isLeaf: true,
|
||||
title: item.name,
|
||||
key: item.regionCode.toString(),
|
||||
isSelectable: true,
|
||||
isSelected: true,
|
||||
isChecked: true
|
||||
}));
|
||||
},
|
||||
_ => {},
|
||||
() => {
|
||||
resolve(rs);
|
||||
}
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
reset() {
|
||||
this.detailData = { ...this.tempalateData };
|
||||
this.isEdit = false;
|
||||
}
|
||||
|
||||
save() {
|
||||
if (this.enterpriseAddressCode?.length > 3) {
|
||||
this.service.msgSrv.warning('所属城市不能超过3个');
|
||||
return;
|
||||
}
|
||||
const dateil = { ...this.detailData, cityCodesList: this.enterpriseAddressCode };
|
||||
Object.assign(dateil.adminUserInfo, {
|
||||
validStartTime: this.datePipe.transform(dateil.adminUserInfo.validStartTime, 'yyyy-MM-dd'),
|
||||
validEndTime: this.datePipe.transform(dateil.adminUserInfo.validEndTime, 'yyyy-MM-dd')
|
||||
});
|
||||
|
||||
this.service.request(this.service.$api_save_personal_partner, dateil).subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('个人合伙人修改成功');
|
||||
this.initData();
|
||||
this.isEdit = false;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// 识别身份证 参数isFront:front-正面、back-背面;type:0-申请人身份证,1-法定代表人身份证
|
||||
checkIdCard(imgurl: any, isFront: string) {
|
||||
const params = {
|
||||
idCardUrl: imgurl,
|
||||
side: isFront
|
||||
};
|
||||
this.service.request(this.service.$api_ocr_recognize_id_card, params).subscribe(res => {
|
||||
if (res) {
|
||||
// 企业管理员证件照
|
||||
if (isFront === 'front') {
|
||||
// 正面
|
||||
if (res.name) {
|
||||
this.detailData.adminUserInfo.name = res.name;
|
||||
}
|
||||
if (res.number) {
|
||||
this.detailData.adminUserInfo.certificateNumber = res.number;
|
||||
}
|
||||
}
|
||||
if (isFront === 'back') {
|
||||
// 背面
|
||||
if (res.validFrom) {
|
||||
this.detailData.adminUserInfo.validStartTime = res.validFrom;
|
||||
}
|
||||
if (res.validTo) {
|
||||
this.detailData.adminUserInfo.validEndTime = res.validTo;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
@ -1,12 +1,35 @@
|
||||
import { Injectable, Injector } from '@angular/core';
|
||||
import { BaseService, EACacheService } from '@shared';
|
||||
import { BaseService, EACacheService, ShipperBaseService } from '@shared';
|
||||
import { NzModalService } from 'ng-zorro-antd/modal';
|
||||
import { ImageViewComponent } from 'src/app/shared/components/imagelist';
|
||||
|
||||
@Injectable()
|
||||
export class PartnerListService extends BaseService {
|
||||
export class PartnerListService extends ShipperBaseService {
|
||||
$mock_url = '/rule?_allow_anonymous=true';
|
||||
|
||||
// 查询合伙人信息-分页
|
||||
$api_get_partner_page = '/api/mdc/partner/list/page';
|
||||
// 新增/更新保存企业合伙人信息
|
||||
$api_save_entp_partner = '/api/mdc/partner/saveEnterprise';
|
||||
// 新增/更新个人合伙人信息
|
||||
$api_save_personal_partner = '/api/mdc/partner/savePersonally';
|
||||
// 获取企业合伙人信息
|
||||
$api_get_ent_partner_detail = '/api/mdc/partner/getEnterprise';
|
||||
// 获取合伙人信息
|
||||
$api_get_personal_partner_detail = '/api/mdc/partner/getPersonally';
|
||||
// 审核合伙人
|
||||
$api_audit_partner = '/api/mdc/partner/audit';
|
||||
// 修改返佣模板
|
||||
$api_update_partner_template = '/api/mdc/partner/updateTemplate';
|
||||
// 更新渠道销售
|
||||
$api_update_partner_channel = '/api/mdc/partner/updateChannelSale';
|
||||
// 重新发起CRM
|
||||
$api_resend_crm = '/api/mdc/partner/reSendCrm';
|
||||
// 查询合伙人修改渠道渠道销售记录
|
||||
$api_get_personal_channel_list = '/api/mdc/partnerChannelRelLog/list/page';
|
||||
// 冻结/启用企业业
|
||||
$api_lock_freight = '/api/mdc/cuc/enterpriseInfo/operate/lock';
|
||||
|
||||
// 根据地区code查询列表
|
||||
$api_get_region_by_code = '/api/mdc/pbc/region/getRegionByCode';
|
||||
// 根据地区code查询地区详情
|
||||
|
||||
@ -10,41 +10,45 @@
|
||||
*/
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule, Routes } from '@angular/router';
|
||||
|
||||
import { PartnerAccountManagementAccountDetailComponent } from './account-management/components/account-detail/account-detail.component';
|
||||
import { PartnerAccountManagementListComponent } from './account-management/components/list/list.component';
|
||||
import { PartnerAccountManagementRecordedDetailComponent } from './account-management/components/recorded-detail/recorded-detail.component';
|
||||
import { PartnerBusinessStatisticsIndexComponent } from './business-statistics/components/index/index.component';
|
||||
import { PartnerPartnerCustomDetailComponent } from './business-statistics/components/partner-custom-detail/partner-custom-detail.component';
|
||||
import { PartnerSaleCustomDetailComponent } from './business-statistics/components/sale-custom-detail/sale-custom-detail.component';
|
||||
import { ParterChannelSalesEditComponent } from './channel-sales/components/edit/edit.component';
|
||||
import { ParterChannelSalesListComponent } from './channel-sales/components/list/list.component';
|
||||
import { ParterLevelConfigEditComponent } from './level-config/components/edit/edit.component';
|
||||
import { ParterLevelConfigListComponent } from './level-config/components/list/list.component';
|
||||
import { ParterRebateManageMentParticularsComponent } from './rebate-management/components/particulars/particulars.component';
|
||||
import { PartnerSalePartnerDetailComponent } from './business-statistics/components/sale-partner-detail/sale-partner-detail.component';
|
||||
import { PartnerPartnerCustomOrderDetailComponent } from './business-statistics/components/partner-custom-order-detail/partner-custom-order-detail.component';
|
||||
import { PartnerPartnerOrderDetailComponent } from './business-statistics/components/partner-order-detail/partner-order-detail.component';
|
||||
import { PartnerAccountManagementListComponent } from './account-management/components/list/list.component';
|
||||
import { ParterClaimAuditListComponent } from './claim-audit/components/list/list.component';
|
||||
import { PartnerSaleCustomDetailComponent } from './business-statistics/components/sale-custom-detail/sale-custom-detail.component';
|
||||
import { PartnerSalePartnerDetailComponent } from './business-statistics/components/sale-partner-detail/sale-partner-detail.component';
|
||||
import { ParterChannelSalesEditComponent } from './channel-sales/components/edit/edit.component';
|
||||
import { ParterChannelSalesListComponent } from './channel-sales/components/list/list.component';
|
||||
import { ParterClaimAuditListChannelDetailComponent } from './claim-audit/components/channel-detail/channel-detail.component';
|
||||
import { ParterClaimAuditListComponent } from './claim-audit/components/list/list.component';
|
||||
import { ParterClaimAuditListPartnerDetailComponent } from './claim-audit/components/partner-detail/partner-detail.component';
|
||||
import { ParterLevelConfigEditComponent } from './level-config/components/edit/edit.component';
|
||||
import { ParterLevelConfigListComponent } from './level-config/components/list/list.component';
|
||||
import { PartnerDetailComponent } from './partner-list/components/partner-detail/partner-detail.component';
|
||||
import { ParterRebateManageMentParticularsComponent } from './rebate-management/components/particulars/particulars.component';
|
||||
import { ParterRebateManageMentRecordComponent } from './rebate-management/components/rebate-record/rebate-record.component';
|
||||
import { PartnerAccountManagementAccountDetailComponent } from './account-management/components/account-detail/account-detail.component';
|
||||
import { PartnerAccountManagementRecordedDetailComponent } from './account-management/components/recorded-detail/recorded-detail.component';
|
||||
import { PartnerAccountManagementWithdrawalsRecordComponent } from './account-management/components/withdrawals-record/withdrawals-record.component';
|
||||
import { PartnerAccountManagementWithdralDetailComponent } from './account-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component';
|
||||
import { PartnerRecordedRecordComponent } from './recorded/components/record/record.component';
|
||||
import { PartnerRecordedDetailComponent } from './recorded/components/detail/detail.component';
|
||||
import { ParterRebateManageMentAddComponent } from './rebate-management/components/rebate-setting/add/add.component';
|
||||
import { ParterRebateManageMentSettingComponent } from './rebate-management/components/rebate-setting/rebate-setting.component';
|
||||
import { PartnerRecordedDetailComponent } from './recorded/components/detail/detail.component';
|
||||
import { PartnerRecordedRecordComponent } from './recorded/components/record/record.component';
|
||||
import { AddEtpPartnerComponent } from './partner-list/components/add-etp-partner/add-etp-partner.component';
|
||||
import { AddPersonalPartnerComponent } from './partner-list/components/add-personal-partner/add-personal-partner.component';
|
||||
import { PartnerDetailComponent } from './partner-list/components/partner-detail/partner-detail.component';
|
||||
import { PartnerListComponent } from './partner-list/components/index/partner-list.component';
|
||||
import { ParterRebateManageMentAddComponent } from './rebate-management/components/rebate-setting/add/add.component';
|
||||
import { PartnerKnowledgeClassificationListComponent } from './knowledge/classification/components/list/list.component';
|
||||
import { ParterArticleManagementListComponent } from './article-management/components/list/list.component';
|
||||
import { ParterArticleManagementEditComponent } from './article-management/components/edit/edit.component';
|
||||
import { ScrollimgComponentsAddComponent } from './scrollimg/components/add/add.component';
|
||||
import { ScrollImgComponentsListComponent } from './scrollimg/components/list/list.component';
|
||||
import { BannerComponentsListComponent } from './knowledge/banner/components/list/list.component';
|
||||
import { ScrollimgComponentsAddComponent } from './scrollimg/components/add/add.component';
|
||||
import { BannerComponentsAddComponent } from './knowledge/banner/components/add/add.component';
|
||||
import { PersonalPartnerDetailComponent } from './partner-list/components/personal-partner-detail/personal-partner-detail.component';
|
||||
import { ParterAdviceFeedbackListComponent } from './advice-feedback/components/list/list.component';
|
||||
import { ParterAdviceFeedbackDetailComponent } from './advice-feedback/components/feedback-detail/feedback-detail.component';
|
||||
|
||||
const routes: Routes = [
|
||||
{
|
||||
@ -81,7 +85,7 @@ const routes: Routes = [
|
||||
{ path: 'particulars', component: ParterRebateManageMentParticularsComponent },
|
||||
{ path: 'record', component: ParterRebateManageMentRecordComponent },
|
||||
{ path: 'setting', component: ParterRebateManageMentSettingComponent },
|
||||
{ path: 'setting/add/:id', component: ParterRebateManageMentAddComponent },
|
||||
{ path: 'setting/add/:id', component: ParterRebateManageMentAddComponent }
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -93,7 +97,7 @@ const routes: Routes = [
|
||||
{ path: '', redirectTo: 'list' },
|
||||
{ path: 'list', component: PartnerAccountManagementListComponent },
|
||||
{ path: 'detail/:id', component: PartnerAccountManagementAccountDetailComponent },
|
||||
{ path: 'recorded/detail/:id', component: PartnerAccountManagementRecordedDetailComponent },
|
||||
{ path: 'recorded/detail/:id', component: PartnerAccountManagementRecordedDetailComponent }
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -104,16 +108,16 @@ const routes: Routes = [
|
||||
{ path: 'detail/:id', component: PartnerAccountManagementWithdralDetailComponent }
|
||||
]
|
||||
}
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
path: 'partner-list',
|
||||
children: [
|
||||
{ path: '', component: PartnerListComponent },
|
||||
{ path: 'detail/:id', component: PartnerDetailComponent },
|
||||
{ path: 'etp-detail/:id', component: PartnerDetailComponent },
|
||||
{ path: 'personal-detail/:id', component: PersonalPartnerDetailComponent },
|
||||
{ path: 'add-etp-partner', component: AddEtpPartnerComponent },
|
||||
{ path: 'add-personal-partner', component: AddPersonalPartnerComponent },
|
||||
{ path: 'add-personal-partner', component: AddPersonalPartnerComponent }
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -130,7 +134,15 @@ const routes: Routes = [
|
||||
children: [
|
||||
{ path: '', component: ScrollImgComponentsListComponent },
|
||||
{ path: 'list', component: ScrollImgComponentsListComponent },
|
||||
{ path: 'detail', component: ScrollimgComponentsAddComponent },
|
||||
{ path: 'detail', component: ScrollimgComponentsAddComponent }
|
||||
]
|
||||
},
|
||||
{
|
||||
path: 'advice-feedback',
|
||||
children: [
|
||||
{ path: '', component: ParterAdviceFeedbackListComponent },
|
||||
{ path: 'list', component: ParterAdviceFeedbackListComponent },
|
||||
{ path: 'detail', component: ParterAdviceFeedbackDetailComponent }
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -147,13 +159,13 @@ const routes: Routes = [
|
||||
{ path: 'article-management-list', component: ParterArticleManagementListComponent },
|
||||
{ path: 'article-management-add', component: ParterArticleManagementEditComponent },
|
||||
{ path: 'article-management-edit', component: ParterArticleManagementEditComponent },
|
||||
{ path: 'banner', component: BannerComponentsListComponent},
|
||||
{ path: 'banner/detail', component: BannerComponentsAddComponent },
|
||||
{ path: 'banner', component: BannerComponentsListComponent },
|
||||
{ path: 'banner/detail', component: BannerComponentsAddComponent }
|
||||
]
|
||||
},
|
||||
}
|
||||
];
|
||||
@NgModule({
|
||||
imports: [RouterModule.forChild(routes)],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class PartnerRoutingModule { }
|
||||
export class PartnerRoutingModule {}
|
||||
|
||||
@ -58,6 +58,9 @@ import { ScrollimgComponentsAddComponent } from './scrollimg/components/add/add.
|
||||
import { ScrollImgComponentsListComponent } from './scrollimg/components/list/list.component';
|
||||
import { BannerComponentsListComponent } from './knowledge/banner/components/list/list.component';
|
||||
import { BannerComponentsAddComponent } from './knowledge/banner/components/add/add.component';
|
||||
import { PersonalPartnerDetailComponent } from './partner-list/components/personal-partner-detail/personal-partner-detail.component';
|
||||
import { ParterAdviceFeedbackListComponent } from './advice-feedback/components/list/list.component';
|
||||
import { ParterAdviceFeedbackDetailComponent } from './advice-feedback/components/feedback-detail/feedback-detail.component';
|
||||
|
||||
const COMPONENTS: any[] = [
|
||||
PartnerBusinessStatisticsIndexComponent,
|
||||
@ -105,7 +108,10 @@ const COMPONENTS: any[] = [
|
||||
PartnerKnowledgeClassificationListComponent,
|
||||
PartnerEditComponent,
|
||||
BannerComponentsListComponent,
|
||||
BannerComponentsAddComponent
|
||||
BannerComponentsAddComponent,
|
||||
PersonalPartnerDetailComponent,
|
||||
ParterAdviceFeedbackListComponent,
|
||||
ParterAdviceFeedbackDetailComponent
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
@ -113,4 +119,4 @@ const COMPONENTS: any[] = [
|
||||
imports: [CommonModule, PartnerRoutingModule, SharedModule],
|
||||
providers: [PartnerListService]
|
||||
})
|
||||
export class PartnerModule { }
|
||||
export class PartnerModule {}
|
||||
|
||||
@ -4,13 +4,51 @@
|
||||
* @Author : Shiming
|
||||
* @Date : 2022-02-24 20:09:49
|
||||
* @LastEditors : Shiming
|
||||
* @LastEditTime : 2022-03-11 15:25:00
|
||||
* @LastEditTime : 2022-03-21 13:53:31
|
||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\rebate-management\\components\\rebate-setting\\add\\add.component.html
|
||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||
-->
|
||||
<page-header-wrapper [title]="''"> </page-header-wrapper>
|
||||
<page-header-wrapper [title]="'新增'"> </page-header-wrapper>
|
||||
<nz-card>
|
||||
<div nz-row>
|
||||
|
||||
<!-- 数据列表 -->
|
||||
12121212
|
||||
<app-rebate-table></app-rebate-table>
|
||||
<sv-container col="1">
|
||||
<sv label="配置名称"> <input style="max-width: 400px;" nz-input placeholder="请输入" [(ngModel)]="setValue" /></sv>
|
||||
<sv-title>固定结算费率配置</sv-title>
|
||||
<sv label="固定结算费率"> <nz-input-number [(ngModel)]="toFixedValue" [nzPrecision]="precision" nzPlaceHolder="请输入"></nz-input-number> %</sv>
|
||||
<sv-title>业务量和管理费比例配置</sv-title>
|
||||
<sv label="选择配置类型">
|
||||
<nz-radio-group [(ngModel)]="radioValue">
|
||||
<label nz-radio nzValue="A">按全部等级配置</label>
|
||||
<label nz-radio nzValue="B">按不同等级配置</label>
|
||||
</nz-radio-group>
|
||||
</sv>
|
||||
<sv col="1">
|
||||
<app-rebate-table></app-rebate-table>
|
||||
</sv>
|
||||
<sv-title>关联合伙人配置</sv-title>
|
||||
<sv label="合伙人选择">
|
||||
<nz-select ngModel="lucy" style="max-width: 400px; min-width: 200px;">
|
||||
<nz-option nzValue="jack" nzLabel="Jack"></nz-option>
|
||||
<nz-option nzValue="lucy" nzLabel="Lucy"></nz-option>
|
||||
</nz-select>
|
||||
<span >添加</span>
|
||||
</sv>
|
||||
<sv label="优先级" col="1">
|
||||
<nz-select ngModel="lucy" style="max-width: 400px; min-width: 200px;">
|
||||
<nz-option nzValue="jack" nzLabel="Jack"></nz-option>
|
||||
<nz-option nzValue="lucy" nzLabel="Lucy"></nz-option>
|
||||
</nz-select>
|
||||
</sv>
|
||||
<sv label="规则说明" col="1">
|
||||
<sf #sf mode="edit" [schema]="schema1" [ui]="{ '*': { spanLabelFixed: 10, grid: { span: 16 }} }"
|
||||
button="none"> </sf>
|
||||
</sv>
|
||||
<sv label="规则说明" col="1">
|
||||
<textarea style="max-width: 400px; min-width: 200px;" rows="4" nz-input [(ngModel)]="inputValue"></textarea>
|
||||
</sv>
|
||||
</sv-container>
|
||||
|
||||
</div>
|
||||
</nz-card>
|
||||
|
||||
@ -0,0 +1,10 @@
|
||||
:host {
|
||||
::ng-deep {
|
||||
.sv__label {
|
||||
color: #000;
|
||||
}
|
||||
.sv__title {
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,3 +1,13 @@
|
||||
/*
|
||||
* @Description :
|
||||
* @Version : 1.0
|
||||
* @Author : Shiming
|
||||
* @Date : 2022-03-21 09:26:45
|
||||
* @LastEditors : Shiming
|
||||
* @LastEditTime : 2022-03-21 13:44:34
|
||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\rebate-management\\components\\rebate-setting\\add\\add.component.ts
|
||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||
*/
|
||||
import { ModalHelper } from '@delon/theme';
|
||||
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { ActivatedRoute, Router } from '@angular/router';
|
||||
@ -8,10 +18,17 @@ import { NzModalService } from 'ng-zorro-antd/modal';
|
||||
import { RebateManagementService } from '../../../services/rebate-management.service';
|
||||
@Component({
|
||||
selector: 'app-parter-channel-rebate-management-add',
|
||||
styleUrls: ['./add.component.less'],
|
||||
templateUrl: './add.component.html'
|
||||
})
|
||||
export class ParterRebateManageMentAddComponent implements OnInit {
|
||||
|
||||
setValue: string = '';
|
||||
toFixedValue: Number = 2;
|
||||
radioValue = 'A';
|
||||
precision = 2;
|
||||
inputValue= '';
|
||||
@ViewChild('sf', { static: false }) sf!: SFComponent;
|
||||
schema1!: SFSchema;
|
||||
constructor(
|
||||
public router: Router,
|
||||
public ar: ActivatedRoute,
|
||||
@ -19,7 +36,25 @@ export class ParterRebateManageMentAddComponent implements OnInit {
|
||||
private modal: NzModalService,
|
||||
public shipperservice: ShipperBaseService,
|
||||
) {}
|
||||
|
||||
initSF(data?: any) {
|
||||
this.schema1 = {
|
||||
properties: {
|
||||
content: {
|
||||
type: 'string',
|
||||
title: '',
|
||||
ui: {
|
||||
widget: 'tinymce',
|
||||
loadingTip: 'loading...',
|
||||
config: {
|
||||
height: 650
|
||||
}
|
||||
},
|
||||
default: data?.agreementContent || ''
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
ngOnInit() {
|
||||
this.initSF()
|
||||
}
|
||||
}
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
* @Author : Shiming
|
||||
* @Date : 2022-02-24 20:09:49
|
||||
* @LastEditors : Shiming
|
||||
* @LastEditTime : 2022-03-11 14:45:48
|
||||
* @LastEditTime : 2022-03-22 14:42:27
|
||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\rebate-management\\components\\rebate-setting\\rebate-setting.component.html
|
||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||
-->
|
||||
@ -39,7 +39,7 @@
|
||||
</div>
|
||||
<st
|
||||
#st
|
||||
[data]="data"
|
||||
[data]="service.$api_get_rebateConfig"
|
||||
[columns]="columns"
|
||||
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
|
||||
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
|
||||
|
||||
@ -72,7 +72,7 @@ export class ParterRebateManageMentSettingComponent implements OnInit {
|
||||
title: '时间月份',
|
||||
format: 'month',
|
||||
},
|
||||
phone: {
|
||||
partnerId: {
|
||||
type: 'string',
|
||||
title: '合伙人名称'
|
||||
},
|
||||
@ -94,31 +94,31 @@ export class ParterRebateManageMentSettingComponent implements OnInit {
|
||||
},
|
||||
{
|
||||
title: '配置类型',
|
||||
index: 'name1'
|
||||
index: 'configType'
|
||||
},
|
||||
{
|
||||
title: '备注',
|
||||
index: 'name1'
|
||||
index: 'remark'
|
||||
},
|
||||
{
|
||||
title: '关联合伙人范围',
|
||||
index: 'name1'
|
||||
index: 'partnerType'
|
||||
},
|
||||
{
|
||||
title: '创建时间',
|
||||
index: 'name1'
|
||||
index: 'enableTime'
|
||||
},
|
||||
{
|
||||
title: '启用时间',
|
||||
index: 'name1'
|
||||
index: 'enableTime'
|
||||
},
|
||||
{
|
||||
title: '优先级',
|
||||
index: 'name44'
|
||||
index: 'priority'
|
||||
},
|
||||
{
|
||||
title: '状态',
|
||||
index: 'name44'
|
||||
index: 'stateLocked'
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
|
||||
@ -17,6 +17,8 @@ import { BaseService } from '@shared';
|
||||
export class RebateManagementService extends BaseService {
|
||||
// 查询规则抽查列表
|
||||
public $api_get_listCompliancePage = '/api/sdc/billRiskOperate/listRiskPage';
|
||||
// 查询返佣配置表
|
||||
public $api_get_rebateConfig = '/api/mdc/rebateConfig/list/page';
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
}
|
||||
|
||||
@ -16,11 +16,11 @@
|
||||
</ng-template>
|
||||
<ng-template #action>
|
||||
<div class="mr-xl">
|
||||
<p class="text-lg mb-sm mt-xs">待审批</p>
|
||||
<div>
|
||||
<button nz-button [nzType]="'primary'"
|
||||
(click)="auditAction(formData,formData?.refundStatus)">{{formData?.refundStatusLabel ===
|
||||
'1'?'审核':'复审'}}</button>
|
||||
<p class="text-lg mb-sm mt-xs">{{formData?.stsLabel}}</p>
|
||||
<div *ngIf="formData?.sts === '0' || formData?.sts ==='1'">
|
||||
<button nz-button [nzType]="'primary'" (click)="auditAction(formData,formData?.refundStatus)">{{formData?.sts
|
||||
===
|
||||
'0' ?'审核':'复审'}}</button>
|
||||
</div>
|
||||
</div>
|
||||
</ng-template>
|
||||
@ -31,48 +31,49 @@
|
||||
<nz-alert nzType="info" nzMessage="入账信息" class="mb-md"></nz-alert>
|
||||
<div se-container [labelWidth]="130">
|
||||
<se label="账户名称">
|
||||
{{formData?.ltdName}}
|
||||
{{formData?.accountName}}
|
||||
</se>
|
||||
<se label="网络货运人">
|
||||
{{formData?.ltdName}}
|
||||
</se>
|
||||
<se label="入账单号">
|
||||
{{formData?.refundApplyCode}}
|
||||
{{formData?.entryNumber}}
|
||||
</se>
|
||||
<se label="银行类型">
|
||||
{{formData?.bankType==='1'?'平安银行':'浦发银行'}}
|
||||
{{formData?.bankName}}
|
||||
</se>
|
||||
<se label="虚拟账户">
|
||||
{{formData?.virtualAccount}}
|
||||
{{formData?.fictitiousAccount}}
|
||||
</se>
|
||||
<se label="提交时间">
|
||||
{{formData?.createTime}}
|
||||
{{formData?.submitTime}}
|
||||
</se>
|
||||
<se label="开票金额">
|
||||
{{formData?.amount | currency}}
|
||||
{{formData?.invoiceAmount | currency}}
|
||||
</se>
|
||||
<se label="代缴个税">
|
||||
{{formData?.amount | currency}}
|
||||
{{formData?.taxPersonal | currency}}
|
||||
</se>
|
||||
<se label="入账金额">
|
||||
{{formData?.amount | currency}}
|
||||
{{formData?.recordedAmount | currency}}
|
||||
</se>
|
||||
<se label="入账状态">
|
||||
{{formData?.refundStatusLabel}}
|
||||
{{formData?.stsLabel}}
|
||||
</se>
|
||||
<se label="发票图片">
|
||||
<img nz-image width="200px" height="200px"
|
||||
nzSrc="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png" alt="" />
|
||||
<img *ngIf="formData?.invoiceUrl" nz-image width="100px" height="100px" [nzSrc]="formData?.invoiceUrl" alt="" />
|
||||
<span *ngIf="!formData?.invoiceUrl">-</span>
|
||||
</se>
|
||||
<se label="快递单号">
|
||||
{{formData?.bankCardNumber}}
|
||||
{{formData?.expressName}}
|
||||
</se>
|
||||
<se label="纳税凭证">
|
||||
<img nz-image width="200px" height="200px"
|
||||
nzSrc="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png" alt="" />
|
||||
<img *ngIf="formData?.taxVoucherUrl" nz-image width="100px" height="100px" [nzSrc]="formData?.taxVoucherUrl"
|
||||
alt="" />
|
||||
<span *ngIf="!formData?.taxVoucherUrl">-</span>
|
||||
</se>
|
||||
<se label="银行流水号">
|
||||
{{formData?.bankSerialNumber}}
|
||||
{{formData?.bankFlow}}
|
||||
</se>
|
||||
</div>
|
||||
|
||||
|
||||
@ -2,6 +2,7 @@ import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { ActivatedRoute } from '@angular/router';
|
||||
import { NzModalService } from 'ng-zorro-antd/modal';
|
||||
import { FreightAccountService } from 'src/app/routes/financial-management/services/freight-account.service';
|
||||
import { RecordedService } from '../../services/recorded.service';
|
||||
|
||||
|
||||
@Component({
|
||||
@ -16,57 +17,57 @@ export class PartnerRecordedDetailComponent implements OnInit {
|
||||
msg = '';
|
||||
id = '';
|
||||
|
||||
constructor(public service: FreightAccountService, private route: ActivatedRoute, private nzModalService: NzModalService) {
|
||||
constructor(public service: RecordedService, private route: ActivatedRoute, private nzModalService: NzModalService) {
|
||||
this.id = route.snapshot.params.id;
|
||||
this.loadRefundDetail(this.id);
|
||||
this.getRecordedDetail(this.id);
|
||||
}
|
||||
|
||||
ngOnInit(): void { }
|
||||
|
||||
loadRefundDetail(id: string) {
|
||||
this.service.request(this.service.$api_get_refund_detail, { id }).subscribe(res => {
|
||||
getRecordedDetail(id: string) {
|
||||
this.service.request(this.service.$api_get_recorded_record_detail, { id }).subscribe(res => {
|
||||
if (res) {
|
||||
this.formData = res;
|
||||
// 处理流程节点数据
|
||||
// 流程是否结束
|
||||
let isEnd = false;
|
||||
if (res.successTime) {
|
||||
isEnd = true;
|
||||
if (res.refundStatus === '3') {
|
||||
this.timeLineData.push({ time: res.successTime, value: `到账成功`, color: 'green' });
|
||||
} else {
|
||||
this.timeLineData.push({ time: res.successTime, value: `提现失败`, color: 'red' });
|
||||
}
|
||||
}
|
||||
if (res.agreeTime && res.refundStatus !== '4') {
|
||||
this.timeLineData.push({ time: res.agreeTime, value: `银行处理中`, color: 'gray' });
|
||||
}
|
||||
if (res.agreeTime) {
|
||||
if (res.refundStatus === '4') {
|
||||
isEnd = true;
|
||||
this.timeLineData.push({
|
||||
time: res.agreeTime,
|
||||
value: `拒绝提现<br/>操作人员:${res.handlerUserIdLabel}`,
|
||||
color: 'red'
|
||||
});
|
||||
} else {
|
||||
this.timeLineData.push({
|
||||
time: res.agreeTime,
|
||||
value: `审核通过<br/>操作人员:${res.handlerUserIdLabel}`,
|
||||
color: 'gray'
|
||||
});
|
||||
}
|
||||
}
|
||||
if (res.createTime) {
|
||||
this.timeLineData.push({
|
||||
time: res.createTime,
|
||||
value: `提交提现申请<br/>提现${res.amount}元至${res.bankName}(${res.bankCardNumber})<br/>操作人员:${res.userIdLabel}`,
|
||||
color: 'gray'
|
||||
});
|
||||
}
|
||||
if (this.timeLineData?.length > 0 && !isEnd) {
|
||||
this.timeLineData[0].color = 'green';
|
||||
}
|
||||
// let isEnd = false;
|
||||
// if (res.successTime) {
|
||||
// isEnd = true;
|
||||
// if (res.refundStatus === '3') {
|
||||
// this.timeLineData.push({ time: res.successTime, value: `到账成功`, color: 'green' });
|
||||
// } else {
|
||||
// this.timeLineData.push({ time: res.successTime, value: `提现失败`, color: 'red' });
|
||||
// }
|
||||
// }
|
||||
// if (res.agreeTime && res.refundStatus !== '4') {
|
||||
// this.timeLineData.push({ time: res.agreeTime, value: `银行处理中`, color: 'gray' });
|
||||
// }
|
||||
// if (res.agreeTime) {
|
||||
// if (res.refundStatus === '4') {
|
||||
// isEnd = true;
|
||||
// this.timeLineData.push({
|
||||
// time: res.agreeTime,
|
||||
// value: `拒绝提现<br/>操作人员:${res.handlerUserIdLabel}`,
|
||||
// color: 'red'
|
||||
// });
|
||||
// } else {
|
||||
// this.timeLineData.push({
|
||||
// time: res.agreeTime,
|
||||
// value: `审核通过<br/>操作人员:${res.handlerUserIdLabel}`,
|
||||
// color: 'gray'
|
||||
// });
|
||||
// }
|
||||
// }
|
||||
// if (res.createTime) {
|
||||
// this.timeLineData.push({
|
||||
// time: res.createTime,
|
||||
// value: `提交提现申请<br/>提现${res.amount}元至${res.bankName}(${res.bankCardNumber})<br/>操作人员:${res.userIdLabel}`,
|
||||
// color: 'gray'
|
||||
// });
|
||||
// }
|
||||
// if (this.timeLineData?.length > 0 && !isEnd) {
|
||||
// this.timeLineData[0].color = 'green';
|
||||
// }
|
||||
}
|
||||
});
|
||||
}
|
||||
@ -85,48 +86,45 @@ export class PartnerRecordedDetailComponent implements OnInit {
|
||||
onClick: () => {
|
||||
if (!this.msg || this.msg.trim().length === 0) {
|
||||
this.service.msgSrv.warning('请填写拒绝原因 ');
|
||||
return false;
|
||||
return;
|
||||
}
|
||||
this.service
|
||||
.request(this.service.$api_disagree_refund, {
|
||||
refundApplicationId: params,
|
||||
msg: this.msg
|
||||
})
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('审核拒绝成功');
|
||||
this.audit({ ids: params, rejectReason: this.msg, sts: '3' }, () => {
|
||||
modal.destroy(true);
|
||||
}
|
||||
});
|
||||
return false;
|
||||
}, '审核拒绝成功');
|
||||
}
|
||||
},
|
||||
{
|
||||
label: '通过',
|
||||
type: 'primary',
|
||||
onClick: () => {
|
||||
this.service
|
||||
.request(this.service.$api_agree_refund, {
|
||||
refundApplicationId: params,
|
||||
msg: this.msg
|
||||
})
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('审核通过成功');
|
||||
this.audit({ ids: params, rejectReason: this.msg, sts: this.formData?.sts === '0' ? 1 : 2 }, () => {
|
||||
modal.destroy(true);
|
||||
}
|
||||
});
|
||||
}, `${this.formData?.sts === '1' ? '审核' : '复审'}通过成功`);
|
||||
}
|
||||
}
|
||||
]
|
||||
});
|
||||
modal.afterClose.subscribe((res: any) => {
|
||||
if (res) {
|
||||
this.loadRefundDetail(this.id);
|
||||
this.getRecordedDetail(this.id);
|
||||
}
|
||||
});
|
||||
}
|
||||
goBack() {
|
||||
history.go(-1);
|
||||
}
|
||||
|
||||
/**
|
||||
* 审核
|
||||
*/
|
||||
audit(params: any, callback: Function, msg = '成功') {
|
||||
this.service
|
||||
.request(this.service.$api_audit_recored, ...params)
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success(msg);
|
||||
callback();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@ -32,7 +32,7 @@
|
||||
<div class="d-flex align-items-center ">
|
||||
<div class="mr-md">
|
||||
已选择
|
||||
<strong class="text-red">{{ selectedRows.length }}</strong> 条数据 累计提现 <strong class="text-red">{{
|
||||
<strong class="text-red">{{ selectedRows.length }}</strong> 条数据,累计入账 <strong class="text-red">{{
|
||||
totalCallNo }}</strong>
|
||||
<!-- <a *ngIf="totalCallNo > 0" (click)="st.clearCheck()" class="ml-lg">清空</a> -->
|
||||
</div>
|
||||
@ -41,8 +41,9 @@
|
||||
</ng-template>
|
||||
|
||||
<div class="table-content">
|
||||
<st #st [data]="service.$api_get_refund_page" [columns]="columns" [req]="{ process: beforeReq }"
|
||||
[loading]="service.http.loading" [scroll]="{ x:'1200px' }" (change)="stChange($event)"
|
||||
<st #st [data]="service.$api_get_recorded_page" [columns]="columns"
|
||||
[req]="{ method: 'POST', allInBody: true,process: beforeReq}" [loading]="service.http.loading"
|
||||
[scroll]="{ x:'1200px' }" (change)="stChange($event)"
|
||||
[res]="{ reName: { list: 'data.records', total: 'data.total' }, process: afterRes }"
|
||||
[page]="{ show: true, pageSizes: [10, 20, 50, 100, 200, 500] }">
|
||||
<ng-template st-row="bankCardNumber" let-item let-index="index" let-column="column">
|
||||
|
||||
@ -2,9 +2,11 @@ import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { ActivatedRoute, Router } from '@angular/router';
|
||||
import { STComponent, STColumn, STChange, STRequestOptions, STData } from '@delon/abc/st';
|
||||
import { SFComponent, SFSchema, SFDateWidgetSchema } from '@delon/form';
|
||||
import { ShipperBaseService } from '@shared';
|
||||
import { NzModalService } from 'ng-zorro-antd/modal';
|
||||
import { FreightAccountService } from 'src/app/routes/financial-management/services/freight-account.service';
|
||||
import Big from 'src/app/shared/utils/deal-precision';
|
||||
import { RecordedService } from '../../services/recorded.service';
|
||||
|
||||
|
||||
@Component({
|
||||
@ -39,7 +41,8 @@ export class PartnerRecordedRecordComponent implements OnInit {
|
||||
accountName = ''; // 账户名称
|
||||
|
||||
|
||||
constructor(public service: FreightAccountService, private nzModalService: NzModalService, private router: Router, public ar: ActivatedRoute) {
|
||||
constructor(public service: RecordedService, private nzModalService: NzModalService,
|
||||
private router: Router, public ar: ActivatedRoute, public shipperSrv: ShipperBaseService) {
|
||||
|
||||
this.accountName = this.ar.snapshot.queryParams?.userIdLabel || '';
|
||||
this.ltdId = this.ar.snapshot.queryParams?.ltdId || '';
|
||||
@ -67,7 +70,7 @@ export class PartnerRecordedRecordComponent implements OnInit {
|
||||
};
|
||||
|
||||
afterRes = (data: any[], rawData?: any) => {
|
||||
data = data.map(node => ({ ...node, disabled: node.refundStatus !== '1' }));
|
||||
// data = data.map(node => ({ ...node, disabled: node.sts !== '0' }));
|
||||
return data;
|
||||
};
|
||||
|
||||
@ -101,7 +104,7 @@ export class PartnerRecordedRecordComponent implements OnInit {
|
||||
}
|
||||
let totalCallNo = 0;
|
||||
this.selectedRows.forEach((item => {
|
||||
totalCallNo = new Big(this.totalCallNo).plus(item?.amount).parse();
|
||||
totalCallNo = new Big(this.totalCallNo).plus(item?.entryAmount).parse();
|
||||
}));
|
||||
this.totalCallNo = totalCallNo;
|
||||
} else if (e.type === 'loaded') {
|
||||
@ -122,6 +125,10 @@ export class PartnerRecordedRecordComponent implements OnInit {
|
||||
}
|
||||
|
||||
auditAction(item?: any, type: string = '1') {
|
||||
if (!item && this.selectedRows.length === 0) {
|
||||
this.service.msgSrv.warning('请选择需要审核的记录');
|
||||
return;
|
||||
}
|
||||
this.msg = '';
|
||||
let params: Array<string> = [];
|
||||
if (item) {
|
||||
@ -139,39 +146,34 @@ export class PartnerRecordedRecordComponent implements OnInit {
|
||||
onClick: () => {
|
||||
if (!this.msg || this.msg.trim().length === 0) {
|
||||
this.service.msgSrv.warning('请填写拒绝原因 ');
|
||||
return false;
|
||||
return;
|
||||
}
|
||||
this.service
|
||||
.request(this.service.$api_disagree_refund, {
|
||||
refundApplicationId: params,
|
||||
msg: this.msg
|
||||
})
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('审核拒绝成功');
|
||||
this.audit({ ids: params, rejectReason: this.msg, sts: '3' }, () => {
|
||||
modal.destroy();
|
||||
this.st.load(1);
|
||||
}
|
||||
});
|
||||
return false;
|
||||
}, '审核拒绝成功');
|
||||
// this.service
|
||||
// .request(this.service.$api_disagree_recorded, {
|
||||
// id: params,
|
||||
// rejectReason: this.msg
|
||||
// })
|
||||
// .subscribe(res => {
|
||||
// if (res) {
|
||||
// this.service.msgSrv.success('审核拒绝成功');
|
||||
// modal.destroy();
|
||||
// this.st.load(1);
|
||||
// }
|
||||
// });
|
||||
}
|
||||
},
|
||||
{
|
||||
label: '通过',
|
||||
type: 'primary',
|
||||
onClick: () => {
|
||||
this.service
|
||||
.request(this.service.$api_agree_refund, {
|
||||
refundApplicationId: params,
|
||||
msg: this.msg
|
||||
})
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('审核通过成功');
|
||||
this.audit({ ids: params, rejectReason: this.msg, sts: '1' }, () => {
|
||||
modal.destroy();
|
||||
this.st.load(1);
|
||||
}
|
||||
});
|
||||
}, '审核通过成功');
|
||||
}
|
||||
}
|
||||
]
|
||||
@ -230,12 +232,19 @@ export class PartnerRecordedRecordComponent implements OnInit {
|
||||
placeholder: '请输入'
|
||||
}
|
||||
},
|
||||
refundStatus: {
|
||||
sts: {
|
||||
type: 'string',
|
||||
title: '入账状态',
|
||||
default: '',
|
||||
enum: [
|
||||
{ label: '全部', value: '' },
|
||||
{ label: '待初审', value: '0' },
|
||||
{ label: '待复核', value: '1' },
|
||||
{ label: '已入账', value: '2' },
|
||||
{ label: '已拒绝', value: '3' },
|
||||
],
|
||||
ui: {
|
||||
widget: 'dict-select',
|
||||
params: { dictKey: 'refund:apply:status' },
|
||||
widget: 'select',
|
||||
placeholder: '请选择'
|
||||
}
|
||||
},
|
||||
@ -247,10 +256,10 @@ export class PartnerRecordedRecordComponent implements OnInit {
|
||||
widget: 'select',
|
||||
placeholder: '请选择',
|
||||
allowClear: true,
|
||||
asyncData: () => this.service.getNetworkFreightForwarder(),
|
||||
asyncData: () => this.shipperSrv.getNetworkFreightForwarder({}, true),
|
||||
}
|
||||
},
|
||||
createTime: {
|
||||
submitTime: {
|
||||
title: '提交时间',
|
||||
type: 'string',
|
||||
ui: {
|
||||
@ -270,9 +279,9 @@ export class PartnerRecordedRecordComponent implements OnInit {
|
||||
private initST(): STColumn[] {
|
||||
return [
|
||||
{ title: '', index: 'key', type: 'checkbox', className: 'text-center' },
|
||||
{ title: '账户名称', index: 'createTime', width: 180, className: 'text-center' },
|
||||
{ title: '虚拟账户', index: 'virtualAccount', width: 180, className: 'text-center' },
|
||||
{ title: '入账单号', index: 'refundApplyCode', width: 190, className: 'text-center' },
|
||||
{ title: '账户名称', index: 'accountName', width: 180, className: 'text-center' },
|
||||
{ title: '虚拟账户', index: 'fictitiousAccount', width: 180, className: 'text-center' },
|
||||
{ title: '入账单号', index: 'entryNumber', width: 190, className: 'text-center' },
|
||||
{ title: '网络货运人', index: 'ltdName', width: 220, className: 'text-center' },
|
||||
{
|
||||
title: '开票金额',
|
||||
@ -284,7 +293,7 @@ export class PartnerRecordedRecordComponent implements OnInit {
|
||||
},
|
||||
{
|
||||
title: '代缴个税',
|
||||
index: 'amount',
|
||||
index: 'taxPersonal',
|
||||
width: 150,
|
||||
type: 'widget',
|
||||
className: 'text-right',
|
||||
@ -292,15 +301,15 @@ export class PartnerRecordedRecordComponent implements OnInit {
|
||||
},
|
||||
{
|
||||
title: '入账金额',
|
||||
index: 'amount',
|
||||
index: 'entryAmount',
|
||||
width: 150,
|
||||
type: 'widget',
|
||||
className: 'text-right',
|
||||
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.amount }) }
|
||||
},
|
||||
|
||||
{ title: '提交时间', index: 'bankSerialNumber', width: 160, className: 'text-center' },
|
||||
{ title: '入账状态', index: 'refundStatusLabel', width: 100, className: 'text-center' },
|
||||
{ title: '提交时间', index: 'submitTime', width: 160, className: 'text-center' },
|
||||
{ title: '入账状态', index: 'stsLabel', width: 120, className: 'text-center' },
|
||||
{
|
||||
title: '操作',
|
||||
fixed: 'right',
|
||||
@ -308,12 +317,12 @@ export class PartnerRecordedRecordComponent implements OnInit {
|
||||
buttons: [
|
||||
{
|
||||
text: '审核',
|
||||
iif: item => item.refundStatus === '1',
|
||||
iif: item => item.sts === '0',
|
||||
click: item => this.auditAction(item)
|
||||
},
|
||||
{
|
||||
text: '复审',
|
||||
iif: item => item.refundStatus === '2',
|
||||
iif: item => item.sts === '1',
|
||||
click: item => this.router.navigate(['./detail/' + item.id], { relativeTo: this.ar })
|
||||
},
|
||||
{
|
||||
@ -324,4 +333,18 @@ export class PartnerRecordedRecordComponent implements OnInit {
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* 审核
|
||||
*/
|
||||
audit(params: any, callback: Function, msg = '成功') {
|
||||
this.service
|
||||
.request(this.service.$api_audit_recored, { ...params })
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success(msg);
|
||||
callback();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
17
src/app/routes/partner/recorded/services/recorded.service.ts
Normal file
17
src/app/routes/partner/recorded/services/recorded.service.ts
Normal file
@ -0,0 +1,17 @@
|
||||
import { Injectable, Injector } from '@angular/core';
|
||||
import { BaseService } from '@shared';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
})
|
||||
export class RecordedService extends BaseService {
|
||||
|
||||
$api_get_recorded_page = `/api/bpc/partnerInvoiceEntry/queryInvoiceEntrylist`; // 查询合伙人发票入账主表
|
||||
$api_get_recorded_record_detail = `/api/bpc/partnerInvoice/getDetailByOpration`; // 入账记录详情
|
||||
$api_disagree_recorded = ``; // 拒绝审核
|
||||
$api_agree_recorded = ``; // 同意审核
|
||||
$api_audit_recored = `/api/bpc/partnerInvoiceEntry/oprationAudit`; // 审核单据
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,13 @@
|
||||
<button nz-button (click)="refresh()" nzType="primary">Refresh</button>
|
||||
<g2-pie
|
||||
#pie
|
||||
[hasLegend]="true"
|
||||
title="销售额"
|
||||
subTitle="销售额"
|
||||
[total]="total"
|
||||
[valueFormat]="format"
|
||||
[data]="salesPieData"
|
||||
height="294"
|
||||
repaint="false"
|
||||
(clickItem)="handleClick($event)"
|
||||
></g2-pie>
|
||||
@ -0,0 +1,66 @@
|
||||
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { G2PieClickItem, G2PieComponent, G2PieData } from '@delon/chart/pie';
|
||||
import { NzMessageService } from 'ng-zorro-antd/message';
|
||||
|
||||
@Component({
|
||||
selector: 'app-dashboard',
|
||||
templateUrl: './dashboard.component.html',
|
||||
styleUrls: ['./dashboard.component.less']
|
||||
})
|
||||
export class DashboardComponent implements OnInit {
|
||||
@ViewChild('pie', { static: false }) readonly pie!: G2PieComponent;
|
||||
salesPieData: G2PieData[] = [];
|
||||
total = '';
|
||||
|
||||
constructor(private msg: NzMessageService) {
|
||||
this.refresh();
|
||||
}
|
||||
ngOnInit(): void {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
|
||||
refresh(): void {
|
||||
const rv = (min: number = 0, max: number = 5000) => Math.floor(Math.random() * (max - min + 1) + min);
|
||||
this.salesPieData = [
|
||||
{
|
||||
x: '家用电器',
|
||||
y: rv()
|
||||
},
|
||||
{
|
||||
x: '食用酒水',
|
||||
y: rv()
|
||||
},
|
||||
{
|
||||
x: '个护健康',
|
||||
y: rv()
|
||||
},
|
||||
{
|
||||
x: '服饰箱包',
|
||||
y: rv()
|
||||
},
|
||||
{
|
||||
x: '母婴产品',
|
||||
y: rv()
|
||||
}
|
||||
];
|
||||
if (Math.random() > 0.5) {
|
||||
this.salesPieData.push({
|
||||
x: '其他',
|
||||
y: rv()
|
||||
});
|
||||
}
|
||||
this.total = `¥ ${this.salesPieData.reduce((pre, now) => now.y + pre, 0).toFixed(2)}`;
|
||||
if (this.pie) {
|
||||
// 等待组件渲染
|
||||
setTimeout(() => this.pie.changeData());
|
||||
}
|
||||
}
|
||||
|
||||
format(val: number): string {
|
||||
return `¥ ${val.toFixed(2)}`;
|
||||
}
|
||||
|
||||
handleClick(data: G2PieClickItem): void {
|
||||
this.msg.info(`${data.item.x} - ${data.item.y}`);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule, Routes } from '@angular/router';
|
||||
|
||||
import { DashboardComponent } from './components/dashboard/dashboard.component';
|
||||
|
||||
const routes: Routes = [{ path: 'dashboard', component: DashboardComponent }];
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forChild(routes)],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class RegulatoryDataRoutingModule {}
|
||||
14
src/app/routes/regulatory-data/regulatory-data.module.ts
Normal file
14
src/app/routes/regulatory-data/regulatory-data.module.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { SharedModule, SHARED_G2_MODULES } from '@shared';
|
||||
|
||||
import { DashboardComponent } from './components/dashboard/dashboard.component';
|
||||
import { RegulatoryDataRoutingModule } from './regulatory-data-routing.module';
|
||||
|
||||
const COMPONENTS: any = [DashboardComponent];
|
||||
const NOTROUTECOMPONENTS: any = [];
|
||||
@NgModule({
|
||||
declarations: [...COMPONENTS, ...NOTROUTECOMPONENTS],
|
||||
imports: [CommonModule, RegulatoryDataRoutingModule, SharedModule, SHARED_G2_MODULES]
|
||||
})
|
||||
export class RegulatoryDataModule {}
|
||||
@ -0,0 +1,9 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
})
|
||||
export class RegulatoryDataService {
|
||||
|
||||
constructor() { }
|
||||
}
|
||||
@ -15,6 +15,7 @@ import { RouterModule, Routes } from '@angular/router';
|
||||
import { LayoutProComponent } from '@brand';
|
||||
import { EATokenGuard } from '@core';
|
||||
import { environment } from '@env/environment';
|
||||
|
||||
import { AuthGuard } from '../core/guards/auth.guard';
|
||||
|
||||
// dashboard pages
|
||||
@ -68,6 +69,7 @@ const routes: Routes = [
|
||||
},
|
||||
{ path: 'menu-management', loadChildren: () => import('./menu-manager/menu-manager.module').then(m => m.MenuManagerModule) },
|
||||
{ path: 'partner', loadChildren: () => import('./partner/partner.module').then(m => m.PartnerModule) },
|
||||
{ path: 'regulatory-data', loadChildren: () => import('./regulatory-data/regulatory-data.module').then(m => m.RegulatoryDataModule) },
|
||||
{
|
||||
path: 'download',
|
||||
loadChildren: () => import('./download/download.module').then(m => m.DownloadModule)
|
||||
@ -92,4 +94,4 @@ const routes: Routes = [
|
||||
],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class RouteRoutingModule { }
|
||||
export class RouteRoutingModule {}
|
||||
|
||||
@ -99,8 +99,8 @@ export class TicketService extends ShipperBaseService {
|
||||
// 查询快递轨迹
|
||||
$api_get_express_routes = '/api/fcc/ficoExpressH/searchRoutes';
|
||||
|
||||
constructor(public injector: Injector, public eaCacheSrv: EACacheService) {
|
||||
super(injector, eaCacheSrv);
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
}
|
||||
|
||||
reviewPDF(url: string) {
|
||||
|
||||
@ -135,16 +135,14 @@ export class UsermanageService extends ShipperBaseService {
|
||||
|
||||
// 查询司机配置列表
|
||||
$api_configPage = '/api/mdc/cuc/driver/list/configPage';
|
||||
|
||||
// 批量修改企业渠道
|
||||
$api_batchUpdateEnterpriceChannel = '/api/mdc/enterpriceRelLog/batchUpdateEnterpriceChannel';
|
||||
// 批量修改企业合伙人
|
||||
$api_batchUpdateEnterpricePartner = '/api/mdc/enterpriceRelLog/batchUpdateEnterpricePartner';
|
||||
// 渠道销售修改详情
|
||||
$api_partnerChannelUpdateDetaiList = '/api/mdc/enterpriceRelLog/partnerChannelUpdateDetaiList';
|
||||
|
||||
constructor(public injector: Injector, public nzModalService: NzModalService, public eaCacheSrv: EACacheService) {
|
||||
super(injector, eaCacheSrv);
|
||||
constructor(public injector: Injector, private nzModalService: NzModalService) {
|
||||
super(injector);
|
||||
}
|
||||
|
||||
showImg(url: any) {
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
* @Author : Shiming
|
||||
* @Date : 2022-01-25 20:18:52
|
||||
* @LastEditors : Shiming
|
||||
* @LastEditTime : 2022-03-11 15:12:01
|
||||
* @LastEditTime : 2022-03-21 14:14:06
|
||||
* @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\rebate-table\\rebate-table.component.html
|
||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||
-->
|
||||
@ -14,48 +14,52 @@
|
||||
<button nz-button nzType="primary" (click)="add()">新增公里数</button>
|
||||
<button class="ml-md" nz-button nzType="primary" (click)="save()">保存</button>
|
||||
</div> -->
|
||||
<div>
|
||||
<sf #sf [schema]="schema" [formData]="sfdata" [button]="'none'" [ui]="ui">
|
||||
<ng-template sf-template="freightPrice" let-i let-ui="ui">
|
||||
<nz-input-group [nzAddOnAfter]="addOnAfterTemplate">
|
||||
<nz-input-number [(ngModel)]="minrebatePrice" [nzMin]="0" ></nz-input-number>
|
||||
</nz-input-group>
|
||||
<ng-template #addOnAfterTemplate>
|
||||
<span >元</span>
|
||||
</ng-template>
|
||||
</ng-template>
|
||||
</sf>
|
||||
|
||||
</div>
|
||||
<nz-table #groupingTable [nzData]="data" nzBordered nzSize="small" [nzFrontPagination]="false"
|
||||
[nzScroll]="{ x: '900px' }" [nzShowPagination]="false" class="ml-xl" style="max-width: 1200px;">
|
||||
<thead>
|
||||
<tr>
|
||||
<th rowspan="2" nzWidth="250px" nzAlign="center" nzLeft>险种</th>
|
||||
<th nzWidth="220px" nzAlign="center" >普货-基本险</th>
|
||||
<th nzWidth="220px" nzAlign="center" >普货-综合险</th>
|
||||
<th rowspan="2" nzWidth="250px" nzAlign="center" nzLeft>序号</th>
|
||||
<th nzWidth="220px" nzAlign="center" >合伙人等级</th>
|
||||
<th nzWidth="220px" nzAlign="center" >初始业务量(万/月)</th>
|
||||
<th nzWidth="220px" nzAlign="center" >到达业务量(万/月)</th>
|
||||
<th nzWidth="220px" nzAlign="center" >管理费比例%</th>
|
||||
<th rowspan="2" nzWidth="60px" nzAlign="center" nzRight>操作</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr *ngFor="let item of groupingTable.data;let i = index">
|
||||
<td nzWidth="250px" nzAlign="center" nzLeft>
|
||||
<div style="display: flex;align-items: center;justify-content: space-between;">
|
||||
<div style="text-align: center;">
|
||||
<div>
|
||||
{{i + 1}}
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
<td nzWidth="220px" nzAlign="center" >
|
||||
<div >
|
||||
公里数(km)
|
||||
<nz-select ngModel="lucy">
|
||||
<nz-option nzValue="jack" nzLabel="Jack154654564654"></nz-option>
|
||||
<nz-option nzValue="lucy" nzLabel="Lucy"></nz-option>
|
||||
</nz-select>
|
||||
</div>
|
||||
<div style="color:#f0f0f0;">|</div>
|
||||
<div >
|
||||
<label style="width: 65px;text-align: right;"> {{item.startKm}}</label>
|
||||
<label>-</label>
|
||||
|
||||
<nz-input-number [ngModel]="item.endKm" (ngModelChange)="changeEndKm($event,i)" [nzMin]="0"
|
||||
[nzFormatter]="formatterDollar" nzSize="small">
|
||||
</nz-input-number>(含)
|
||||
</td>
|
||||
<td nzWidth="220px" nzAlign="center" >
|
||||
<div style=" margin-left: 26%">
|
||||
<nz-input-group nzPrefix="=">
|
||||
<nz-input-number [(ngModel)]="item.baserebateRate" [nzMin]="0" nzSize="small"
|
||||
>
|
||||
</nz-input-number>
|
||||
</nz-input-group>
|
||||
|
||||
</div>
|
||||
</td>
|
||||
<td nzWidth="220px" nzAlign="center" >
|
||||
<div style=" margin-left: 26%">
|
||||
<nz-input-group nzPrefix="<">
|
||||
<nz-input-number [(ngModel)]="item.blanketrebateRate" [nzMin]="0" nzSize="small" >
|
||||
</nz-input-number>
|
||||
</nz-input-group>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
<td nzWidth="220px" nzAlign="center" >
|
||||
<div style=" margin-left: 26%">
|
||||
@ -69,19 +73,14 @@
|
||||
</ng-template>
|
||||
</div>
|
||||
</td>
|
||||
<td nzWidth="220px" nzAlign="center" >
|
||||
<div style=" margin-left: 26%">
|
||||
<nz-input-group [nzAddOnAfter]="addOnAfterTemplate2">
|
||||
<nz-input-number [(ngModel)]="item.blanketrebateRate" [nzMin]="0" nzSize="small" >
|
||||
</nz-input-number>
|
||||
</nz-input-group>
|
||||
</div>
|
||||
</td>
|
||||
<td nzWidth="60px" nzAlign="center" nzRight>
|
||||
<a nz-popconfirm
|
||||
nzPopconfirmTitle="是否新增?" (nzOnConfirm)="add()"
|
||||
>+</a>
|
||||
<a *ngIf="i === groupingTable.data.length-1 && groupingTable.data.length>1"
|
||||
nz-popconfirm
|
||||
nzPopconfirmTitle="是否确认删除?" (nzOnConfirm)="deleteRow(i)"
|
||||
>删除</a>
|
||||
>-</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
@ -12,26 +12,17 @@ import { SFComponent, SFSchema, SFUISchema } from '@delon/form';
|
||||
export class RebateTableComponent implements OnInit {
|
||||
data: any[] = [];
|
||||
headers: any[] = [];
|
||||
sfdata: any; // 货源单设置回显
|
||||
|
||||
@ViewChild('sf', { static: false }) sf!: SFComponent;
|
||||
schema: SFSchema = {};
|
||||
ui!: SFUISchema;
|
||||
|
||||
formatterDollar = (value: number): string => `${value}`;
|
||||
minrebatePrice: number = 0;
|
||||
changeSub = new Subject<string>();
|
||||
constructor(public service: BaseService, private cdr: ChangeDetectorRef) {}
|
||||
|
||||
ngOnInit(): void {
|
||||
this.loadData();
|
||||
this.initSF()
|
||||
this.changeEndKmAction();
|
||||
this.minrebatePrice = 1000
|
||||
}
|
||||
|
||||
loadData() {
|
||||
this.service.request('/api/mdc/cuc/rebateConfig/list').subscribe(res => {
|
||||
this.service.request('/api/mdc/cuc/insuranceConfig/list').subscribe(res => {
|
||||
if (res) {
|
||||
console.log(res);
|
||||
this.data = res;
|
||||
@ -43,35 +34,10 @@ export class RebateTableComponent implements OnInit {
|
||||
]).subscribe(res => {
|
||||
if (res) {
|
||||
console.log(res);
|
||||
this.minrebatePrice = Number(res[0].itemValue)
|
||||
}
|
||||
});
|
||||
}
|
||||
initSF() {
|
||||
this.schema = {
|
||||
properties: {
|
||||
freightPrice: {
|
||||
type: 'string',
|
||||
title: '单票投保最低保费',
|
||||
ui: {
|
||||
widget: 'custom',
|
||||
placeholder: '请输入',
|
||||
errors: { required: '请填写' }
|
||||
}
|
||||
},
|
||||
},
|
||||
required: ['freightPrice']
|
||||
};
|
||||
this.ui = {
|
||||
'*': {
|
||||
spanLabelFixed: 160,
|
||||
grid: { span: 24 }
|
||||
},
|
||||
$freightPrice: {
|
||||
grid: { span: 8 }
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改结束车长
|
||||
* @param event 车长
|
||||
@ -145,12 +111,8 @@ export class RebateTableComponent implements OnInit {
|
||||
}
|
||||
|
||||
save() {
|
||||
if(!this.minrebatePrice) {
|
||||
this.service.msgSrv.error('必填项为空!')
|
||||
return
|
||||
}
|
||||
console.log(this.data)
|
||||
let params= {
|
||||
minrebatePrice: this.minrebatePrice,
|
||||
rebateConfigDTOS: this.data
|
||||
}
|
||||
console.log(params);
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
* @Author : Shiming
|
||||
* @Date : 2022-01-25 20:23:54
|
||||
* @LastEditors : Shiming
|
||||
* @LastEditTime : 2022-02-11 17:20:49
|
||||
* @LastEditTime : 2022-03-21 14:11:56
|
||||
* @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\rebate-table\\rebate-table.module.ts
|
||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||
*/
|
||||
@ -18,8 +18,9 @@ import { NzPopconfirmModule } from 'ng-zorro-antd/popconfirm';
|
||||
import { NzInputModule } from 'ng-zorro-antd/input';
|
||||
import { DelonFormModule } from '@delon/form';
|
||||
import { NzButtonModule } from 'ng-zorro-antd/button';
|
||||
import { NzSelectModule } from 'ng-zorro-antd/select';
|
||||
const COMPONENTS = [RebateTableComponent];
|
||||
const MODULES = [NzTableModule, NzInputNumberModule, NzPopconfirmModule, NzInputModule, NzButtonModule, DelonFormModule];
|
||||
const MODULES = [NzTableModule, NzInputNumberModule, NzPopconfirmModule, NzInputModule, NzButtonModule, DelonFormModule,NzSelectModule];
|
||||
|
||||
@NgModule({
|
||||
declarations: COMPONENTS,
|
||||
|
||||
@ -33,4 +33,5 @@ export * from './shared.module';
|
||||
export * from './shared-delon.module';
|
||||
export * from './shared-zorro.module';
|
||||
export * from './shared-third.module';
|
||||
export * from './shared-g2.module';
|
||||
export * from './widget/st-widget.module';
|
||||
|
||||
@ -17,10 +17,10 @@ export class ShipperBaseService extends BaseService {
|
||||
$api_get_network_freight_forwarder_one = `/api/mdc/cuc/networkTransporter/get`; // 获取网络货运人
|
||||
// 根据FullKey获取系统子配置(树)
|
||||
$api_getSysConfigTreeByParentFullKey = `/api/mdc/pbc/sysConfig/getSysConfigTreeByParentFullKey`;
|
||||
envCache: any;
|
||||
constructor(public injector: Injector, public eaCacheSrv: EACacheService) {
|
||||
// 获取全部返佣配置
|
||||
$api_get_rebate_config = `/api/mdc/rebateConfig/list/listRebateConfig`;
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
this.envCache = this.eaCacheSrv.get(cacheConf.env);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -50,16 +50,16 @@ export class ShipperBaseService extends BaseService {
|
||||
if (!res) {
|
||||
return [];
|
||||
}
|
||||
const list = res.map(((item: any) => {
|
||||
const list = res.map((item: any) => {
|
||||
return {
|
||||
label: item.projectName,
|
||||
value: item.id
|
||||
}
|
||||
}))
|
||||
};
|
||||
});
|
||||
const obj = [{ value: '', label: '全部' }];
|
||||
return [...obj, ...list];
|
||||
})
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -204,4 +204,23 @@ export class ShipperBaseService extends BaseService {
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取全部返佣配置
|
||||
* @returns
|
||||
*/
|
||||
getRebateConfig() {
|
||||
const params = {};
|
||||
return this.request(this.$api_get_rebate_config, params, 'POST').pipe(
|
||||
map(res => {
|
||||
if (res) {
|
||||
return res.map((m: any) => {
|
||||
return { label: m.configName, value: m.id };
|
||||
});
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
})
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
6
src/app/shared/shared-g2.module.ts
Normal file
6
src/app/shared/shared-g2.module.ts
Normal file
@ -0,0 +1,6 @@
|
||||
import { G2BarModule } from '@delon/chart/bar';
|
||||
import { G2MiniAreaModule } from '@delon/chart/mini-area';
|
||||
import { G2PieModule } from '@delon/chart/pie';
|
||||
import { G2TimelineModule } from '@delon/chart/timeline';
|
||||
|
||||
export const SHARED_G2_MODULES = [G2BarModule, G2PieModule, G2TimelineModule, G2MiniAreaModule];
|
||||
@ -47,6 +47,7 @@ import { NzAffixModule } from 'ng-zorro-antd/affix';
|
||||
import { NzTypographyModule } from 'ng-zorro-antd/typography';
|
||||
import { NzSwitchModule } from 'ng-zorro-antd/switch';
|
||||
import { NzImageModule } from 'ng-zorro-antd/image';
|
||||
import { NzTreeSelectModule } from 'ng-zorro-antd/tree-select';
|
||||
|
||||
export const SHARED_ZORRO_MODULES = [
|
||||
NzButtonModule,
|
||||
@ -88,5 +89,6 @@ export const SHARED_ZORRO_MODULES = [
|
||||
NzAffixModule,
|
||||
NzTypographyModule,
|
||||
NzSwitchModule,
|
||||
NzImageModule
|
||||
NzImageModule,
|
||||
NzTreeSelectModule
|
||||
];
|
||||
|
||||
@ -37,4 +37,8 @@ export class DictSelectWidget extends ControlWidget implements OnInit {
|
||||
if (this.ui.change) this.ui.change(value);
|
||||
this.setValue(value);
|
||||
}
|
||||
|
||||
reset(value: any) {
|
||||
this.setValue(value);
|
||||
}
|
||||
}
|
||||
|
||||
@ -596,6 +596,15 @@
|
||||
"text": "轮播图管理",
|
||||
"link": "/partner/scroll-img/list"
|
||||
},
|
||||
{
|
||||
"text": "建议反馈管理",
|
||||
"link": "/partner/advice-feedback/list"
|
||||
},
|
||||
{
|
||||
"text": "建议反馈管理详情",
|
||||
"link": "/partner/advice-feedback/detail",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "知识库管理",
|
||||
"icon": "iconfont icon-yundan-copy",
|
||||
@ -630,6 +639,16 @@
|
||||
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "数据监管",
|
||||
"icon": "iconfont icon-hetong-copy",
|
||||
"group": true,
|
||||
"children": [{
|
||||
"text": "数据报表",
|
||||
"link": "/regulatory-data/dashboard"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}]
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
width : 18px;
|
||||
fill : currentColor;
|
||||
overflow : hidden;
|
||||
font-size: 18px !important;
|
||||
font-size : 18px !important;
|
||||
color : #ffffff;
|
||||
margin-right: 10px;
|
||||
}
|
||||
@ -48,3 +48,37 @@ input[type="number"] {
|
||||
word-break: break-all;
|
||||
word-wrap : break-word;
|
||||
}
|
||||
|
||||
.ant-select-tree .ant-select-tree-treenode-disabled {
|
||||
.ant-select-tree-checkbox {
|
||||
margin: 0;
|
||||
|
||||
.ant-select-tree-checkbox-inner {
|
||||
width : 0px;
|
||||
border-color: #ffffff !important;
|
||||
}
|
||||
}
|
||||
|
||||
.ant-select-tree-node-content-wrapper {
|
||||
color : unset;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
}
|
||||
|
||||
.area-tree-select {
|
||||
.ant-select-tree .ant-select-tree-treenode-disabled {
|
||||
.ant-select-tree-checkbox {
|
||||
margin: 0;
|
||||
|
||||
.ant-select-tree-checkbox-inner {
|
||||
width : 0px;
|
||||
border-color: #ffffff !important;
|
||||
}
|
||||
}
|
||||
|
||||
.ant-select-tree-node-content-wrapper {
|
||||
color : unset;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user