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
0a7b91f6
Commit
0a7b91f6
authored
Mar 19, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
ceaf350d
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
15 deletions
+30
-15
index.vue
components/navpage/index.vue
+4
-1
buyvip.vue
pages/blindDate/personal/buyvip.vue
+10
-9
friendcircle.vue
pages/friendcircle/friendcircle.vue
+3
-3
activeInner.vue
pages/kotra/activeInner.vue
+13
-2
No files found.
components/navpage/index.vue
View file @
0a7b91f6
...
...
@@ -24,6 +24,7 @@
<view
v-html=
'subItem.data.content.replace(new RegExp("max-width: 100%", "gm"), "max-width:100%;display:block")'
></view>
</view>
<rubik
v-if=
"subItem.Id == 'rubik'"
:ad=
"subItem.data"
></rubik>
<matchmaking
v-if=
"subItem.Id == 'miaiuser'"
:navs=
"subItem.data"
></matchmaking>
</
template
>
</template>
</template>
...
...
@@ -61,11 +62,13 @@
import
cats
from
"@/components/navpage/category"
;
import
activity
from
"@/components/navpage/activity"
;
import
rubik
from
"@/components/rubik/index"
;
import
matchmaking
from
"@/components/matchmaking/index"
export
default
{
components
:
{
cats
,
activity
,
rubik
rubik
,
matchmaking
},
props
:
[
"navs"
],
data
()
{
...
...
pages/blindDate/personal/buyvip.vue
View file @
0a7b91f6
...
...
@@ -72,7 +72,7 @@
.buyvip
.xaingq
{
width
:
100%
;
background
:
linear-gradient
(
#EFB252
,
#FCD7A3
);
padding-bottom
:
3
0px
;
padding-bottom
:
6
0px
;
}
.buyvip
.buybtn
{
width
:
calc
(
100vw
-
30px
);
...
...
@@ -88,7 +88,7 @@
border-radius
:
22.5px
;
}
.buybtn-box
{
width
:
100%
;
height
:
115px
;
position
:
absolute
;
left
:
0
;
bottom
:
-136
r
px
;
background-image
:
url('https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/xqbuy-bg.png')
;
background-size
:
100%
;
width
:
100%
;
height
:
115px
;
position
:
fixed
;
left
:
0
;
bottom
:
0
px
;
background-image
:
url('https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/xqbuy-bg.png')
;
background-size
:
100%
;
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
...
...
@@ -142,13 +142,7 @@
</view>
</view>
<view
class=
"buybtn-box"
style=
""
>
<!--
<image
src=
""
style=
"width: 100%;height: auto;"
mode=
"widthFix"
></image>
-->
<view
class=
"buybtn"
>
<text
style=
"color: #00C6C1;margin-right: 5px;font-family: aa;"
>
¥
{{
data
.
MemberBuyMoney
?
data
.
MemberBuyMoney
.
toFixed
(
2
):
0
}}
</text>
立即购买
</view>
</view>
</view>
...
...
@@ -157,6 +151,13 @@
</view>
<view
class=
"buybtn-box"
style=
""
>
<!--
<image
src=
""
style=
"width: 100%;height: auto;"
mode=
"widthFix"
></image>
-->
<view
class=
"buybtn"
>
<text
style=
"color: #00C6C1;margin-right: 5px;font-family: aa;"
>
¥
{{
data
.
MemberBuyMoney
?
data
.
MemberBuyMoney
.
toFixed
(
2
):
0
}}
</text>
立即购买
</view>
</view>
</view>
</scroll-view>
</
template
>
...
...
pages/friendcircle/friendcircle.vue
View file @
0a7b91f6
...
...
@@ -496,14 +496,14 @@
};
if
(
this
.
IsOpenMiAi
==
0
){
this
.
showAuth
=
true
;
}
else
{
this
.
init
();
}
}
else
{
this
.
init
();
}
if
(
this
.
IsOpenMiAi
==
1
){
this
.
init
();
}
},
onShow
(){
if
(
!
this
.
u
)
{
...
...
pages/kotra/activeInner.vue
View file @
0a7b91f6
...
...
@@ -156,19 +156,25 @@
<view
style=
"padding:10px 0;"
>
<u-loadmore
:status=
"status"
bg-color=
"transparent"
:load-text=
"loadText"
:font-size=
"24"
:margin-top=
"0"
:margin-bottom=
"0"
/>
</view>
</scroll-view>
<tabbar
v-if=
'barshow==0'
></tabbar>
</view>
</
template
>
<
script
>
import
tabbar
from
"@/components/tabbar/index"
;
export
default
{
components
:
{
tabbar
},
data
()
{
return
{
pageTitle
:
'活动列表'
,
msg
:
{
pageIndex
:
1
,
pageSize
:
10
,
ActivityType
:
1
ActivityType
:
0
},
dataList
:[],
pageCount
:
1
,
...
...
@@ -179,6 +185,7 @@
nomore
:
"没有更多了"
,
},
IsOpenMiAi
:
0
,
//1开始 0 没开启
barshow
:
0
,
}
},
created
()
{},
...
...
@@ -190,7 +197,11 @@
this
.
mainColor
=
this
.
$uiConfig
.
mainColor
;
},
onLoad
(
option
)
{
if
(
option
&&
option
.
Id
){
this
.
msg
.
ActivityType
=
option
.
Id
;
this
.
barshow
=
1
}
this
.
getData
(
1
);
},
methods
:
{
...
...
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