Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
iBiz企业中心
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz企业套件
iBiz企业中心
提交
f3d5b31f
提交
f3d5b31f
编写于
7月 04, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chitanda 发布系统代码
上级
7ec5cea7
变更
29
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
29 个修改的文件
包含
751 行增加
和
619 行删除
+751
-619
edit-view-engine.ts
app_CRM/src/engine/view/edit-view-engine.ts
+3
-2
account-info-base.tsx
app_CRM/src/pages/base/account-info/account-info-base.tsx
+1
-0
contact-info-base.tsx
app_CRM/src/pages/base/contact-info/contact-info-base.tsx
+1
-0
invoice-info-view-base.tsx
...ages/finance/invoice-info-view/invoice-info-view-base.tsx
+1
-0
campaign-info-base.tsx
.../src/pages/marketing/campaign-info/campaign-info-base.tsx
+1
-0
ibiz-list-info-base.tsx
...rc/pages/marketing/ibiz-list-info/ibiz-list-info-base.tsx
+1
-0
product-info-view-base.tsx
...ages/product/product-info-view/product-info-view-base.tsx
+1
-0
competitor-info-base.tsx
.../src/pages/sales/competitor-info/competitor-info-base.tsx
+1
-0
goal-info-view-base.tsx
...RM/src/pages/sales/goal-info-view/goal-info-view-base.tsx
+1
-0
lead-info-base.tsx
app_CRM/src/pages/sales/lead-info/lead-info-base.tsx
+1
-0
opportunity-info-base.tsx
...rc/pages/sales/opportunity-info/opportunity-info-base.tsx
+1
-0
quote-info-base.tsx
app_CRM/src/pages/sales/quote-info/quote-info-base.tsx
+1
-0
sales-literature-info-view-base.tsx
...-literature-info-view/sales-literature-info-view-base.tsx
+1
-0
sales-order-info-view-base.tsx
...ales/sales-order-info-view/sales-order-info-view-base.tsx
+1
-0
incident-info-view-base.tsx
...es/service/incident-info-view/incident-info-view-base.tsx
+1
-0
account-service-base.ts
app_CRM/src/service/account/account-service-base.ts
+47
-47
contact-service-base.ts
app_CRM/src/service/contact/contact-service-base.ts
+147
-147
ibiz-list-service-base.ts
app_CRM/src/service/ibiz-list/ibiz-list-service-base.ts
+64
-64
opportunity-service-base.ts
app_CRM/src/service/opportunity/opportunity-service-base.ts
+252
-252
product-service-base.ts
app_CRM/src/service/product/product-service-base.ts
+50
-50
sales-literature-service-base.ts
...service/sales-literature/sales-literature-service-base.ts
+50
-50
app-breadcrumb.less
...studio-core/components/app-breadcrumb/app-breadcrumb.less
+30
-0
app-breadcrumb.tsx
.../studio-core/components/app-breadcrumb/app-breadcrumb.tsx
+80
-0
app-header.tsx
...c/studio-core/components/layout/app-header/app-header.tsx
+1
-0
index.ts
app_CRM/src/studio-core/index.ts
+2
-0
AppNavHistoryBase.ts
.../studio-core/service/app-nav-history/AppNavHistoryBase.ts
+8
-4
EditFormControlBase.tsx
app_CRM/src/studio-core/widgets/EditFormControlBase.tsx
+1
-1
GridControllerBase.tsx
app_CRM/src/studio-core/widgets/GridControllerBase.tsx
+1
-1
central-appmenu-base.tsx
.../src/widgets/app/central-appmenu/central-appmenu-base.tsx
+1
-1
未找到文件。
app_CRM/src/engine/view/edit-view-engine.ts
浏览文件 @
f3d5b31f
...
...
@@ -252,8 +252,9 @@ export default class EditViewEngine extends ViewEngine {
if
(
this
.
view
.
$route
){
this
.
view
.
$route
.
meta
.
info
=
info
;
}
this
.
view
.
model
.
srfTitle
=
`
${
this
.
view
.
$t
(
viewdata
.
srfTitle
)}
-
${
viewdata
.
dataInfo
}
`
;
this
.
view
.
$emit
(
'viewModelChange'
,
this
.
view
.
model
.
srfTitle
);
const
title
=
this
.
view
.
model
.
srfTitle
=
`
${
this
.
view
.
$t
(
viewdata
.
srfTitle
)}
-
${
viewdata
.
dataInfo
}
`
;
this
.
view
.
$emit
(
'viewModelChange'
,
title
);
this
.
view
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
view
.
$route
,
info
:
viewdata
.
dataInfo
});
}
}
...
...
app_CRM/src/pages/base/account-info/account-info-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -431,6 +431,7 @@ export class AccountInfoBase extends TabExpViewBase {
this
.
$route
.
meta
.
info
=
this
.
model
.
dataInfo
;
}
Object
.
assign
(
this
.
model
,
{
srfTitle
:
`
${
this
.
$t
(
this
.
model
.
srfTitle
)}
-
${
this
.
model
.
dataInfo
}
`
});
this
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
$route
,
info
:
this
.
model
.
dataInfo
});
}
})
}
...
...
app_CRM/src/pages/base/contact-info/contact-info-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -431,6 +431,7 @@ export class ContactInfoBase extends TabExpViewBase {
this
.
$route
.
meta
.
info
=
this
.
model
.
dataInfo
;
}
Object
.
assign
(
this
.
model
,
{
srfTitle
:
`
${
this
.
$t
(
this
.
model
.
srfTitle
)}
-
${
this
.
model
.
dataInfo
}
`
});
this
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
$route
,
info
:
this
.
model
.
dataInfo
});
}
})
}
...
...
app_CRM/src/pages/finance/invoice-info-view/invoice-info-view-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -362,6 +362,7 @@ export class InvoiceInfoViewBase extends TabExpViewBase {
this
.
$route
.
meta
.
info
=
this
.
model
.
dataInfo
;
}
Object
.
assign
(
this
.
model
,
{
srfTitle
:
`
${
this
.
$t
(
this
.
model
.
srfTitle
)}
-
${
this
.
model
.
dataInfo
}
`
});
this
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
$route
,
info
:
this
.
model
.
dataInfo
});
}
})
}
...
...
app_CRM/src/pages/marketing/campaign-info/campaign-info-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -362,6 +362,7 @@ export class CampaignInfoBase extends TabExpViewBase {
this
.
$route
.
meta
.
info
=
this
.
model
.
dataInfo
;
}
Object
.
assign
(
this
.
model
,
{
srfTitle
:
`
${
this
.
$t
(
this
.
model
.
srfTitle
)}
-
${
this
.
model
.
dataInfo
}
`
});
this
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
$route
,
info
:
this
.
model
.
dataInfo
});
}
})
}
...
...
app_CRM/src/pages/marketing/ibiz-list-info/ibiz-list-info-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -114,6 +114,7 @@ export class IBizListInfoBase extends TabExpViewBase {
this
.
$route
.
meta
.
info
=
this
.
model
.
dataInfo
;
}
Object
.
assign
(
this
.
model
,
{
srfTitle
:
`
${
this
.
$t
(
this
.
model
.
srfTitle
)}
-
${
this
.
model
.
dataInfo
}
`
});
this
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
$route
,
info
:
this
.
model
.
dataInfo
});
}
})
}
...
...
app_CRM/src/pages/product/product-info-view/product-info-view-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -362,6 +362,7 @@ export class ProductInfoViewBase extends TabExpViewBase {
this
.
$route
.
meta
.
info
=
this
.
model
.
dataInfo
;
}
Object
.
assign
(
this
.
model
,
{
srfTitle
:
`
${
this
.
$t
(
this
.
model
.
srfTitle
)}
-
${
this
.
model
.
dataInfo
}
`
});
this
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
$route
,
info
:
this
.
model
.
dataInfo
});
}
})
}
...
...
app_CRM/src/pages/sales/competitor-info/competitor-info-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -362,6 +362,7 @@ export class CompetitorInfoBase extends TabExpViewBase {
this
.
$route
.
meta
.
info
=
this
.
model
.
dataInfo
;
}
Object
.
assign
(
this
.
model
,
{
srfTitle
:
`
${
this
.
$t
(
this
.
model
.
srfTitle
)}
-
${
this
.
model
.
dataInfo
}
`
});
this
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
$route
,
info
:
this
.
model
.
dataInfo
});
}
})
}
...
...
app_CRM/src/pages/sales/goal-info-view/goal-info-view-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -114,6 +114,7 @@ export class GoalInfoViewBase extends TabExpViewBase {
this
.
$route
.
meta
.
info
=
this
.
model
.
dataInfo
;
}
Object
.
assign
(
this
.
model
,
{
srfTitle
:
`
${
this
.
$t
(
this
.
model
.
srfTitle
)}
-
${
this
.
model
.
dataInfo
}
`
});
this
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
$route
,
info
:
this
.
model
.
dataInfo
});
}
})
}
...
...
app_CRM/src/pages/sales/lead-info/lead-info-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -431,6 +431,7 @@ export class LeadInfoBase extends TabExpViewBase {
this
.
$route
.
meta
.
info
=
this
.
model
.
dataInfo
;
}
Object
.
assign
(
this
.
model
,
{
srfTitle
:
`
${
this
.
$t
(
this
.
model
.
srfTitle
)}
-
${
this
.
model
.
dataInfo
}
`
});
this
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
$route
,
info
:
this
.
model
.
dataInfo
});
}
})
}
...
...
app_CRM/src/pages/sales/opportunity-info/opportunity-info-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -465,6 +465,7 @@ export class OpportunityInfoBase extends TabExpViewBase {
this
.
$route
.
meta
.
info
=
this
.
model
.
dataInfo
;
}
Object
.
assign
(
this
.
model
,
{
srfTitle
:
`
${
this
.
$t
(
this
.
model
.
srfTitle
)}
-
${
this
.
model
.
dataInfo
}
`
});
this
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
$route
,
info
:
this
.
model
.
dataInfo
});
}
})
}
...
...
app_CRM/src/pages/sales/quote-info/quote-info-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -362,6 +362,7 @@ export class QuoteInfoBase extends TabExpViewBase {
this
.
$route
.
meta
.
info
=
this
.
model
.
dataInfo
;
}
Object
.
assign
(
this
.
model
,
{
srfTitle
:
`
${
this
.
$t
(
this
.
model
.
srfTitle
)}
-
${
this
.
model
.
dataInfo
}
`
});
this
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
$route
,
info
:
this
.
model
.
dataInfo
});
}
})
}
...
...
app_CRM/src/pages/sales/sales-literature-info-view/sales-literature-info-view-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -362,6 +362,7 @@ export class SalesLiteratureInfoViewBase extends TabExpViewBase {
this
.
$route
.
meta
.
info
=
this
.
model
.
dataInfo
;
}
Object
.
assign
(
this
.
model
,
{
srfTitle
:
`
${
this
.
$t
(
this
.
model
.
srfTitle
)}
-
${
this
.
model
.
dataInfo
}
`
});
this
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
$route
,
info
:
this
.
model
.
dataInfo
});
}
})
}
...
...
app_CRM/src/pages/sales/sales-order-info-view/sales-order-info-view-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -362,6 +362,7 @@ export class SalesOrderInfoViewBase extends TabExpViewBase {
this
.
$route
.
meta
.
info
=
this
.
model
.
dataInfo
;
}
Object
.
assign
(
this
.
model
,
{
srfTitle
:
`
${
this
.
$t
(
this
.
model
.
srfTitle
)}
-
${
this
.
model
.
dataInfo
}
`
});
this
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
$route
,
info
:
this
.
model
.
dataInfo
});
}
})
}
...
...
app_CRM/src/pages/service/incident-info-view/incident-info-view-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -114,6 +114,7 @@ export class IncidentInfoViewBase extends TabExpViewBase {
this
.
$route
.
meta
.
info
=
this
.
model
.
dataInfo
;
}
Object
.
assign
(
this
.
model
,
{
srfTitle
:
`
${
this
.
$t
(
this
.
model
.
srfTitle
)}
-
${
this
.
model
.
dataInfo
}
`
});
this
.
$appService
.
navHistory
.
setCaption
({
route
:
this
.
$route
,
info
:
this
.
model
.
dataInfo
});
}
})
}
...
...
app_CRM/src/service/account/account-service-base.ts
浏览文件 @
f3d5b31f
此差异已折叠。
点击以展开。
app_CRM/src/service/contact/contact-service-base.ts
浏览文件 @
f3d5b31f
此差异已折叠。
点击以展开。
app_CRM/src/service/ibiz-list/ibiz-list-service-base.ts
浏览文件 @
f3d5b31f
此差异已折叠。
点击以展开。
app_CRM/src/service/opportunity/opportunity-service-base.ts
浏览文件 @
f3d5b31f
此差异已折叠。
点击以展开。
app_CRM/src/service/product/product-service-base.ts
浏览文件 @
f3d5b31f
此差异已折叠。
点击以展开。
app_CRM/src/service/sales-literature/sales-literature-service-base.ts
浏览文件 @
f3d5b31f
此差异已折叠。
点击以展开。
app_CRM/src/studio-core/components/app-breadcrumb/app-breadcrumb.less
0 → 100644
浏览文件 @
f3d5b31f
.app-breadcrumb {
margin-left: 50px;
.app-breadcrumb-item {
cursor: pointer;
.content {
color: rgba(var(--app-header-color-rgb), 0.65);
}
.separator {
padding: 0px 6px;
}
}
.app-breadcrumb-item:hover {
.content {
color: var(--app-header-font-color-active);
}
}
.app-breadcrumb-item.last {
cursor: unset;
.content {
color: var(--app-header-color);
}
}
}
\ No newline at end of file
app_CRM/src/studio-core/components/app-breadcrumb/app-breadcrumb.tsx
0 → 100644
浏览文件 @
f3d5b31f
import
{
Vue
,
Component
}
from
'vue-property-decorator'
;
import
{
AppService
}
from
'@/studio-core/service/app-service/AppService'
;
import
'./app-breadcrumb.less'
;
/**
* 面包屑导航组件
*
* @export
* @class AppBreadcrumb
* @extends {Vue}
*/
@
Component
({})
export
class
AppBreadcrumb
extends
Vue
{
/**
* 应用服务(单例)
*
* @protected
* @type {AppService}
* @memberof AppHeader
*/
protected
appService
:
AppService
=
new
AppService
();
/**
* 跳转点击
*
* @protected
* @param {*} to
* @memberof AppBreadcrumb
*/
protected
click
(
to
:
any
)
{
const
i
=
this
.
$appService
.
navHistory
.
findHistoryIndex
(
to
);
this
.
$router
.
push
({
path
:
to
.
path
,
params
:
to
.
params
,
query
:
to
.
query
});
this
.
$appService
.
navHistory
.
reset
(
i
+
1
);
}
/**
* 跳转首页
*
* @protected
* @param {*} meta
* @memberof AppBreadcrumb
*/
protected
toIndex
(
meta
:
any
):
void
{
let
path
=
''
;
if
(
meta
&&
meta
.
parameters
)
{
meta
.
parameters
.
forEach
((
item
:
any
)
=>
{
const
val
=
this
.
$route
.
params
[
item
.
parameterName
];
path
+=
`/
${
item
.
pathName
}${
val
?
`/
${
val
}
`
:
''
}
`
;
});
}
this
.
$router
.
push
(
path
);
this
.
$appService
.
navHistory
.
reset
();
location
.
reload
();
}
/**
* 绘制面包屑
*
* @returns {*}
* @memberof AppBreadcrumb
*/
public
render
():
any
{
const
items
:
any
[]
=
[];
const
indexMeta
=
this
.
appService
.
navHistory
.
indexMeta
;
if
(
indexMeta
)
{
items
.
push
(<
span
class=
"app-breadcrumb-item"
>
<
span
class=
"content"
on
-
click=
{
()
=>
this
.
toIndex
(
indexMeta
)
}
>
首页
</
span
>
</
span
>);
}
const
arr
=
this
.
appService
.
navHistory
.
historyList
;
arr
.
forEach
((
item
,
i
)
=>
{
items
.
push
(<
span
class=
{
{
'app-breadcrumb-item'
:
true
,
'last'
:
i
===
(
arr
.
length
-
1
)
}
}
>
{
(
!
indexMeta
&&
i
===
0
)
?
null
:
<
span
class=
"separator"
>
/
</
span
>
}
<
span
class=
"content"
on
-
click=
{
()
=>
this
.
click
(
item
.
to
)
}
>
{
this
.
$t
(
item
.
meta
?.
caption
)
}{
(
item
.
meta
?.
info
&&
item
.
meta
?.
info
!==
''
)
?
` - ${item.meta?.info}`
:
''
}
</
span
>
</
span
>);
});
return
<
div
class=
"app-breadcrumb"
>
{
items
}
</
div
>;
}
}
\ No newline at end of file
app_CRM/src/studio-core/components/layout/app-header/app-header.tsx
浏览文件 @
f3d5b31f
...
...
@@ -22,6 +22,7 @@ export class AppHeader extends Vue {
return
<
div
class=
"app-header"
>
<
div
class=
"app-header-left"
>
{
this
.
$slots
.
header_left
}
{
Object
.
is
(
this
.
$uiState
.
layoutState
.
styleMode
,
'STYLE2'
)
?
<
app
-
breadcrumb
></
app
-
breadcrumb
>
:
null
}
</
div
>
<
div
class=
"app-header-center"
>
{
this
.
$slots
.
header_content
}
...
...
app_CRM/src/studio-core/index.ts
浏览文件 @
f3d5b31f
...
...
@@ -64,6 +64,7 @@ import { AppContentLeftExp } from './components/layout/app-content-left-exp/app-
import
{
AppContentLeftNavMenu
}
from
'./components/layout/app-content-left-nav-menu/app-content-left-nav-menu'
;
import
{
AppContentBottomExp
}
from
'./components/layout/app-content-bottom-exp/app-content-bottom-exp'
;
import
{
AppFooter
}
from
'./components/layout/app-footer/app-footer'
;
import
{
AppBreadcrumb
}
from
'./components/app-breadcrumb/app-breadcrumb'
;
import
{
MenuIcon
}
from
'./components/menu-icon/menu-icon'
;
import
{
UserInfo
}
from
'./components/user-info/user-info'
;
import
{
StudioViewStyle2
}
from
'./components/studio-view-style2/studio-view-style2'
;
...
...
@@ -101,6 +102,7 @@ export const StudioCore = {
v
.
component
(
'app-content-left-nav-menu'
,
AppContentLeftNavMenu
);
v
.
component
(
'app-content-bottom-exp'
,
AppContentBottomExp
);
v
.
component
(
'app-footer'
,
AppFooter
);
v
.
component
(
'app-breadcrumb'
,
AppBreadcrumb
);
v
.
component
(
'menu-icon'
,
MenuIcon
);
v
.
component
(
'user-info'
,
UserInfo
);
v
.
component
(
'studio-view-style2'
,
StudioViewStyle2
);
...
...
app_CRM/src/studio-core/service/app-nav-history/AppNavHistoryBase.ts
浏览文件 @
f3d5b31f
...
...
@@ -90,13 +90,12 @@ export class AppNavHistoryBase {
/**
* 查找路由缓存
*
* @protected
* @param {*} page
* @param {any[]} [list=this.historyList]
* @returns {number}
* @memberof AppNavHistoryBase
*/
p
rotected
findHistoryIndex
(
page
:
any
,
list
:
any
[]
=
this
.
historyList
):
number
{
p
ublic
findHistoryIndex
(
page
:
any
,
list
:
any
[]
=
this
.
historyList
):
number
{
if
(
page
===
undefined
||
page
===
null
)
{
return
-
1
;
}
...
...
@@ -177,13 +176,18 @@ export class AppNavHistoryBase {
* @returns {boolean}
* @memberof AppNavHistoryBase
*/
public
setCaption
({
route
,
caption
,
info
}:
{
route
:
any
,
caption
:
string
|
null
,
info
:
string
|
null
}):
boolean
{
public
setCaption
({
route
,
caption
,
info
}:
{
route
:
any
,
caption
?:
string
,
info
?:
string
}):
boolean
{
const
i
=
this
.
findHistoryIndex
(
route
);
if
(
i
===
-
1
)
{
return
false
;
}
const
item
=
this
.
historyList
[
i
];
Object
.
assign
(
item
.
meta
,
{
caption
,
info
});
if
(
caption
)
{
item
.
meta
.
caption
=
caption
;
}
if
(
info
)
{
item
.
meta
.
info
=
info
;
}
return
true
;
}
...
...
app_CRM/src/studio-core/widgets/EditFormControlBase.tsx
浏览文件 @
f3d5b31f
...
...
@@ -170,7 +170,7 @@ export class EditFormControlBase extends FormControlBase {
Object
.
assign
(
this
.
context
,
{
[
this
.
appDeName
]:
data
[
this
.
appDeName
]
})
}
// 更新上下文,当前数据视图数据
Object
.
assign
(
this
.
context
,
{
[
`src
${
this
.
appDeName
}
`
]:
{
data
}
});
Object
.
assign
(
this
.
context
,
{
[
`src
${
this
.
appDeName
}
`
]:
{
data
}
,
[
`srfdatakey`
]:
`srf
${
this
.
appDeName
}
`
});
this
.
setFormEnableCond
(
data
);
this
.
fillForm
(
data
,
action
);
this
.
oldData
=
{};
...
...
app_CRM/src/studio-core/widgets/GridControllerBase.tsx
浏览文件 @
f3d5b31f
...
...
@@ -439,7 +439,7 @@ export class GridControllerBase extends MDControlBase {
this
.
items
.
forEach
(()
=>
{
this
.
gridItemsModel
.
push
(
this
.
getGridRowModel
())
});
this
.
$emit
(
'load'
,
this
.
items
);
// 向上下文中填充当前数据
Object
.
assign
(
this
.
context
,
{
[
`srf
${
this
.
appDeName
}
`
]:
{
items
:
this
.
items
}
});
Object
.
assign
(
this
.
context
,
{
[
`srf
${
this
.
appDeName
}
`
]:
{
items
:
this
.
items
}
,
[
`srfdatakey`
]:
`srf
${
this
.
appDeName
}
`
});
// 设置默认选中
setTimeout
(()
=>
{
if
(
this
.
isSelectFirstDefault
)
{
...
...
app_CRM/src/widgets/app/central-appmenu/central-appmenu-base.tsx
浏览文件 @
f3d5b31f
...
...
@@ -55,7 +55,7 @@ export class CentralBase extends Vue {
console
.
warn
(
'未指定应用功能'
);
}
if
(
judge
)
{
this
.
$appService
.
navHistory
.
reset
(
1
);
this
.
$appService
.
navHistory
.
reset
();
}
}
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录