Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
apaas-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gzga-jzapi
apaas-ui
Commits
c01248f2
Commit
c01248f2
authored
May 07, 2020
by
徐一鸣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
应用详情tab组件
parent
e6c92a99
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
760 additions
and
9 deletions
+760
-9
src/assets/css/index.css
src/assets/css/index.css
+3
-0
src/components/commodity.vue
src/components/commodity.vue
+3
-1
src/components/servive-info.vue
src/components/servive-info.vue
+672
-0
src/components/servive-step.vue
src/components/servive-step.vue
+70
-0
src/pages/example_commodity.vue
src/pages/example_commodity.vue
+12
-8
No files found.
src/assets/css/index.css
View file @
c01248f2
...
@@ -202,6 +202,9 @@ div{
...
@@ -202,6 +202,9 @@ div{
color
:
#8890a7
;
color
:
#8890a7
;
line-height
:
24px
!important
;
line-height
:
24px
!important
;
}
}
.el-tabs__nav-scroll
.el-tabs__item
{
line-height
:
40px
!important
;
}
.el-tabs__item
:hover
{
.el-tabs__item
:hover
{
color
:
#687087
;
color
:
#687087
;
...
...
src/components/commodity.vue
View file @
c01248f2
...
@@ -119,7 +119,9 @@ export default {
...
@@ -119,7 +119,9 @@ export default {
}),
}),
computed
:
{},
computed
:
{},
watch
:
{},
watch
:
{},
methods
:
{},
methods
:
{
handleChange
()
{}
},
mounted
()
{}
mounted
()
{}
};
};
</
script
>
</
script
>
...
...
src/components/servive-info.vue
0 → 100644
View file @
c01248f2
This diff is collapsed.
Click to expand it.
src/components/servive-step.vue
0 → 100644
View file @
c01248f2
<
template
>
<div
class=
"service_step"
>
<div
class=
"step_bg"
></div>
<ul
class=
"step_items"
>
<li
class=
"step_item"
>
<div
class=
"step_icon"
>
<span>
1
</span>
</div>
<p
class=
"step_title"
>
服务申请
</p>
</li>
<li
class=
"step_item"
>
<div
class=
"step_icon"
>
<span>
2
</span>
</div>
<p
class=
"step_title"
>
审核确认
</p>
</li>
<li
class=
"step_item"
>
<div
class=
"step_icon"
>
<span>
3
</span>
</div>
<p
class=
"step_title"
>
费用支付
</p>
</li>
<li
class=
"step_item"
>
<div
class=
"step_icon"
>
<span>
4
</span>
</div>
<p
class=
"step_title"
>
服务获取
</p>
</li>
</ul>
</div>
</
template
>
<
style
scoped
>
.service_step
{
position
:
relative
;
min-height
:
48px
;
}
.service_step
>
.step_bg
{
position
:
absolute
;
top
:
23px
;
right
:
24px
;
left
:
24px
;
border
:
1px
solid
#1abc9c
;
}
.service_step
>
.step_items
{
position
:
relative
;
z-index
:
2
;
display
:
flex
;
justify-content
:
space-between
;
align-items
:
flex-start
;
text-align
:
center
;
}
.service_step
.step_item
>
.step_icon
{
width
:
48px
;
height
:
48px
;
border-radius
:
50%
;
background-color
:
#1abc9c
;
display
:
inline-flex
;
justify-content
:
center
;
align-items
:
center
;
font-size
:
28px
;
font-weight
:
bold
;
color
:
#fff
;
}
.service_step
.step_item
>
.step_title
{
font-size
:
12px
;
line-height
:
24px
;
color
:
#1abc9c
;
}
</
style
>
src/pages/example_commodity.vue
View file @
c01248f2
...
@@ -2,7 +2,10 @@
...
@@ -2,7 +2,10 @@
<div
class=
"com_ex"
>
<div
class=
"com_ex"
>
<block-radius>
<block-radius>
<h3>
按原型大致做了一下,调优等后续
</h3>
<h3>
按原型大致做了一下,调优等后续
</h3>
<Commodity
:datas=
"datas"
/>
<Commodity
:datas=
"datas"
/>
<servive-info></servive-info>
</block-radius>
</block-radius>
</div>
</div>
</
template
>
</
template
>
...
@@ -11,10 +14,12 @@
...
@@ -11,10 +14,12 @@
// @ is an alias to /src
// @ is an alias to /src
import
Commodity
from
"
@/components/commodity.vue
"
;
import
Commodity
from
"
@/components/commodity.vue
"
;
import
BlockRadius
from
"
@/components/block-radius
"
;
import
BlockRadius
from
"
@/components/block-radius
"
;
import
serviveInfo
from
"
@/components/servive-info
"
;
export
default
{
export
default
{
components
:
{
components
:
{
Commodity
,
Commodity
,
BlockRadius
BlockRadius
,
serviveInfo
,
},
},
data
:
()
=>
({
data
:
()
=>
({
datas
:
{
datas
:
{
...
@@ -24,22 +29,21 @@ export default {
...
@@ -24,22 +29,21 @@ export default {
updated
:
"
2020-03-12 18:31:12
"
,
updated
:
"
2020-03-12 18:31:12
"
,
dataField
:
"
经济建设
"
,
dataField
:
"
经济建设
"
,
serviceType
:
"
综合应用服务
"
,
serviceType
:
"
综合应用服务
"
,
resourceSummary
:
resourceSummary
:
"
提供视频监控的空间分布展示和视频监控直播的服务提供视频监控的空间分布展示和视频监控直播的服务
"
,
"
提供视频监控的空间分布展示和视频监控直播的服务提供视频监控的空间分布展示和视频监控直播的服务
"
,
openLevel
:
"
共享
"
,
openLevel
:
"
共享
"
,
views
:
"
99999
"
,
views
:
"
99999
"
,
numberOfAcquisitions
:
"
99999
"
,
numberOfAcquisitions
:
"
99999
"
,
specifications
:
specifications
:
"
用户服务申请通过审核确认后,每日可对应急资源地图进行20次免费访问用户服务申请通过审核确认后,每日可对应急资源地图进行20次免费访问
"
,
"
用户服务申请通过审核确认后,每日可对应急资源地图进行20次免费访问用户服务申请通过审核确认后,每日可对应急资源地图进行20次免费访问
"
},
}
}),
}),
mounted
()
{},
mounted
()
{},
methods
:
{}
methods
:
{}
,
};
};
</
script
>
</
script
>
<
style
scoped
>
<
style
scoped
>
.com_ex
{
.com_ex
{
margin-top
:
100px
;
margin-top
:
100px
;
padding
:
20px
;
padding
:
20px
;
}
}
</
style
>
</
style
>
\ No newline at end of file
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