fix bug
This commit is contained in:
@ -33,16 +33,25 @@ export class ParterChannelSalesEditComponent implements OnInit {
|
|||||||
if(!this.sts) {
|
if(!this.sts) {
|
||||||
this.service.request(this.service.$api_getChannelSalesInfo, {id:this.i?.id}).subscribe(res => {
|
this.service.request(this.service.$api_getChannelSalesInfo, {id:this.i?.id}).subscribe(res => {
|
||||||
if(res){
|
if(res){
|
||||||
this.record = res;
|
let value1 = Object.assign({}, res)
|
||||||
|
delete value1.employeeVO;
|
||||||
// this.sf.getProperty('/employeeVO')!.schema.enum = res;
|
this.record = value1;
|
||||||
// this.sf.getProperty('/employeeVO')!.widget.reset(res);
|
console.log(value1);
|
||||||
// this.sf.setValue('/employeeVO', this.enterpriseProjectIds);
|
console.log(this.record);
|
||||||
this.initSF();
|
|
||||||
|
let value = res.employeeVO;
|
||||||
|
let yeeVO = {label: value.empName+"/"+value.empNo, value: value.empNo}
|
||||||
|
console.log(yeeVO);
|
||||||
|
|
||||||
|
setTimeout(()=>{
|
||||||
|
this.sf.getProperty('/employeeVO')!.schema.enum = [yeeVO];
|
||||||
|
this.sf.getProperty('/employeeVO')!.widget.reset([yeeVO]);
|
||||||
|
})
|
||||||
|
|
||||||
|
this.initSF();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
this.initSF();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
initSF() {
|
initSF() {
|
||||||
|
|||||||
@ -122,6 +122,7 @@ export class ParterChannelSalesListComponent implements OnInit {
|
|||||||
title: '操作',
|
title: '操作',
|
||||||
className: 'text-center',
|
className: 'text-center',
|
||||||
width: '120px',
|
width: '120px',
|
||||||
|
fixed: 'right',
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
text: '编辑',
|
text: '编辑',
|
||||||
|
|||||||
@ -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-04-25 19:58:03
|
* @LastEditTime : 2022-04-26 10:53:50
|
||||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\rebate-management\\components\\rebate-setting\\add\\add.component.html
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\rebate-management\\components\\rebate-setting\\add\\add.component.html
|
||||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||||
-->
|
-->
|
||||||
@ -12,16 +12,16 @@
|
|||||||
<nz-card>
|
<nz-card>
|
||||||
<!-- 数据列表 -->
|
<!-- 数据列表 -->
|
||||||
<sv-container col="1">
|
<sv-container col="1">
|
||||||
<sv label="配置名称"> <input style="max-width: 400px;" nz-input placeholder="请输入" [(ngModel)]="configName" /></sv>
|
<sv label="配置名称"> <input style="max-width: 400px;" nz-input placeholder="请输入" [disabled]="hiden" [(ngModel)]="configName" /></sv>
|
||||||
|
|
||||||
<sv-title>固定结算费率配置</sv-title>
|
<sv-title>固定结算费率配置</sv-title>
|
||||||
|
|
||||||
<sv label="固定结算费率"> <nz-input-number [(ngModel)]="accountingRate" [nzPrecision]="precision" nzPlaceHolder="请输入"></nz-input-number> %</sv>
|
<sv label="固定结算费率"> <nz-input-number [disabled]="hiden" [(ngModel)]="accountingRate" [nzPrecision]="precision" nzPlaceHolder="请输入"></nz-input-number> %</sv>
|
||||||
|
|
||||||
<sv-title>业务量和管理费比例配置</sv-title>
|
<sv-title>业务量和管理费比例配置</sv-title>
|
||||||
|
|
||||||
<sv label="选择配置类型">
|
<sv label="选择配置类型">
|
||||||
<nz-radio-group [(ngModel)]="configType">
|
<nz-radio-group [(ngModel)]="configType" [disabled]="hiden" >
|
||||||
<label nz-radio nzValue="1">按全部等级配置</label>
|
<label nz-radio nzValue="1">按全部等级配置</label>
|
||||||
<label nz-radio nzValue="2">按不同等级配置</label>
|
<label nz-radio nzValue="2">按不同等级配置</label>
|
||||||
</nz-radio-group>
|
</nz-radio-group>
|
||||||
@ -36,7 +36,7 @@
|
|||||||
<sv-title>关联合伙人配置</sv-title>
|
<sv-title>关联合伙人配置</sv-title>
|
||||||
|
|
||||||
<sv label="合伙人选择">
|
<sv label="合伙人选择">
|
||||||
<nz-select [(ngModel)]="partnerType" (ngModelChange)="changePartner(partnerType)" style="max-width: 400px; min-width: 200px;">
|
<nz-select [(ngModel)]="partnerType" [disabled]="hiden" (ngModelChange)="changePartner(partnerType)" style="max-width: 400px; min-width: 200px;">
|
||||||
<nz-option nzValue="1" nzLabel="全部合伙人"></nz-option>
|
<nz-option nzValue="1" nzLabel="全部合伙人"></nz-option>
|
||||||
<nz-option nzValue="2" nzLabel="新注册合伙人"></nz-option>
|
<nz-option nzValue="2" nzLabel="新注册合伙人"></nz-option>
|
||||||
<nz-option nzValue="3" nzLabel="自定义合伙人"></nz-option>
|
<nz-option nzValue="3" nzLabel="自定义合伙人"></nz-option>
|
||||||
@ -51,7 +51,7 @@
|
|||||||
</sv>
|
</sv>
|
||||||
|
|
||||||
<sv label="优先级" col="1">
|
<sv label="优先级" col="1">
|
||||||
<nz-select [(ngModel)]="priority" style="max-width: 400px; min-width: 200px;margin-left: 28px;">
|
<nz-select [(ngModel)]="priority" [disabled]="hiden" style="max-width: 400px; min-width: 200px;margin-left: 28px;">
|
||||||
<nz-option nzValue=1 nzLabel="1">1</nz-option>
|
<nz-option nzValue=1 nzLabel="1">1</nz-option>
|
||||||
<nz-option nzValue=2 nzLabel="2">2</nz-option>
|
<nz-option nzValue=2 nzLabel="2">2</nz-option>
|
||||||
<nz-option nzValue=3 nzLabel="3">3</nz-option>
|
<nz-option nzValue=3 nzLabel="3">3</nz-option>
|
||||||
@ -60,13 +60,13 @@
|
|||||||
</nz-select>
|
</nz-select>
|
||||||
</sv>
|
</sv>
|
||||||
|
|
||||||
<sv label="规则说明" col="1">
|
<sv label="规则说明" col="1" >
|
||||||
<sf #sf mode="edit" [formData]="formData" [schema]="schema1" [ui]="{ '*': { spanLabelFixed: 10, grid: { span: 12 }} }"
|
<sf #sf mode="edit" [disabled]="hiden" [formData]="formData" [schema]="schema1" [ui]="{ '*': { spanLabelFixed: 10, grid: { span: 12 }} }"
|
||||||
button="none"> </sf>
|
button="none"> </sf>
|
||||||
</sv>
|
</sv>
|
||||||
|
|
||||||
<sv label="备注" col="1" style="margin-top: 16px;">
|
<sv label="备注" col="1" style="margin-top: 16px;">
|
||||||
<textarea style="max-width: 400px; min-width: 200px;margin-left: 40px;" rows="4" nz-input [(ngModel)]="remarke"></textarea>
|
<textarea [disabled]="hiden" style="max-width: 400px; min-width: 200px;margin-left: 40px;" rows="4" nz-input [(ngModel)]="remarke"></textarea>
|
||||||
</sv>
|
</sv>
|
||||||
|
|
||||||
</sv-container>
|
</sv-container>
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
* @Author : Shiming
|
* @Author : Shiming
|
||||||
* @Date : 2022-03-21 09:26:45
|
* @Date : 2022-03-21 09:26:45
|
||||||
* @LastEditors : Shiming
|
* @LastEditors : Shiming
|
||||||
* @LastEditTime : 2022-04-25 19:56:41
|
* @LastEditTime : 2022-04-26 10:58:58
|
||||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\rebate-management\\components\\rebate-setting\\add\\add.component.ts
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\rebate-management\\components\\rebate-setting\\add\\add.component.ts
|
||||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||||
*/
|
*/
|
||||||
@ -67,6 +67,7 @@ export class ParterRebateManageMentAddComponent implements OnInit {
|
|||||||
{
|
{
|
||||||
text: '移除',
|
text: '移除',
|
||||||
click: _record => this.delete(_record),
|
click: _record => this.delete(_record),
|
||||||
|
iif: ()=> this.hiden,
|
||||||
acl: { ability: ['AbnormalAppear-reply'] }
|
acl: { ability: ['AbnormalAppear-reply'] }
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@ -78,7 +79,9 @@ export class ParterRebateManageMentAddComponent implements OnInit {
|
|||||||
ruleDescription: {
|
ruleDescription: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
title: '',
|
title: '',
|
||||||
|
disabled: this.hiden,
|
||||||
ui: {
|
ui: {
|
||||||
|
|
||||||
widget: 'tinymce',
|
widget: 'tinymce',
|
||||||
loadingTip: 'loading...',
|
loadingTip: 'loading...',
|
||||||
config: {
|
config: {
|
||||||
@ -176,7 +179,8 @@ export class ParterRebateManageMentAddComponent implements OnInit {
|
|||||||
this.partnerType = res?.partnerType + '';
|
this.partnerType = res?.partnerType + '';
|
||||||
this.partnerPeopleList = res?.partnerListVOs;
|
this.partnerPeopleList = res?.partnerListVOs;
|
||||||
this.priority = res?.priority + '';
|
this.priority = res?.priority + '';
|
||||||
this.formData = res?.ruleDescription;
|
this.formData = {ruleDescription: res?.ruleDescription};
|
||||||
|
this.remarke = res.remark;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user