Merge branch 'feature/partner' of https://gitlab.eascs.com/tms-ui/tms-obc-web into feature/partner

This commit is contained in:
潘晓云
2022-03-22 17:28:19 +08:00
3 changed files with 12 additions and 10 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-02-24 20:09:49 * @Date : 2022-02-24 20:09:49
* @LastEditors : Shiming * @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 * @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\rebate-management\\components\\rebate-setting\\rebate-setting.component.html
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
--> -->
@ -39,7 +39,7 @@
</div> </div>
<st <st
#st #st
[data]="data" [data]="service.$api_get_rebateConfig"
[columns]="columns" [columns]="columns"
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }" [req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
[res]="{ reName: { list: 'data.records', total: 'data.total' } }" [res]="{ reName: { list: 'data.records', total: 'data.total' } }"

View File

@ -72,7 +72,7 @@ export class ParterRebateManageMentSettingComponent implements OnInit {
title: '时间月份', title: '时间月份',
format: 'month', format: 'month',
}, },
phone: { partnerId: {
type: 'string', type: 'string',
title: '合伙人名称' title: '合伙人名称'
}, },
@ -94,31 +94,31 @@ export class ParterRebateManageMentSettingComponent implements OnInit {
}, },
{ {
title: '配置类型', title: '配置类型',
index: 'name1' index: 'configType'
}, },
{ {
title: '备注', title: '备注',
index: 'name1' index: 'remark'
}, },
{ {
title: '关联合伙人范围', title: '关联合伙人范围',
index: 'name1' index: 'partnerType'
}, },
{ {
title: '创建时间', title: '创建时间',
index: 'name1' index: 'enableTime'
}, },
{ {
title: '启用时间', title: '启用时间',
index: 'name1' index: 'enableTime'
}, },
{ {
title: '优先级', title: '优先级',
index: 'name44' index: 'priority'
}, },
{ {
title: '状态', title: '状态',
index: 'name44' index: 'stateLocked'
}, },
{ {
title: '操作', title: '操作',

View File

@ -17,6 +17,8 @@ import { BaseService } from '@shared';
export class RebateManagementService extends BaseService { export class RebateManagementService extends BaseService {
// 查询规则抽查列表 // 查询规则抽查列表
public $api_get_listCompliancePage = '/api/sdc/billRiskOperate/listRiskPage'; public $api_get_listCompliancePage = '/api/sdc/billRiskOperate/listRiskPage';
// 查询返佣配置表
public $api_get_rebateConfig = '/api/mdc/rebateConfig/list/page';
constructor(public injector: Injector) { constructor(public injector: Injector) {
super(injector); super(injector);
} }