Files
liche/home/views/h5/market/sylive/ucenter/index.php
T
xiaoyu 6a9316dd64 0507
2025-05-07 12:39:07 +08:00

73 lines
2.8 KiB
PHP

<body class="bg-f6">
<div class="height-500 fixed left-0 right-0 top-0 z-index-0 bg-1a1a1a"></div>
<div class="bg-f6" id="app" ref="app">
<div class="container relative bg-no-repeat bg-size-fullwidth bg-pos-top pb50" style="background-image:url(https://qs.liche.cn/web/images/project/H5-ShiYu/mine-bg2.jpg)">
<div class="pt50 pl30 pr30 text-center">
<img class="bds-1-fff imgsize-120X120 ulib-r750" :src="info.logo" alt="#" />
<div class="pt10 font-36 text-center">{{info.title}}</div>
<div class="mt40"><img class="block wp100" src="https://qs.liche.cn/web/images/project/H5-ShiYu/mine-theme.png" alt="尊享您的直播好礼" /></div>
</div>
<div class="bg-fff ml30 mr30 pt20 pb20 pl40 pr40 ulib-r20 box-shadow-darkGray">
<!--活动列表列表-->
<a class="block relative pt30 pb30 bbs-1-eee last-b-none" :href="item.url" v-for="(item,index) in info.list">
<span class="font-32">{{item.title}}</span>
<i class="absolute box-middle right-0 iconfont icon-gengduo"></i>
</a>
<!--end活动列表-->
</div>
</div>
<a class="bottom-opt pt15 bg-1a1a1a ulib-r750 text-center color-fff" href="/h5/market/sylive/act?skey=<?=$params['skey']?>">
<i class="iconfont icon-shouye text-middle font-36"></i>
<div class="font-22">首页</div>
</a>
</div>
<script>
let hostUrl = ''
var app = new Vue({
el: '#app',
data: {
info:{
list:[],
},//基础信息
},
mounted() {
this.getInfo()
},
methods: {
//获取基础信息
getInfo(){
// this.info = {
// title:"厦门狸车店",
// logo:"https://qs.liche.cn/web/images/project/H5-ShiYu/goodslogo.jpg",
// list:[
// {
// title:'我的权益',
// url:'mygift.html',
// },
// {
// title:'我的订单',
// url:'#',
// },
// {
// title:'我的券',
// url:'#',
// },
// {
// title:'联系客服',
// url:'#',
// },
// {
// title:'数据统计',
// url:'#',
// },
// ],
// }
this.info = <?=json_encode($info,JSON_UNESCAPED_UNICODE)?>
},
},
})
</script>
</body>