You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
382 B
Vue
21 lines
382 B
Vue
<template>
|
|
<view class="g_w_all g_h_all g_bg_f_5 g_flex_c g_kuaishou">
|
|
<image :src="cdnBaseImg + 'upgrade.svg'" mode="widthFix" style="width: calc(100vw - 60px);"></image>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default{
|
|
onShareAppMessage() {
|
|
return this.G.shareFun();
|
|
},
|
|
data(){
|
|
return{
|
|
cdnBaseImg:this.G.store().cdnBaseImg
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style> |