Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
b9add9ed
提交
b9add9ed
编写于
12月 16, 2022
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tony001 发布系统代码 [后台服务,演示应用]
上级
54b64788
变更
14
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
14 个修改的文件
包含
215 行增加
和
109 行删除
+215
-109
major-state-data-dataview-base.vue
...or-state-data-dataview/major-state-data-dataview-base.vue
+10
-2
quicksearchform-searchform-base.vue
...searchform-searchform/quicksearchform-searchform-base.vue
+4
-4
usr-dataview-base.vue
...b/src/widgets/ibizbook/usr-dataview/usr-dataview-base.vue
+25
-5
usr2-dataview-base.vue
...src/widgets/ibizbook/usr2-dataview/usr2-dataview-base.vue
+62
-24
usr2-dataview-model.ts
...src/widgets/ibizbook/usr2-dataview/usr2-dataview-model.ts
+1
-12
usr3-dataview-base.vue
...src/widgets/ibizbook/usr3-dataview/usr3-dataview-base.vue
+10
-2
usr4-dataview-base.vue
...src/widgets/ibizbook/usr4-dataview/usr4-dataview-base.vue
+25
-5
usr5-dataview-base.vue
...src/widgets/ibizbook/usr5-dataview/usr5-dataview-base.vue
+15
-3
index-type-dataview-base.vue
...hardware/index-type-dataview/index-type-dataview-base.vue
+5
-1
main-grid-base.vue
...src/widgets/ibizorder-detail/main-grid/main-grid-base.vue
+6
-6
card-navigation-dataview-base.vue
...ard-navigation-dataview/card-navigation-dataview-base.vue
+40
-8
main-grid-base.vue
app_Web/src/widgets/ibizorder/main-grid/main-grid-base.vue
+7
-21
main-grid-model.ts
app_Web/src/widgets/ibizorder/main-grid/main-grid-model.ts
+0
-15
index-type-dataview-base.vue
...iproduct/index-type-dataview/index-type-dataview-base.vue
+5
-1
未找到文件。
app_Web/src/widgets/ibizbook/major-state-data-dataview/major-state-data-dataview-base.vue
浏览文件 @
b9add9ed
...
...
@@ -532,8 +532,16 @@ export default class MajorStateDataBase extends Vue implements ControlInterface
* @memberof MajorStateDataBase
*/
public
sortModel
:
any
[]
=
[
'ibizbookname'
,
'type'
,
{
codeName
:
'ibizbookname'
,
logicName
:
'图书名称'
,
logicNameLenRes
:
'DEF.LNAME.IBIZBOOKNAME'
},
{
codeName
:
'type'
,
logicName
:
'图书类型'
,
logicNameLenRes
:
'DEF.LNAME.TYPE'
},
]
/**
...
...
app_Web/src/widgets/ibizbook/quicksearchform-searchform/quicksearchform-searchform-base.vue
浏览文件 @
b9add9ed
<
template
>
<i-form
:model=
"this.data"
class=
'app-search-form'
ref=
'searchform'
style=
""
>
<i-form
:model=
"this.data"
class=
'app-search-form'
ref=
'
quick
searchform'
style=
""
>
<input
style=
"display:none;"
/>
<row>
<i-col
span=
"20"
class=
"form-content"
>
...
...
@@ -516,7 +516,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
* @memberof QUICKSEARCHFORMBase
*/
public
formValidateStatus
():
boolean
{
const
form
:
any
=
this
.
$refs
.
searchform
;
const
form
:
any
=
this
.
$refs
.
quick
searchform
;
let
validatestate
:
boolean
=
true
;
form
.
validate
((
valid
:
boolean
)
=>
{
validatestate
=
valid
?
true
:
false
;
...
...
@@ -670,7 +670,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public
load
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loadAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
UsrListView_plugin
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
CalendarView
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
};
...
...
@@ -706,7 +706,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public
async
loadDraft
(
opt
:
any
=
{},
mode
?:
string
):
Promise
<
any
>
{
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
UsrListView_plugin
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
CalendarView
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
}
;
...
...
app_Web/src/widgets/ibizbook/usr-dataview/usr-dataview-base.vue
浏览文件 @
b9add9ed
...
...
@@ -768,11 +768,31 @@ export default class UsrBase extends Vue implements ControlInterface {
* @memberof UsrBase
*/
public
sortModel
:
any
[]
=
[
'icon'
,
'type'
,
'ibizbookname'
,
'subtext'
,
'author'
,
{
codeName
:
'icon'
,
logicName
:
'图标'
,
logicNameLenRes
:
'DEF.LNAME.ICON'
},
{
codeName
:
'type'
,
logicName
:
'图书类型'
,
logicNameLenRes
:
'DEF.LNAME.TYPE'
},
{
codeName
:
'ibizbookname'
,
logicName
:
'图书名称'
,
logicNameLenRes
:
'DEF.LNAME.IBIZBOOKNAME'
},
{
codeName
:
'subtext'
,
logicName
:
'图书描述'
,
logicNameLenRes
:
'DEF.LNAME.SUBTEXT'
},
{
codeName
:
'author'
,
logicName
:
'图书作者'
,
logicNameLenRes
:
'DEF.LNAME.AUTHOR'
},
]
/**
...
...
app_Web/src/widgets/ibizbook/usr2-dataview/usr2-dataview-base.vue
浏览文件 @
b9add9ed
此差异已折叠。
点击以展开。
app_Web/src/widgets/ibizbook/usr2-dataview/usr2-dataview-model.ts
浏览文件 @
b9add9ed
...
...
@@ -11,7 +11,7 @@ export default class Usr2Model {
* 获取数据项集合
*
* @returns {any[]}
* @memberof Usr2Data
V
iewMode
* @memberof Usr2Data
viewexpbar_datav
iewMode
*/
public
getDataItems
():
any
[]
{
return
[
...
...
@@ -40,17 +40,6 @@ export default class Usr2Model {
dataType
:
'FONTKEY'
,
},
{
name
:
'n_ibizbookname_like'
,
prop
:
'n_ibizbookname_like'
,
dataType
:
'QUERYPARAM'
},
{
name
:
'n_price_gtandeq'
,
prop
:
'n_price_gtandeq'
,
dataType
:
'QUERYPARAM'
},
{
name
:
'size'
,
...
...
app_Web/src/widgets/ibizbook/usr3-dataview/usr3-dataview-base.vue
浏览文件 @
b9add9ed
...
...
@@ -595,8 +595,16 @@ export default class Usr3Base extends Vue implements ControlInterface {
* @memberof Usr3Base
*/
public
sortModel
:
any
[]
=
[
'type'
,
'ibizbookname'
,
{
codeName
:
'type'
,
logicName
:
'图书类型'
,
logicNameLenRes
:
'DEF.LNAME.TYPE'
},
{
codeName
:
'ibizbookname'
,
logicName
:
'图书名称'
,
logicNameLenRes
:
'DEF.LNAME.IBIZBOOKNAME'
},
]
/**
...
...
app_Web/src/widgets/ibizbook/usr4-dataview/usr4-dataview-base.vue
浏览文件 @
b9add9ed
...
...
@@ -469,11 +469,31 @@ export default class Usr4Base extends Vue implements ControlInterface {
* @memberof Usr4Base
*/
public
sortModel
:
any
[]
=
[
'author'
,
'booknumber'
,
'type'
,
'press'
,
'ibizbookname'
,
{
codeName
:
'author'
,
logicName
:
'图书作者'
,
logicNameLenRes
:
'DEF.LNAME.AUTHOR'
},
{
codeName
:
'booknumber'
,
logicName
:
'图书数量'
,
logicNameLenRes
:
'DEF.LNAME.BOOKNUMBER'
},
{
codeName
:
'type'
,
logicName
:
'图书类型'
,
logicNameLenRes
:
'DEF.LNAME.TYPE'
},
{
codeName
:
'press'
,
logicName
:
'图书出版社'
,
logicNameLenRes
:
'DEF.LNAME.PRESS'
},
{
codeName
:
'ibizbookname'
,
logicName
:
'图书名称'
,
logicNameLenRes
:
'DEF.LNAME.IBIZBOOKNAME'
},
]
/**
...
...
app_Web/src/widgets/ibizbook/usr5-dataview/usr5-dataview-base.vue
浏览文件 @
b9add9ed
...
...
@@ -570,9 +570,21 @@ export default class Usr5Base extends Vue implements ControlInterface {
* @memberof Usr5Base
*/
public
sortModel
:
any
[]
=
[
'icon'
,
'ibizbookname'
,
'subtext'
,
{
codeName
:
'icon'
,
logicName
:
'图标'
,
logicNameLenRes
:
'DEF.LNAME.ICON'
},
{
codeName
:
'ibizbookname'
,
logicName
:
'图书名称'
,
logicNameLenRes
:
'DEF.LNAME.IBIZBOOKNAME'
},
{
codeName
:
'subtext'
,
logicName
:
'图书描述'
,
logicNameLenRes
:
'DEF.LNAME.SUBTEXT'
},
]
/**
...
...
app_Web/src/widgets/ibizhardware/index-type-dataview/index-type-dataview-base.vue
浏览文件 @
b9add9ed
...
...
@@ -460,7 +460,11 @@ export default class IndexTypeBase extends Vue implements ControlInterface {
* @memberof IndexTypeBase
*/
public
sortModel
:
any
[]
=
[
'ibizhardwarename'
{
codeName
:
'ibizhardwarename'
,
logicName
:
'名称'
,
logicNameLenRes
:
'DEF.LNAME.IBIZHARDWARE.IBIZHARDWARENAME'
}
]
/**
...
...
app_Web/src/widgets/ibizorder-detail/main-grid/main-grid-base.vue
浏览文件 @
b9add9ed
...
...
@@ -933,7 +933,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
fetchAction
)
{
this
.
$Notice
.
error
({
title
:
this
.
$t
(
"app.commonWords.wrong"
)
as
string
,
desc
:
"IBIZOrderDetail
GridView9
"
+
(
this
.
$t
(
"app.gridpage.notConfig.fetchAction"
)
as
string
),
desc
:
"IBIZOrderDetail
SGridView
"
+
(
this
.
$t
(
"app.gridpage.notConfig.fetchAction"
)
as
string
),
});
return
;
}
...
...
@@ -1073,7 +1073,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
removeAction
)
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
GridView9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
desc
:
'IBIZOrderDetail
SGridView
'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
});
return
;
}
...
...
@@ -1187,7 +1187,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public
addBatch
(
arg
:
any
=
{}):
void
{
if
(
!
this
.
fetchAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
GridView9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.fetchAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
SGridView
'
+
(
this
.
$t
(
'app.gridpage.notConfig.fetchAction'
)
as
string
)
});
return
;
}
if
(
!
arg
){
...
...
@@ -2082,7 +2082,7 @@ export default class MainBase extends Vue implements ControlInterface {
try
{
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
))
{
if
(
!
this
.
createAction
)
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
GridView9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.createAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
SGridView
'
+
(
this
.
$t
(
'app.gridpage.notConfig.createAction'
)
as
string
)
});
}
else
{
Object
.
assign
(
item
,
{
viewparams
:
this
.
viewparams
});
const
tempContext
=
Util
.
deepCopy
(
this
.
context
);
...
...
@@ -2091,7 +2091,7 @@ export default class MainBase extends Vue implements ControlInterface {
}
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
if
(
!
this
.
updateAction
)
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
GridView9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.updateAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
SGridView
'
+
(
this
.
$t
(
'app.gridpage.notConfig.updateAction'
)
as
string
)
});
}
else
{
Object
.
assign
(
item
,
{
viewparams
:
this
.
viewparams
});
const
tempContext
=
Util
.
deepCopy
(
this
.
context
);
...
...
@@ -2167,7 +2167,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
GridView9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.loaddraftAction'
)
as
string
)
desc
:
'IBIZOrderDetail
SGridView
'
+
(
this
.
$t
(
'app.gridpage.notConfig.loaddraftAction'
)
as
string
)
});
return
;
}
...
...
app_Web/src/widgets/ibizorder/card-navigation-dataview/card-navigation-dataview-base.vue
浏览文件 @
b9add9ed
...
...
@@ -504,14 +504,46 @@ export default class CardNavigationBase extends Vue implements ControlInterface
* @memberof CardNavigationBase
*/
public
sortModel
:
any
[]
=
[
'memo'
,
'detailnum'
,
'ibizordername'
,
'ibizcustomerid'
,
'amount'
,
'ibizcustomername'
,
'wfstep'
,
'orderstate'
,
{
codeName
:
'memo'
,
logicName
:
'备注'
,
logicNameLenRes
:
'DEF.LNAME.MEMO'
},
{
codeName
:
'detailnum'
,
logicName
:
'明细数'
,
logicNameLenRes
:
'DEF.LNAME.DETAILNUM'
},
{
codeName
:
'ibizordername'
,
logicName
:
'订单名称'
,
logicNameLenRes
:
'DEF.LNAME.IBIZORDERNAME'
},
{
codeName
:
'ibizcustomerid'
,
logicName
:
'客户标识'
,
logicNameLenRes
:
'DEF.LNAME.IBIZCUSTOMERID'
},
{
codeName
:
'amount'
,
logicName
:
'总计'
,
logicNameLenRes
:
'DEF.LNAME.IBIZORDER.AMOUNT'
},
{
codeName
:
'ibizcustomername'
,
logicName
:
'客户名称'
,
logicNameLenRes
:
'DEF.LNAME.IBIZORDER.IBIZCUSTOMERNAME'
},
{
codeName
:
'wfstep'
,
logicName
:
'工作流步骤'
,
logicNameLenRes
:
'DEF.LNAME.IBIZORDER.WFSTEP'
},
{
codeName
:
'orderstate'
,
logicName
:
'订单状态'
,
logicNameLenRes
:
'DEF.LNAME.ORDERSTATE'
},
]
/**
...
...
app_Web/src/widgets/ibizorder/main-grid/main-grid-base.vue
浏览文件 @
b9add9ed
...
...
@@ -288,7 +288,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @memberof IBIZOrder
SF1
GridViewBase
* @memberof IBIZOrder
Pickup
GridViewBase
*/
public
Edit
(
args
:
any
[],
contextJO
?:
any
,
params
?:
any
,
$event
?:
any
,
xData
?:
any
,
actionContext
?:
any
,
srfParentDeName
?:
string
)
{
if
(
args
.
length
===
0
)
{
...
...
@@ -431,20 +431,6 @@ export default class MainBase extends Vue implements ControlInterface {
return
this
.
selections
[
0
];
}
/**
* 打开新建数据视图
*
* @type {any}
* @memberof MainBase
*/
@
Prop
()
public
newdata
:
any
;
/**
* 打开编辑数据视图
*
* @type {any}
* @memberof MainBase
*/
@
Prop
()
public
opendata
:
any
;
/**
* 是否嵌入关系界面
...
...
@@ -979,7 +965,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
fetchAction
)
{
this
.
$Notice
.
error
({
title
:
this
.
$t
(
"app.commonWords.wrong"
)
as
string
,
desc
:
"IBIZOrder
SF1
GridView"
+
(
this
.
$t
(
"app.gridpage.notConfig.fetchAction"
)
as
string
),
desc
:
"IBIZOrder
Pickup
GridView"
+
(
this
.
$t
(
"app.gridpage.notConfig.fetchAction"
)
as
string
),
});
return
;
}
...
...
@@ -1119,7 +1105,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
removeAction
)
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
SF1
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
desc
:
'IBIZOrder
Pickup
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
});
return
;
}
...
...
@@ -1233,7 +1219,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public
addBatch
(
arg
:
any
=
{}):
void
{
if
(
!
this
.
fetchAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
SF1
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.fetchAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
Pickup
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.fetchAction'
)
as
string
)
});
return
;
}
if
(
!
arg
){
...
...
@@ -2166,7 +2152,7 @@ export default class MainBase extends Vue implements ControlInterface {
try
{
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
))
{
if
(
!
this
.
createAction
)
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
SF1
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.createAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
Pickup
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.createAction'
)
as
string
)
});
}
else
{
Object
.
assign
(
item
,
{
viewparams
:
this
.
viewparams
});
const
tempContext
=
Util
.
deepCopy
(
this
.
context
);
...
...
@@ -2175,7 +2161,7 @@ export default class MainBase extends Vue implements ControlInterface {
}
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
if
(
!
this
.
updateAction
)
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
SF1
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.updateAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
Pickup
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.updateAction'
)
as
string
)
});
}
else
{
Object
.
assign
(
item
,
{
viewparams
:
this
.
viewparams
});
const
tempContext
=
Util
.
deepCopy
(
this
.
context
);
...
...
@@ -2251,7 +2237,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
SF1
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.loaddraftAction'
)
as
string
)
desc
:
'IBIZOrder
Pickup
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.loaddraftAction'
)
as
string
)
});
return
;
}
...
...
app_Web/src/widgets/ibizorder/main-grid/main-grid-model.ts
浏览文件 @
b9add9ed
...
...
@@ -105,21 +105,6 @@ export default class MainModel {
prop
:
'n_ibizordername_like'
,
dataType
:
'QUERYPARAM'
},
{
name
:
'n_orderstate_eq'
,
prop
:
'n_orderstate_eq'
,
dataType
:
'QUERYPARAM'
},
{
name
:
'n_ordertime_gt'
,
prop
:
'n_ordertime_gt'
,
dataType
:
'QUERYPARAM'
},
{
name
:
'n_ordertime_lt'
,
prop
:
'n_ordertime_lt'
,
dataType
:
'QUERYPARAM'
},
{
name
:
'size'
,
...
...
app_Web/src/widgets/ibizuniproduct/index-type-dataview/index-type-dataview-base.vue
浏览文件 @
b9add9ed
...
...
@@ -460,7 +460,11 @@ export default class IndexTypeBase extends Vue implements ControlInterface {
* @memberof IndexTypeBase
*/
public
sortModel
:
any
[]
=
[
'ibizuniproductname'
{
codeName
:
'ibizuniproductname'
,
logicName
:
'产品名称'
,
logicNameLenRes
:
'DEF.LNAME.IBIZUNIPRODUCT.IBIZUNIPRODUCTNAME'
}
]
/**
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录