Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-operate-sys-cscec
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fulixin
dsk-operate-sys-cscec
Commits
c58002ce
Commit
c58002ce
authored
Feb 07, 2024
by
danfuman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
工程项目信息
parent
26ead00c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
102 additions
and
2 deletions
+102
-2
index.vue
.../projectCostLedger/detail/components/DirectCost/index.vue
+2
-0
index.vue
...ojectCostLedger/detail/components/OtherProjects/index.vue
+92
-0
index.vue
dsk-operate-ui/src/views/projectCostLedger/detail/index.vue
+8
-2
No files found.
dsk-operate-ui/src/views/projectCostLedger/detail/components/DirectCost/index.vue
View file @
c58002ce
<
template
>
<div
class=
"detail-container"
>
直接费成本
<div
class=
"left"
></div>
<div
class=
"right"
></div>
</div>
</
template
>
<
script
>
...
...
dsk-operate-ui/src/views/projectCostLedger/detail/components/OtherProjects/index.vue
0 → 100644
View file @
c58002ce
<
template
>
<div
class=
"detail-container"
>
其他项目11122
<div
class=
"left"
>
<el-menu
default-active=
"2"
class=
"el-menu-vertical-demo"
@
open=
"handleOpen"
@
close=
"handleClose"
>
<el-submenu
index=
"1"
>
<template
slot=
"title"
>
<i
class=
"el-icon-location"
></i>
<span>
宝安中学(集团)初中部改扩建工程施工总承包-加固修缮工程
</span>
</
template
>
<el-menu-item-group>
<
template
slot=
"title"
>
分组一
</
template
>
<el-menu-item
index=
"1-1"
>
选项1
</el-menu-item>
<el-menu-item
index=
"1-2"
>
选项2
</el-menu-item>
</el-menu-item-group>
<el-menu-item-group
title=
"分组2"
>
<el-menu-item
index=
"1-3"
>
选项3
</el-menu-item>
</el-menu-item-group>
<el-submenu
index=
"1-4"
>
<
template
slot=
"title"
>
选项4
</
template
>
<el-menu-item
index=
"1-4-1"
>
选项1
</el-menu-item>
</el-submenu>
</el-submenu>
</el-menu>
</div>
<div
class=
"right"
>
</div>
</div>
</template>
<
script
>
import
InfoTable
from
'../../../../component/infoTable'
;
export
default
{
name
:
"directCost"
,
components
:
{
InfoTable
},
data
()
{
return
{
data
:[
{
label
:
'一级 1'
,
children
:
[{
label
:
'二级 1-1'
,
children
:
[{
label
:
'三级 1-1-1'
}]
}]
}
],
defaultProps
:
{
children
:
'children'
,
label
:
'label'
}
};
},
//可访问data属性
created
()
{
},
//计算集
computed
:
{
},
//方法集
methods
:
{
handleNodeClick
(
data
)
{
console
.
log
(
data
);
},
handleOpen
(
key
,
keyPath
)
{
console
.
log
(
key
,
keyPath
);
},
handleClose
(
key
,
keyPath
)
{
console
.
log
(
key
,
keyPath
);
}
},
}
</
script
>
<
style
lang=
"scss"
scoped
>
.detail-container
{
width
:
100%
;
box-sizing
:
border-box
;
padding
:
0
24px
;
background
:
#ffffff
;
.left
{
width
:
220px
;
border-right
:
1px
solid
#EEEEEE
;
}
}
</
style
>
dsk-operate-ui/src/views/projectCostLedger/detail/index.vue
View file @
c58002ce
...
...
@@ -17,6 +17,9 @@
<!-- 工料汇总 -->
<feed-summary
v-if=
"current == 'feedSummary'"
></feed-summary>
<!-- 其他项目 -->
<other-projects
v-if=
"current == 'otherItems'"
></other-projects>
</div>
</div>
</div>
...
...
@@ -30,6 +33,8 @@ import EngineeringInformation from "@/views/projectCostLedger/detail/components/
import
DirectCost
from
"@/views/projectCostLedger/detail/components/DirectCost"
;
// 工料汇总
import
FeedSummary
from
"@/views/projectCostLedger/detail/components/FeedSummary"
;
// 其他项目
import
OtherProjects
from
"@/views/projectCostLedger/detail/components/OtherProjects"
;
import
{
v4
}
from
"uuid"
;
export
default
{
name
:
"projectCostLedgerDetail"
,
...
...
@@ -38,12 +43,13 @@ export default {
DskTabToggle
,
FeedSummary
,
EngineeringInformation
,
DirectCost
DirectCost
,
OtherProjects
},
data
()
{
return
{
projectID
:
""
,
current
:
""
,
current
:
"
otherItems
"
,
module
:
"detail"
,
// 详情信息变量
detailInfo
:
{},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment