Commit 0a7b91f6 authored by Mac's avatar Mac

1

parent ceaf350d
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
<view v-html='subItem.data.content.replace(new RegExp("max-width: 100%", "gm"), "max-width:100%;display:block")'></view> <view v-html='subItem.data.content.replace(new RegExp("max-width: 100%", "gm"), "max-width:100%;display:block")'></view>
</view> </view>
<rubik v-if="subItem.Id == 'rubik'" :ad="subItem.data"></rubik> <rubik v-if="subItem.Id == 'rubik'" :ad="subItem.data"></rubik>
<matchmaking v-if="subItem.Id == 'miaiuser'" :navs="subItem.data"></matchmaking>
</template> </template>
</template> </template>
</template> </template>
...@@ -61,11 +62,13 @@ ...@@ -61,11 +62,13 @@
import cats from "@/components/navpage/category"; import cats from "@/components/navpage/category";
import activity from "@/components/navpage/activity"; import activity from "@/components/navpage/activity";
import rubik from "@/components/rubik/index"; import rubik from "@/components/rubik/index";
import matchmaking from "@/components/matchmaking/index"
export default { export default {
components: { components: {
cats, cats,
activity, activity,
rubik rubik,
matchmaking
}, },
props: ["navs"], props: ["navs"],
data() { data() {
......
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
.buyvip .xaingq{ .buyvip .xaingq{
width: 100%; width: 100%;
background:linear-gradient( #EFB252, #FCD7A3); background:linear-gradient( #EFB252, #FCD7A3);
padding-bottom:30px ; padding-bottom:60px ;
} }
.buyvip .buybtn{ .buyvip .buybtn{
width: calc(100vw - 30px); width: calc(100vw - 30px);
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
border-radius: 22.5px; border-radius: 22.5px;
} }
.buybtn-box{ .buybtn-box{
width: 100%;height: 115px;position: absolute;left: 0;bottom: -136rpx;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: 0px;background-image: url('https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/xqbuy-bg.png');background-size: 100%;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
...@@ -142,13 +142,7 @@ ...@@ -142,13 +142,7 @@
</view> </view>
</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> </view>
...@@ -157,6 +151,13 @@ ...@@ -157,6 +151,13 @@
</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> </view>
</scroll-view> </scroll-view>
</template> </template>
......
...@@ -496,14 +496,14 @@ ...@@ -496,14 +496,14 @@
}; };
if(this.IsOpenMiAi ==0){ if(this.IsOpenMiAi ==0){
this.showAuth = true; this.showAuth = true;
}else{
this.init();
} }
} else { } else {
this.init(); this.init();
} }
if(this.IsOpenMiAi ==1){
this.init();
}
}, },
onShow(){ onShow(){
if (!this.u) { if (!this.u) {
......
...@@ -156,19 +156,25 @@ ...@@ -156,19 +156,25 @@
<view style="padding:10px 0;"> <view style="padding:10px 0;">
<u-loadmore :status="status" bg-color="transparent" :load-text="loadText" :font-size="24" :margin-top="0" :margin-bottom="0" /> <u-loadmore :status="status" bg-color="transparent" :load-text="loadText" :font-size="24" :margin-top="0" :margin-bottom="0" />
</view> </view>
</scroll-view> </scroll-view>
<tabbar v-if='barshow==0'></tabbar>
</view> </view>
</template> </template>
<script> <script>
import tabbar from "@/components/tabbar/index";
export default { export default {
components: {
tabbar
},
data() { data() {
return { return {
pageTitle: '活动列表', pageTitle: '活动列表',
msg: { msg: {
pageIndex: 1, pageIndex: 1,
pageSize: 10, pageSize: 10,
ActivityType: 1 ActivityType: 0
}, },
dataList:[], dataList:[],
pageCount: 1, pageCount: 1,
...@@ -179,6 +185,7 @@ ...@@ -179,6 +185,7 @@
nomore: "没有更多了", nomore: "没有更多了",
}, },
IsOpenMiAi:0,//1开始 0 没开启 IsOpenMiAi:0,//1开始 0 没开启
barshow:0,
} }
}, },
created() {}, created() {},
...@@ -190,7 +197,11 @@ ...@@ -190,7 +197,11 @@
this.mainColor = this.$uiConfig.mainColor; this.mainColor = this.$uiConfig.mainColor;
}, },
onLoad(option) { onLoad(option) {
if(option && option.Id){
this.msg.ActivityType = option.Id; this.msg.ActivityType = option.Id;
this.barshow=1
}
this.getData(1); this.getData(1);
}, },
methods: { methods: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment