This commit is contained in:
wangshiming
2022-04-26 10:59:33 +08:00
parent 5b1d5d7ea8
commit a8a1d9ed65
4 changed files with 32 additions and 18 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming
* @Date : 2022-03-21 09:26:45
* @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
* Copyright (C) 2022 huzhenhong. All rights reserved.
*/
@ -67,6 +67,7 @@ export class ParterRebateManageMentAddComponent implements OnInit {
{
text: '移除',
click: _record => this.delete(_record),
iif: ()=> this.hiden,
acl: { ability: ['AbnormalAppear-reply'] }
}
]
@ -78,7 +79,9 @@ export class ParterRebateManageMentAddComponent implements OnInit {
ruleDescription: {
type: 'string',
title: '',
disabled: this.hiden,
ui: {
widget: 'tinymce',
loadingTip: 'loading...',
config: {
@ -176,7 +179,8 @@ export class ParterRebateManageMentAddComponent implements OnInit {
this.partnerType = res?.partnerType + '';
this.partnerPeopleList = res?.partnerListVOs;
this.priority = res?.priority + '';
this.formData = res?.ruleDescription;
this.formData = {ruleDescription: res?.ruleDescription};
this.remarke = res.remark;
}
})
}