提交 1650d316 编写于 作者: ibizdev's avatar ibizdev

xignzi006 发布系统代码

上级 93a0530f
...@@ -4807,6 +4807,33 @@ ...@@ -4807,6 +4807,33 @@
} }
] ]
}, },
{
"srfkey": "PickDataType_AC",
"emptytext": "未定义",
"codelisttype":"static",
"items": [
{
"id": "ACCOUNT",
"label": "客户",
"text": "客户",
"data":"",
"codename":"Account",
"value": "ACCOUNT",
"disabled": false
}
, {
"id": "CONTACT",
"label": "联系人",
"text": "联系人",
"data":"",
"codename":"Contact",
"value": "CONTACT",
"disabled": false
}
]
},
{ {
"srfkey": "Activitypointer__PriorityCode", "srfkey": "Activitypointer__PriorityCode",
"emptytext": "未定义", "emptytext": "未定义",
......
...@@ -597,6 +597,11 @@ export default { ...@@ -597,6 +597,11 @@ export default {
"1": "无控制", "1": "无控制",
"empty": "" "empty": ""
}, },
PickDataType_AC: {
"ACCOUNT": "客户",
"CONTACT": "联系人",
"empty": ""
},
Activitypointer__PriorityCode: { Activitypointer__PriorityCode: {
"0": "低", "0": "低",
"1": "正常", "1": "正常",
......
...@@ -597,6 +597,11 @@ export default { ...@@ -597,6 +597,11 @@ export default {
"1": "无控制", "1": "无控制",
"empty": "", "empty": "",
}, },
PickDataType_AC: {
"ACCOUNT": "客户",
"CONTACT": "联系人",
"empty": "",
},
Activitypointer__PriorityCode: { Activitypointer__PriorityCode: {
"0": "低", "0": "低",
"1": "正常", "1": "正常",
......
...@@ -4815,6 +4815,33 @@ mock.onGet('./assets/json/data-dictionary.json').reply((config: any) => { ...@@ -4815,6 +4815,33 @@ mock.onGet('./assets/json/data-dictionary.json').reply((config: any) => {
}, },
] ]
}, },
{
srfkey: "PickDataType_AC",
emptytext: "未定义",
"codelisttype":"static",
items: [
{
id: "ACCOUNT",
label: "客户",
text: "客户",
"data":"",
"codename":"Account",
value: "ACCOUNT",
disabled: false,
},
{
id: "CONTACT",
label: "联系人",
text: "联系人",
"data":"",
"codename":"Contact",
value: "CONTACT",
disabled: false,
},
]
},
{ {
srfkey: "Activitypointer__PriorityCode", srfkey: "Activitypointer__PriorityCode",
emptytext: "未定义", emptytext: "未定义",
......
<studio-view-style2 viewName="multipickdataacgrid" viewTitle="客户、联系人" class='depickupgridview multi-pick-data-acgrid'> <studio-view-style2 viewName="multipickdataacgrid" viewTitle="客户、联系人" class='depickupgridview multi-pick-data-acgrid'>
<template slot="quickGroupSearch">
<app-quick-group :items="quickGroupModel" @valuechange="quickGroupValueChange($event)"></app-quick-group>
</template>
<template slot="searchForm"> <template slot="searchForm">
<view_searchform <view_searchform
:viewState="viewState" :viewState="viewState"
......
...@@ -289,14 +289,29 @@ export default class LeadUIServiceBase extends UIService { ...@@ -289,14 +289,29 @@ export default class LeadUIServiceBase extends UIService {
} }
const parameters: any[] = [ const parameters: any[] = [
{ pathName: 'leads', parameterName: 'lead' }, { pathName: 'leads', parameterName: 'lead' },
{ pathName: 'edit_datapanelview', parameterName: 'edit_datapanelview' },
]; ];
const openIndexViewTab = (data: any) => { const openPopOver = (view: any, data: any) => {
const routePath = actionContext.$viewTool.buildUpRoutePath(actionContext.$route, context, deResParameters, parameters, _args, data); let container: Subject<any> = actionContext.$apppopover.openPop($event, view, context,data);
actionContext.$router.push(routePath); container.subscribe((result: any) => {
return null; if (!result || !Object.is(result.ret, 'OK')) {
return;
} }
openIndexViewTab(data); const _this: any = actionContext;
if(window.opener){
window.opener.postMessage({status:'OK',identification:'WF'},Environment.uniteAddress);
window.close();
}
return result.datas;
});
}
const view: any = {
viewname: 'lead-edit-data-panel-view',
height: 300,
width: 300,
title: actionContext.$t('entities.lead.views.edit_datapanelview.title'),
placement: 'POPOVER',
};
openPopOver(view, data);
} }
/** /**
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册