Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-4
Overview
Overview
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
office
haoban-4
Commits
65ec8e52
Commit
65ec8e52
authored
Sep 09, 2020
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 应用详情
parent
a2484a2c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
app-detail.vue
src/views/app-controls/app-detail.vue
+8
-3
No files found.
src/views/app-controls/app-detail.vue
View file @
65ec8e52
...
...
@@ -7,13 +7,13 @@
<img
v-if=
"!!appData.applicationLogo"
:src=
"appData.applicationLogo"
alt=
""
>
</div>
<div>
<p
class=
"app-name"
>
{{
appData
.
applicationName
}}
</p>
<p
class=
"app-name"
>
{{
appData
.
applicationName
||
'--'
}}
</p>
<p
class=
"app-desc"
>
{{
appData
.
applicationDesc
}}
</p>
</div>
</div>
<el-form-item
label=
"版本"
style=
"margin-bottom: 10px"
>
{{
appData
.
applicationVersion
}}
</el-form-item>
<el-form-item
label=
"版本"
style=
"margin-bottom: 10px"
>
{{
appData
.
applicationVersion
||
'--'
}}
</el-form-item>
<el-form-item
label=
"到期时间"
>
{{
appData
.
overTime
}}
{{
(
appData
.
overTime
|
timeStampToYmd
)
||
'--'
}}
<el-tag
type=
"danger"
style=
"margin: 0 20px 0 10px"
>
已到期
</el-tag>
<el-button
type=
"text"
>
去续费
<i
class=
"iconfont iconjiantouxiangyou"
></i></el-button>
</el-form-item>
...
...
@@ -22,10 +22,12 @@
<h4
class=
"sub-title"
>
管理成员
</h4>
<div
class=
"admin-list"
>
<el-tag
type=
"info"
v-for=
"el in adminRange"
:key=
"el.roleId"
>
{{
el
.
roleName
}}
</el-tag>
<span
class=
"no-admin"
>
暂无成员
</span>
</div>
<h4
class=
"sub-title"
>
门店成员
</h4>
<div
class=
"admin-list"
>
<el-tag
type=
"info"
v-for=
"el in storeAdminRange"
:key=
"el.roleId"
>
{{
el
.
roleName
}}
</el-tag>
<span
class=
"no-admin"
>
暂无成员
</span>
</div>
</el-form-item>
</el-form>
...
...
@@ -133,6 +135,9 @@ export default {
width
:
100%
;
min-height
:
150px
;
border
:
1px
solid
#E6E7EB
;
.no-admin
{
color
:
@
gray03
;
}
}
}
</
style
>
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