Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
member
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
member
member
Commits
c2293ed2
Commit
c2293ed2
authored
Mar 11, 2022
by
chenyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: update
parent
fb253492
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
55 additions
and
17 deletions
+55
-17
achievement.vue
src/components/achievement/achievement.vue
+43
-0
achievement_interaction.vue
src/components/achievement/achievement_interaction.vue
+2
-6
achievement_sale.vue
src/components/achievement/achievement_sale.vue
+2
-3
index.dev.js
src/router/dist/index.dev.js
+4
-4
index.js
src/router/index.js
+4
-4
No files found.
src/components/achievement/achievement.vue
0 → 100644
View file @
c2293ed2
<
template
>
<div>
<el-tabs
v-model=
"activeName"
>
<el-tab-pane
label=
"消费类"
name=
"1"
></el-tab-pane>
<el-tab-pane
label=
"互动类"
name=
"2"
></el-tab-pane>
</el-tabs>
<sale
v-if=
"activeName==='1'"
/>
<interaction
v-else
/>
</div>
</
template
>
<
script
>
import
sale
from
'./achievement_sale.vue'
;
import
interaction
from
'./achievement_interaction.vue'
;
export
default
{
components
:
{
sale
,
interaction
},
data
()
{
return
{
activeName
:
'1'
};
},
}
</
script
>
<
style
lang=
"less"
scoped
>
/
deep
/
.el-tabs
{
.el-tabs__header
{
margin
:
0
;
.el-tabs__nav-wrap
{
padding-left
:
20px
;
}
}
.el-tabs__item
{
height
:
46px
;
line-height
:
46px
;
}
.el-tabs__nav-wrap
::after
{
height
:
1px
!important
;
}
}
</
style
>
\ No newline at end of file
src/components/achievement/achievement_interaction.vue
View file @
c2293ed2
...
...
@@ -531,16 +531,12 @@ export default {
.achievement
{
display
:
block
;
background-color
:
#F7F8FA
;
padding
:
20px
;
&-item
{
padding
:
15px
9px
;
background-color
:
#fff
;
border-radius
:
6px
&+
.
achievement-item
{
margin-top
16px
}
margin-bottom
30px
;
&:last-child
{
margin-bottom
:
0
;
}
...
...
src/components/achievement/achievement_sale.vue
View file @
c2293ed2
...
...
@@ -539,11 +539,10 @@ export default {
}
.achievement
{
padding
:
20px
20px
;
padding
:
20px
;
&-item
{
//
padding
:
15px
9px
;
margin-bottom
:
16px
;
margin-bottom
:
30px
;
background-color
:
#fff
;
&:last-child
{
...
...
src/router/dist/index.dev.js
View file @
c2293ed2
...
...
@@ -152,15 +152,15 @@ var constantRouterMap = [{
}
},
{
path
:
'/achievement'
,
component
:
(
0
,
_import2
[
"default"
])(
'achievement'
,
'achievement
_sale
'
),
component
:
(
0
,
_import2
[
"default"
])(
'achievement'
,
'achievement'
),
meta
:
{
title
:
'会员成就
-消费类
'
title
:
'会员成就'
}
},
{
path
:
'/achievement_interaction'
,
component
:
(
0
,
_import2
[
"default"
])(
'achievement'
,
'achievement
_interaction
'
),
component
:
(
0
,
_import2
[
"default"
])(
'achievement'
,
'achievement'
),
meta
:
{
title
:
'会员成就
-互动类
'
title
:
'会员成就'
}
},
{
// 微信会员回收站数据页面
...
...
src/router/index.js
View file @
c2293ed2
...
...
@@ -141,16 +141,16 @@ export const constantRouterMap = [
},
{
path
:
'/achievement'
,
component
:
_import
(
'achievement'
,
'achievement
_sale
'
),
component
:
_import
(
'achievement'
,
'achievement'
),
meta
:
{
title
:
'会员成就
-消费类
'
,
title
:
'会员成就'
,
},
},
{
path
:
'/achievement_interaction'
,
component
:
_import
(
'achievement'
,
'achievement
_interaction
'
),
component
:
_import
(
'achievement'
,
'achievement'
),
meta
:
{
title
:
'会员成就
-互动类
'
,
title
:
'会员成就'
,
},
},
{
...
...
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