Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
iBiz企业中心
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz企业套件
iBiz企业中心
提交
63978a8f
提交
63978a8f
编写于
7月 08, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
xignzi006 发布系统代码
上级
781c5f6b
变更
6
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
31 行增加
和
2 行删除
+31
-2
account_en_US.ts
app_CRM/src/locale/lanres/entities/account/account_en_US.ts
+1
-0
account_zh_CN.ts
app_CRM/src/locale/lanres/entities/account/account_zh_CN.ts
+1
-0
lead-info-base.tsx
app_CRM/src/pages/sales/lead-info/lead-info-base.tsx
+16
-0
info-data-panel-form-base.tsx
...ccount/info-data-panel-form/info-data-panel-form-base.tsx
+2
-0
info-data-panel-form.html
...ts/account/info-data-panel-form/info-data-panel-form.html
+10
-2
info-data-panel-form.less
...ts/account/info-data-panel-form/info-data-panel-form.less
+1
-0
未找到文件。
app_CRM/src/locale/lanres/entities/account/account_en_US.ts
浏览文件 @
63978a8f
...
...
@@ -407,6 +407,7 @@ export default {
info_datapanel_form
:
{
details
:
{
button1
:
"头部信息编辑"
,
grouppanel1
:
"分组面板"
,
group1
:
"客户基本信息"
,
formpage1
:
"基本信息"
,
srfupdatedate
:
"更新时间"
,
...
...
app_CRM/src/locale/lanres/entities/account/account_zh_CN.ts
浏览文件 @
63978a8f
...
...
@@ -406,6 +406,7 @@ export default {
info_datapanel_form
:
{
details
:
{
button1
:
"头部信息编辑"
,
grouppanel1
:
"分组面板"
,
group1
:
"客户基本信息"
,
formpage1
:
"基本信息"
,
srfupdatedate
:
"更新时间"
,
...
...
app_CRM/src/pages/sales/lead-info/lead-info-base.tsx
浏览文件 @
63978a8f
import
{
Subject
}
from
'rxjs'
;
import
{
TabExpViewBase
}
from
'@/studio-core'
;
import
LeadService
from
'@/service/lead/lead-service'
;
import
DataPanelEngine
from
'@engine/ctrl/data-panel-engine'
;
import
TabExpViewEngine
from
'@engine/view/tab-exp-view-engine'
;
import
LeadUIService
from
'@/uiservice/lead/lead-ui-service'
;
...
...
@@ -139,6 +140,15 @@ export class LeadInfoBase extends TabExpViewBase {
protected
viewtag
:
string
=
'35728a12ceecb647982051842853547c'
;
/**
* 视图引擎
*
* @public
* @type {Engine}
* @memberof LeadInfoBase
*/
public
datapanel
:
DataPanelEngine
=
new
DataPanelEngine
();
/**
* 视图引擎
*
...
...
@@ -155,6 +165,12 @@ export class LeadInfoBase extends TabExpViewBase {
* @memberof LeadInfoBase
*/
public
engineInit
():
void
{
this
.
datapanel
.
init
({
view
:
this
,
keyPSDEField
:
'lead'
,
majorPSDEField
:
'fullname'
,
isLoadDefault
:
true
,
});
this
.
engine
.
init
({
view
:
this
,
keyPSDEField
:
'lead'
,
...
...
app_CRM/src/widgets/account/info-data-panel-form/info-data-panel-form-base.tsx
浏览文件 @
63978a8f
...
...
@@ -121,6 +121,8 @@ export class Info_DataPanelEditFormBase extends EditFormControlBase {
public
detailsModel
:
any
=
{
button1
:
new
FormButtonModel
({
caption
:
'头部信息编辑'
,
detailType
:
'BUTTON'
,
name
:
'button1'
,
visible
:
true
,
isShowCaption
:
false
,
form
:
this
,
uiaction
:
{
type
:
'DEUIACTION'
,
tag
:
'Edit_DataPanel'
,
actiontarget
:
'SINGLEKEY'
}
}),
grouppanel1
:
new
FormGroupPanelModel
({
caption
:
'分组面板'
,
detailType
:
'GROUPPANEL'
,
name
:
'grouppanel1'
,
visible
:
true
,
isShowCaption
:
false
,
form
:
this
,
uiActionGroup
:
{
caption
:
''
,
langbase
:
'entities.account.info_datapanel_form'
,
extractMode
:
'ITEM'
,
details
:
[]
}
}),
group1
:
new
FormGroupPanelModel
({
caption
:
'客户基本信息'
,
detailType
:
'GROUPPANEL'
,
name
:
'group1'
,
visible
:
true
,
isShowCaption
:
false
,
form
:
this
,
uiActionGroup
:
{
caption
:
''
,
langbase
:
'entities.account.info_datapanel_form'
,
extractMode
:
'ITEM'
,
details
:
[]
}
}),
formpage1
:
new
FormPageModel
({
caption
:
'基本信息'
,
detailType
:
'FORMPAGE'
,
name
:
'formpage1'
,
visible
:
true
,
isShowCaption
:
true
,
form
:
this
}),
...
...
app_CRM/src/widgets/account/info-data-panel-form/info-data-panel-form.html
浏览文件 @
63978a8f
...
...
@@ -47,8 +47,11 @@
</app-form-item>
</div>
<div
v-show=
"detailsModel.button1.visible"
:style=
"{}"
>
<i-button
type=
"primary"
@
click=
"button1_click($event)"
class=
"vertical-align"
<div
v-show=
"detailsModel.grouppanel1.visible"
:style=
"{}"
>
<app-form-group
layoutType=
"FLEX"
titleStyle=
""
class=
' vertical-align'
:uiActionGroup=
"detailsModel.grouppanel1.uiActionGroup"
@
groupuiactionclick=
"groupUIActionClick($event)"
:caption=
"$t('entities.account.info_datapanel_form.details.grouppanel1')"
:isShowCaption=
"false"
uiStyle=
"DEFAULT"
:titleBarCloseMode=
"0"
:isInfoGroupMode=
"true"
>
<div
style=
"height: 100%;display: flex;"
>
<div
v-show=
"detailsModel.button1.visible"
:style=
"{}"
>
<i-button
type=
"primary"
@
click=
"button1_click($event)"
class=
"no-border"
style=
""
>
<i
class=
"fa fa-angle-down"
style=
"margin-right: 2px;"
></i>
...
...
@@ -59,6 +62,11 @@
</div>
</app-form-group>
</div>
</div>
</app-form-group>
</i-col>
...
...
app_CRM/src/widgets/account/info-data-panel-form/info-data-panel-form.less
浏览文件 @
63978a8f
...
...
@@ -6,6 +6,7 @@
color:rgba(209, 196, 233, 1);font-size:20px;font-weight:bold;margin:0px 10px 0px 0px;text-align:left
}
.datapanel-label-style {
color:rgba(245, 244, 244, 1);font-size:12px;margin:0px 0px 0px 0px
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录