提交 83a4f4a6 编写于 作者: ibizdev's avatar ibizdev

xignzi006 发布系统代码

上级 a4a87dad
......@@ -434,6 +434,10 @@ export default {
caption: "授予资格",
tip: "授予资格",
},
deuiaction9: {
caption: "取消资格",
tip: "取消资格",
},
items1: {
caption: "取消资格",
tip: "取消资格",
......
......@@ -433,6 +433,10 @@ export default {
caption: '授予资格',
tip: '授予资格',
},
deuiaction9: {
caption: '取消资格',
tip: '取消资格',
},
items1: {
caption: '取消资格',
tip: '取消资格',
......
......@@ -121,6 +121,8 @@ export default class LeadInfoBase extends TabExpViewBase {
seperator1: { name: 'seperator1', type: 'SEPERATOR', visabled: true, dataaccaction: '', uiaction: { } },
deuiaction4: { name: 'deuiaction4', caption: '授予资格','isShowCaption':true,'isShowIcon':true, tooltip: '授予资格', iconcls: 'fa fa-check', icon: '', disabled: false, type: 'DEUIACTION', visabled: true, dataaccaction: '', uiaction: { tag: 'Qualification', target: 'SINGLEKEY' }, class: '' },
deuiaction9: { name: 'deuiaction9', caption: '取消资格','isShowCaption':true,'isShowIcon':true, tooltip: '取消资格', iconcls: 'fa fa-close', icon: '', disabled: false, type: 'DEUIACTION', visabled: true, dataaccaction: '', uiaction: { tag: 'DisQualification', target: 'SINGLEKEY' }, class: '' },
items1: { name: 'items1', caption: '取消资格', disabled: false, type: 'ITEMS', visabled: true, dataaccaction: '',
model: {
deuiaction5: { name: 'deuiaction5', caption: '丢单','isShowCaption':true,'isShowIcon':true, tooltip: '丢单', iconcls: 'fa fa-close', icon: '', disabled: false, type: 'DEUIACTION', visabled: true, dataaccaction: '', uiaction: { tag: 'DisQualification', target: 'SINGLEKEY' }, class: '' },
......@@ -187,6 +189,9 @@ export default class LeadInfoBase extends TabExpViewBase {
if (Object.is($event.tag, 'deuiaction4')) {
this.toolbar_deuiaction4_click(null, '', $event2);
}
if (Object.is($event.tag, 'deuiaction9')) {
this.toolbar_deuiaction9_click(null, '', $event2);
}
if (Object.is($event.tag, 'deuiaction5')) {
this.toolbar_deuiaction5_click(null, '', $event2);
}
......@@ -340,6 +345,34 @@ export default class LeadInfoBase extends TabExpViewBase {
curUIService.Lead_Qualification(datas,contextJO, paramJO, $event, xData,this,"Lead");
}
/**
* 逻辑事件
*
* @param {*} [params={}]
* @param {*} [tag]
* @param {*} [$event]
* @memberof
*/
public toolbar_deuiaction9_click(params: any = {}, tag?: any, $event?: any) {
// 参数
// 取数
let datas: any[] = [];
let xData: any = null;
// _this 指向容器对象
const _this: any = this;
let paramJO:any = {};
let contextJO:any = {};
if (_this.getDatas && _this.getDatas instanceof Function) {
datas = [..._this.getDatas()];
}
if(params){
datas = [params];
}
// 界面行为
const curUIService:LeadUIService = new LeadUIService();
curUIService.Lead_DisQualification(datas,contextJO, paramJO, $event, xData,this,"Lead");
}
/**
* 逻辑事件
*
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册