Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mallapp
Project
Project
Details
Activity
Releases
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
viitto
mallapp
Commits
cb0bd4fd
Commit
cb0bd4fd
authored
Oct 28, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
bd99c151
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
12 deletions
+21
-12
MyGroupLeader.vue
pages/blindDate/personal/MyGroupLeader.vue
+15
-10
blinddate-user.vue
pages/user-center/components/blinddate-user.vue
+6
-2
No files found.
pages/blindDate/personal/MyGroupLeader.vue
View file @
cb0bd4fd
...
...
@@ -32,7 +32,7 @@
msg
:
{
pageIndex
:
1
,
pageSize
:
10
,
lookGroupIds
:
"
3
"
lookGroupIds
:
"
1
"
},
page_count
:
1
,
loading
:
false
,
...
...
@@ -52,6 +52,11 @@
uni
.
setNavigationBarTitle
({
title
:
this
.
pageTitle
,
});
},
onLoad
(
options
)
{
if
(
options
&&
options
.
groupId
)
{
this
.
msg
.
lookGroupIds
=
options
.
groupId
}
this
.
init
()
},
methods
:
{
...
...
@@ -73,15 +78,15 @@
}
}
);
},
lower
(
e
)
{
if
(
this
.
msg
.
pageIndex
<
this
.
page_count
)
{
this
.
msg
.
pageIndex
++
;
this
.
status
=
"loading"
;
this
.
init
();
}
else
{
this
.
status
=
"nomore"
;
}
},
lower
(
e
)
{
if
(
this
.
msg
.
pageIndex
<
this
.
page_count
)
{
this
.
msg
.
pageIndex
++
;
this
.
status
=
"loading"
;
this
.
init
();
}
else
{
this
.
status
=
"nomore"
;
}
},
}
}
...
...
pages/user-center/components/blinddate-user.vue
View file @
cb0bd4fd
...
...
@@ -237,7 +237,7 @@
v-for=
"(item, index) in mItem.MeunList"
:key=
"index"
:name=
"item.name"
@
click=
"goUrl(item.link_url)"
@
click=
"goUrl(item.link_url
,item
)"
v-if=
"pandu(item)"
>
<image
...
...
@@ -364,11 +364,15 @@ export default {
}
return
flag
;
},
goUrl
(
url
)
{
goUrl
(
url
,
item
=
null
)
{
if
(
url
==
"/pages/balance/balance"
)
{
uni
.
navigateTo
({
url
:
"/pages/balance/balance?balance="
+
this
.
user_info
.
balance
,
});
}
else
if
(
url
==
"/pages/blindDate/personal/MyGroupLeader"
)
{
uni
.
navigateTo
({
url
:
"/pages/blindDate/personal/MyGroupLeader?groupId="
+
item
.
groupId
,
});
}
else
{
uni
.
navigateTo
({
url
:
url
,
...
...
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