63 lines
1.9 KiB
HTML
63 lines
1.9 KiB
HTML
<!--#
|
|
layout("/mobile/platform.html"){
|
|
#-->
|
|
|
|
<style>
|
|
.van-cell-group--inset {
|
|
margin: 0 16px;
|
|
overflow: hidden;
|
|
border-radius: 8px;
|
|
}
|
|
</style>
|
|
|
|
<div id="app" v-cloak>
|
|
<van-sticky>
|
|
<van-nav-bar title="个人信息" left-arrow placeholder fixed
|
|
@click-left="history.back()"></van-nav-bar>
|
|
</van-sticky>
|
|
<div class="mt10" v-if="vLoading && !vLoading.value">
|
|
<van-cell-group class="van-cell-group--inset">
|
|
<van-cell>
|
|
<template #title>
|
|
<div style="font-weight: bold;font-size: 15px">个人信息</div>
|
|
</template>
|
|
</van-cell>
|
|
<van-cell :border="false" is-link title="我的福利" url="/mobile/welfare/mine/myWelfare">
|
|
<template #icon>
|
|
<van-icon class="van-cell__left-icon" color="red" name="star"></van-icon>
|
|
</template>
|
|
</van-cell>
|
|
<van-cell :border="false" is-link title="我的地址" url="/mobile/welfare/mine/address">
|
|
<template #icon>
|
|
<van-icon class="van-cell__left-icon" color="red" name="location"></van-icon>
|
|
</template>
|
|
</van-cell>
|
|
<van-cell :border="false" is-link title="我的签名" url="/mobile/welfare/mine/sign">
|
|
<template #icon>
|
|
<van-icon class="van-cell__left-icon" color="red" name="coupon"></van-icon>
|
|
</template>
|
|
</van-cell>
|
|
</van-cell-group>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
<!--#include("/mobile/welfare/include/mixins.js"){}#-->
|
|
|
|
var vue = new Vue({
|
|
el: '#app',
|
|
mixins: [mobileMixins, welfareMixins],
|
|
data() {
|
|
return {
|
|
tarBarActive: 1
|
|
}
|
|
},
|
|
created() {
|
|
this.startLoading()
|
|
this.closeLoading()
|
|
}
|
|
})
|
|
</script>
|
|
<!--#
|
|
}
|
|
#--> |