Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
7e0c445f
提交
7e0c445f
编写于
12月 02, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tony001 发布系统代码 [后台服务,演示应用]
上级
98632077
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
35 行增加
和
35 行删除
+35
-35
ibizorder-detail_en_US.ts
...anres/entities/ibizorder-detail/ibizorder-detail_en_US.ts
+1
-1
ibizorder-detail_zh_CN.ts
...anres/entities/ibizorder-detail/ibizorder-detail_zh_CN.ts
+1
-1
main-grid-base.vue
...src/widgets/ibizorder-detail/main-grid/main-grid-base.vue
+28
-28
main-grid-model.ts
...src/widgets/ibizorder-detail/main-grid/main-grid-model.ts
+5
-5
未找到文件。
app_Web/src/locale/lanres/entities/ibizorder-detail/ibizorder-detail_en_US.ts
浏览文件 @
7e0c445f
...
...
@@ -199,13 +199,13 @@ export default {
},
main_grid
:
{
columns
:
{
ibizorderdetailname
:
"订单明细名称"
,
ibizordername
:
"订单名称"
,
ibizuniproductname
:
"产品名称"
,
quantity
:
"数量"
,
unitprice
:
"单价"
,
amount
:
"小计"
,
unit
:
"单位"
,
updatedate
:
"更新时间"
,
},
nodata
:
""
,
uiactions
:
{
...
...
app_Web/src/locale/lanres/entities/ibizorder-detail/ibizorder-detail_zh_CN.ts
浏览文件 @
7e0c445f
...
...
@@ -198,13 +198,13 @@ export default {
},
main_grid
:
{
columns
:
{
ibizorderdetailname
:
"订单明细名称"
,
ibizordername
:
"订单名称"
,
ibizuniproductname
:
"产品名称"
,
quantity
:
"数量"
,
unitprice
:
"单价"
,
amount
:
"小计"
,
unit
:
"单位"
,
updatedate
:
"更新时间"
,
},
nodata
:
""
,
uiactions
:
{
...
...
app_Web/src/widgets/ibizorder-detail/main-grid/main-grid-base.vue
浏览文件 @
7e0c445f
...
...
@@ -21,6 +21,18 @@
<
template
v-if=
"!isSingleSelect"
>
<el-table-column
align=
"center"
type=
'selection'
:width=
"checkboxColWidth"
></el-table-column>
</
template
>
<
template
v-if=
"getColumnState('ibizorderdetailname')"
>
<el-table-column
show-overflow-tooltip
:prop=
"'ibizorderdetailname'"
:label=
"$t('entities.ibizorderdetail.main_grid.columns.ibizorderdetailname')"
:width=
"150"
:align=
"'left'"
:sortable=
"'custom'"
>
<template
v-slot:header=
"
{column}">
<span
class=
"column-header "
>
{{
$t
(
'entities.ibizorderdetail.main_grid.columns.ibizorderdetailname'
)
}}
</span>
</
template
>
<
template
v-slot=
"{row,column,$index}"
>
<span>
{{
row
.
ibizorderdetailname
}}
</span>
</
template
>
</el-table-column>
</template>
<
template
v-if=
"getColumnState('ibizordername')"
>
<el-table-column
show-overflow-tooltip
:prop=
"'ibizordername'"
:label=
"$t('entities.ibizorderdetail.main_grid.columns.ibizordername')"
:width=
"150"
:align=
"'left'"
:sortable=
"'custom'"
>
<template
v-slot:header=
"
{column}">
...
...
@@ -82,7 +94,7 @@
</el-table-column>
</template>
<
template
v-if=
"getColumnState('unit')"
>
<el-table-column
show-overflow-tooltip
:prop=
"'unit'"
:label=
"$t('entities.ibizorderdetail.main_grid.columns.unit')"
:
width=
"150
"
:align=
"'left'"
:sortable=
"'custom'"
>
<el-table-column
show-overflow-tooltip
:prop=
"'unit'"
:label=
"$t('entities.ibizorderdetail.main_grid.columns.unit')"
:
min-width=
"1
"
:align=
"'left'"
:sortable=
"'custom'"
>
<template
v-slot:header=
"
{column}">
<span
class=
"column-header "
>
{{
$t
(
'entities.ibizorderdetail.main_grid.columns.unit'
)
}}
...
...
@@ -93,18 +105,6 @@
</
template
>
</el-table-column>
</template>
<
template
v-if=
"getColumnState('updatedate')"
>
<el-table-column
show-overflow-tooltip
:prop=
"'updatedate'"
:label=
"$t('entities.ibizorderdetail.main_grid.columns.updatedate')"
:width=
"150"
:align=
"'left'"
:sortable=
"'custom'"
>
<template
v-slot:header=
"
{column}">
<span
class=
"column-header "
>
{{
$t
(
'entities.ibizorderdetail.main_grid.columns.updatedate'
)
}}
</span>
</
template
>
<
template
v-slot=
"{row,column,$index}"
>
<app-format-data
format=
"YYYY-MM-DD HH:mm:ss"
:data=
"row.updatedate"
></app-format-data>
</
template
>
</el-table-column>
</template>
<
template
v-if=
"adaptiveState"
>
<el-table-column></el-table-column>
</
template
>
...
...
@@ -303,7 +303,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @type {string}
* @memberof MainBase
*/
public
majorInfoColName
:
string
=
""
;
public
majorInfoColName
:
string
=
"
ibizorderdetailname
"
;
/**
* 界面UI服务对象
...
...
@@ -662,6 +662,15 @@ export default class MainBase extends Vue implements ControlInterface {
* @memberof MainBase
*/
public
allColumns
:
any
[]
=
[
{
name
:
'ibizorderdetailname'
,
label
:
'订单明细名称'
,
langtag
:
'entities.ibizorderdetail.main_grid.columns.ibizorderdetailname'
,
show
:
true
,
unit
:
'PX'
,
isEnableRowEdit
:
false
,
enableCond
:
3
,
},
{
name
:
'ibizordername'
,
label
:
'订单名称'
,
...
...
@@ -712,16 +721,7 @@ export default class MainBase extends Vue implements ControlInterface {
label
:
'单位'
,
langtag
:
'entities.ibizorderdetail.main_grid.columns.unit'
,
show
:
true
,
unit
:
'px'
,
isEnableRowEdit
:
false
,
enableCond
:
3
,
},
{
name
:
'updatedate'
,
label
:
'更新时间'
,
langtag
:
'entities.ibizorderdetail.main_grid.columns.updatedate'
,
show
:
true
,
unit
:
'PX'
,
unit
:
'STAR'
,
isEnableRowEdit
:
false
,
enableCond
:
3
,
},
...
...
@@ -1411,7 +1411,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @memberof MainBase
*/
public
arraySpanMethod
({
row
,
column
,
rowIndex
,
columnIndex
}
:
any
)
{
let
allColumns
:
Array
<
any
>
=
[
'
IBIZordername'
,
'IBIZuniproductname'
,
'quantity'
,
'unitprice'
,
'amount'
,
'unit'
,
'updatedate
'
];
let
allColumns
:
Array
<
any
>
=
[
'
ibizorderdetailname'
,
'IBIZordername'
,
'IBIZuniproductname'
,
'quantity'
,
'unitprice'
,
'amount'
,
'unit
'
];
if
(
row
&&
row
.
children
)
{
if
(
columnIndex
==
(
this
.
isSingleSelect
?
0
:
1
))
{
return
[
1
,
allColumns
.
length
+
1
];
...
...
@@ -1491,13 +1491,13 @@ export default class MainBase extends Vue implements ControlInterface {
const
tree
:
any
=
{
groupById
:
Number
((
i
+
1
)
*
100
),
group
:
group
.
label
,
ibizorderdetailname
:
''
,
IBIZordername
:
''
,
IBIZuniproductname
:
''
,
quantity
:
''
,
unitprice
:
''
,
amount
:
''
,
unit
:
''
,
updatedate
:
''
,
children
:
children
}
groupTree
.
push
(
tree
);
...
...
@@ -1525,13 +1525,13 @@ export default class MainBase extends Vue implements ControlInterface {
const
Tree
:
any
=
{
groupById
:
Number
((
allGroup
.
length
+
1
)
*
100
),
group
:
this
.
$t
(
'app.gridpage.other'
),
ibizorderdetailname
:
''
,
IBIZordername
:
''
,
IBIZuniproductname
:
''
,
quantity
:
''
,
unitprice
:
''
,
amount
:
''
,
unit
:
''
,
updatedate
:
''
,
children
:
child
}
if
(
child
&&
child
.
length
>
0
){
...
...
@@ -1592,13 +1592,13 @@ export default class MainBase extends Vue implements ControlInterface {
const
tree
:
any
=
{
groupById
:
Number
((
groupIndex
+
1
)
*
100
),
group
:
group
,
ibizorderdetailname
:
''
,
IBIZordername
:
''
,
IBIZuniproductname
:
''
,
quantity
:
''
,
unitprice
:
''
,
amount
:
''
,
unit
:
''
,
updatedate
:
''
,
children
:
children
,
}
groupTree
.
push
(
tree
);
...
...
app_Web/src/widgets/ibizorder-detail/main-grid/main-grid-model.ts
浏览文件 @
7e0c445f
...
...
@@ -26,6 +26,11 @@ export default class MainModel {
]
}
else
{
return
[
{
name
:
'ibizorderdetailname'
,
prop
:
'ibizorderdetailname'
,
dataType
:
'TEXT'
,
},
{
name
:
'ibizuniproductid'
,
prop
:
'ibizuniproductid'
,
...
...
@@ -82,11 +87,6 @@ export default class MainModel {
prop
:
'quantity'
,
dataType
:
'INT'
,
},
{
name
:
'updatedate'
,
prop
:
'updatedate'
,
dataType
:
'DATETIME'
,
},
{
name
:
'ibizorderdetailid'
,
prop
:
'ibizorderdetailid'
,
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录