46 lines
1.8 KiB
PHP
46 lines
1.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?v=230609" 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>
|
|
</div>
|
|
</div>
|
|
<a class="bottom-opt pt15 bg-1a1a1a ulib-r750 text-center color-fff" href="/h5/market/sytopic?skey=<?=$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 = <?=json_encode($info,JSON_UNESCAPED_UNICODE)?>
|
|
},
|
|
|
|
},
|
|
})
|
|
</script>
|
|
<?= $this->load->view('h5/market/sylive/share_script') ?>
|
|
</body>
|