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
ae7b24b2
Commit
ae7b24b2
authored
4 years ago
by
leiqingsong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
4f70d18a
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
40 additions
and
16 deletions
+40
-16
BaseNavBar.vue
H5/src/components/BaseNavBar.vue
+2
-1
aboutUs.vue
H5/src/views/aboutUs.vue
+1
-1
airDropPool.vue
H5/src/views/airDropPool.vue
+10
-2
canCashOut.vue
H5/src/views/canCashOut.vue
+1
-1
customer-service.vue
H5/src/views/customer-service.vue
+1
-1
grade.vue
H5/src/views/grade.vue
+11
-3
instructions.vue
H5/src/views/instructions.vue
+1
-1
invite.vue
H5/src/views/invite.vue
+1
-0
leagueNums.vue
H5/src/views/leagueNums.vue
+1
-1
invitee.vue
H5/src/views/my/components/invitee.vue
+1
-2
myStatus.vue
H5/src/views/my/myStatus.vue
+0
-1
register.vue
H5/src/views/register.vue
+1
-1
month-award.vue
H5/src/views/rewards/month-award.vue
+9
-1
No files found.
H5/src/components/BaseNavBar.vue
View file @
ae7b24b2
...
@@ -33,7 +33,8 @@ export default {
...
@@ -33,7 +33,8 @@ export default {
"AirDrop"
,
"AirDrop"
,
"Invite"
,
"Invite"
,
"AboutUs"
,
"AboutUs"
,
"customerService"
"customerService"
,
"Wallet"
];
];
if
(
whiteList
.
indexOf
(
currentPage
)
>
-
1
)
{
if
(
whiteList
.
indexOf
(
currentPage
)
>
-
1
)
{
try
{
try
{
...
...
This diff is collapsed.
Click to expand it.
H5/src/views/aboutUs.vue
View file @
ae7b24b2
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
<
script
>
<
script
>
export
default
{
export
default
{
name
:
"
instruction
s"
name
:
"
AboutU
s"
};
};
</
script
>
</
script
>
...
...
This diff is collapsed.
Click to expand it.
H5/src/views/airDropPool.vue
View file @
ae7b24b2
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
name=
"arrow-left"
name=
"arrow-left"
size=
"20"
size=
"20"
class=
"nav-left"
class=
"nav-left"
@
click=
"
$router.go(-1)
"
@
click=
"
handlerBack
"
/>
/>
<span
class=
"nav-title"
>
空投池
</span>
<span
class=
"nav-title"
>
空投池
</span>
</div>
</div>
...
@@ -40,7 +40,7 @@
...
@@ -40,7 +40,7 @@
<
script
>
<
script
>
import
{
queryAerialDelivery
}
from
"@/api/airDropPool"
;
import
{
queryAerialDelivery
}
from
"@/api/airDropPool"
;
export
default
{
export
default
{
name
:
"
leagueNums
"
,
name
:
"
AirDrop
"
,
data
()
{
data
()
{
return
{
return
{
total
:
0
,
total
:
0
,
...
@@ -52,6 +52,14 @@ export default {
...
@@ -52,6 +52,14 @@ export default {
this
.
queryData
();
this
.
queryData
();
},
},
methods
:
{
methods
:
{
handlerBack
()
{
try
{
this
.
$bridgeToAppFun
.
navigateBack
();
}
catch
{
console
.
log
(
"不能和App交互"
);
this
.
$router
.
go
(
-
1
);
}
},
queryData
()
{
queryData
()
{
const
_this
=
this
;
const
_this
=
this
;
queryAerialDelivery
().
then
(
res
=>
{
queryAerialDelivery
().
then
(
res
=>
{
...
...
This diff is collapsed.
Click to expand it.
H5/src/views/canCashOut.vue
View file @
ae7b24b2
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
import
{
getWithdrawalAmount
}
from
"@/api/wallet"
;
import
{
getWithdrawalAmount
}
from
"@/api/wallet"
;
export
default
{
export
default
{
name
:
"
leagueNums
"
,
name
:
"
CanCashOut
"
,
data
()
{
data
()
{
return
{
return
{
preNum
:
"125"
,
preNum
:
"125"
,
...
...
This diff is collapsed.
Click to expand it.
H5/src/views/customer-service.vue
View file @
ae7b24b2
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
import
{
getCustomer
}
from
"@/api/customer"
;
import
{
getCustomer
}
from
"@/api/customer"
;
export
default
{
export
default
{
name
:
"
c
ustomerService"
,
name
:
"
C
ustomerService"
,
data
()
{
data
()
{
return
{
return
{
imageUrl
:
""
imageUrl
:
""
...
...
This diff is collapsed.
Click to expand it.
H5/src/views/grade.vue
View file @
ae7b24b2
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
name=
"arrow-left"
name=
"arrow-left"
size=
"20"
size=
"20"
class=
"nav-left"
class=
"nav-left"
@
click=
"
$router.go(-1)
"
@
click=
"
handlerBack
"
/>
/>
<span
class=
"nav-title"
>
森林状态
</span>
<span
class=
"nav-title"
>
森林状态
</span>
</div>
</div>
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
<van-progress
:percentage=
"perenct * 100"
/>
<van-progress
:percentage=
"perenct * 100"
/>
<div
class=
"level-num"
>
Lv.
{{
nextLevel
}}
</div>
<div
class=
"level-num"
>
Lv.
{{
nextLevel
}}
</div>
</div>
</div>
<
div
class=
"relegation"
>
保级还需增加¥
{{
relegationNum
}}
业绩
</div
>
<
!--
<div
class=
"relegation"
>
保级还需增加¥
{{
relegationNum
}}
业绩
</div>
--
>
</div>
</div>
<div
class=
"forest-list"
>
<div
class=
"forest-list"
>
<div
class=
"forest-item"
v-for=
"(item, index) in list"
:key=
"index"
>
<div
class=
"forest-item"
v-for=
"(item, index) in list"
:key=
"index"
>
...
@@ -57,7 +57,7 @@
...
@@ -57,7 +57,7 @@
import
{
getForestStatus
}
from
"@/api/grade"
;
import
{
getForestStatus
}
from
"@/api/grade"
;
import
{
getLevelDes
,
getNextLevel
,
diffrentOflevel
}
from
"@/config/grade"
;
import
{
getLevelDes
,
getNextLevel
,
diffrentOflevel
}
from
"@/config/grade"
;
export
default
{
export
default
{
name
:
"
g
rade"
,
name
:
"
G
rade"
,
data
()
{
data
()
{
return
{
return
{
userLevel
:
""
,
userLevel
:
""
,
...
@@ -103,6 +103,14 @@ export default {
...
@@ -103,6 +103,14 @@ export default {
this
.
getstatus
();
this
.
getstatus
();
},
},
methods
:
{
methods
:
{
handlerBack
()
{
try
{
this
.
$bridgeToAppFun
.
navigateBack
();
}
catch
{
console
.
log
(
"不能和App交互"
);
this
.
$router
.
go
(
-
1
);
}
},
handleUrl
(
urlName
)
{
handleUrl
(
urlName
)
{
this
.
$router
.
push
({
name
:
urlName
});
this
.
$router
.
push
({
name
:
urlName
});
},
},
...
...
This diff is collapsed.
Click to expand it.
H5/src/views/instructions.vue
View file @
ae7b24b2
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
<
script
>
<
script
>
export
default
{
export
default
{
name
:
"
i
nstructions"
name
:
"
I
nstructions"
};
};
</
script
>
</
script
>
...
...
This diff is collapsed.
Click to expand it.
H5/src/views/invite.vue
View file @
ae7b24b2
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
<
script
>
<
script
>
import
{
inviteCode
}
from
"@/api/invite"
;
import
{
inviteCode
}
from
"@/api/invite"
;
export
default
{
export
default
{
name
:
"Invite"
,
data
()
{
data
()
{
return
{
return
{
imgSrc
:
""
imgSrc
:
""
...
...
This diff is collapsed.
Click to expand it.
H5/src/views/leagueNums.vue
View file @
ae7b24b2
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
<
script
>
<
script
>
import
{
getMyTeam
}
from
"@/api/grade"
;
import
{
getMyTeam
}
from
"@/api/grade"
;
export
default
{
export
default
{
name
:
"
l
eagueNums"
,
name
:
"
L
eagueNums"
,
data
()
{
data
()
{
return
{
return
{
list
:
[
list
:
[
...
...
This diff is collapsed.
Click to expand it.
H5/src/views/my/components/invitee.vue
View file @
ae7b24b2
...
@@ -30,8 +30,7 @@ export default {
...
@@ -30,8 +30,7 @@ export default {
type
:
Object
,
type
:
Object
,
default
:
()
=>
{}
default
:
()
=>
{}
}
}
},
}
data
()
{}
};
};
</
script
>
</
script
>
...
...
This diff is collapsed.
Click to expand it.
H5/src/views/my/myStatus.vue
View file @
ae7b24b2
...
@@ -168,7 +168,6 @@ export default {
...
@@ -168,7 +168,6 @@ export default {
for
(
const
key
in
res
.
data
.
myRecommed
)
{
for
(
const
key
in
res
.
data
.
myRecommed
)
{
this
.
Tabs
.
forEach
(
el
=>
{
this
.
Tabs
.
forEach
(
el
=>
{
if
(
el
.
keyName
===
key
)
{
if
(
el
.
keyName
===
key
)
{
console
.
log
(
key
);
el
.
num
=
res
.
data
.
myRecommed
[
key
];
el
.
num
=
res
.
data
.
myRecommed
[
key
];
}
}
});
});
...
...
This diff is collapsed.
Click to expand it.
H5/src/views/register.vue
View file @
ae7b24b2
...
@@ -74,7 +74,7 @@
...
@@ -74,7 +74,7 @@
import
{
smsCode
}
from
"@/api/base"
;
import
{
smsCode
}
from
"@/api/base"
;
import
{
register
}
from
"@/api/user"
;
import
{
register
}
from
"@/api/user"
;
export
default
{
export
default
{
name
:
"
r
egister"
,
name
:
"
R
egister"
,
data
()
{
data
()
{
return
{
return
{
form
:
{
form
:
{
...
...
This diff is collapsed.
Click to expand it.
H5/src/views/rewards/month-award.vue
View file @
ae7b24b2
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
name=
"arrow-left"
name=
"arrow-left"
size=
"20"
size=
"20"
class=
"nav-left"
class=
"nav-left"
@
click=
"
$router.go(-1)
"
@
click=
"
handlerBack
"
/>
/>
<span
class=
"nav-title"
>
月度奖励
</span>
<span
class=
"nav-title"
>
月度奖励
</span>
</div>
</div>
...
@@ -100,6 +100,14 @@ export default {
...
@@ -100,6 +100,14 @@ export default {
this
.
getData
();
this
.
getData
();
},
},
methods
:
{
methods
:
{
handlerBack
()
{
try
{
this
.
$bridgeToAppFun
.
navigateBack
();
}
catch
{
console
.
log
(
"不能和App交互"
);
this
.
$router
.
go
(
-
1
);
}
},
getData
()
{
getData
()
{
const
params
=
{
const
params
=
{
userId
:
this
.
$userId
userId
:
this
.
$userId
...
...
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