Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
X
XiTianSenMall
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
leiqingsong
XiTianSenMall
Commits
af6986b2
Commit
af6986b2
authored
4 years ago
by
wangmeng
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev_wm' into 'master'
进步奖 See merge request
!163
parents
62dfa728
4c795e1b
master
dev_lqs
No related merge requests found
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
grade.vue
H5/src/views/grade.vue
+2
-3
fastest-progress.vue
H5/src/views/rewards/fastest-progress.vue
+7
-1
No files found.
H5/src/views/grade.vue
View file @
af6986b2
...
...
@@ -68,7 +68,6 @@ export default {
nextLevel
:
""
,
perenct
:
0
,
diffrentMap
:
{},
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
,
type
:
[
"amount"
,
"recommend"
,
"team"
],
list
:
[
{
...
...
@@ -100,7 +99,7 @@ export default {
]
};
},
moun
ted
()
{
crea
ted
()
{
this
.
getstatus
();
},
methods
:
{
...
...
@@ -115,7 +114,7 @@ export default {
this
.
$router
.
push
({
name
:
urlName
});
},
getstatus
()
{
const
userId
=
this
.
userId
;
const
userId
=
JSON
.
parse
(
localStorage
.
getItem
(
"user"
))
.
userId
;
const
_this
=
this
;
getForestStatus
(
userId
)
.
then
(
res
=>
{
...
...
This diff is collapsed.
Click to expand it.
H5/src/views/rewards/fastest-progress.vue
View file @
af6986b2
...
...
@@ -82,7 +82,13 @@ export default {
getProgressPrizes
().
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
_this
.
growthTotal
=
res
.
data
.
growthTotal
;
_this
.
prizeVos
=
res
.
data
.
prizeVos
;
_this
.
prizeVos
=
res
.
data
.
prizeVos
.
map
(
item
=>
{
const
temp
=
item
;
temp
.
userId
=
item
.
userId
.
substring
(
0
,
3
)
+
"****"
+
item
.
userId
.
substring
(
7
);
return
temp
;
});
// _this.prizeVos = res.data.prizeVos;
}
else
{
_this
.
growthTotal
=
0
;
_this
.
prizeVos
=
[];
...
...
This diff is collapsed.
Click to expand it.
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