24 lines
595 B
HTML
24 lines
595 B
HTML
<!--#
|
|
layout("/mobile/platform.html"){
|
|
#-->
|
|
<div id="app" v-cloak>
|
|
<van-nav-bar title="福利发放明细" left-arrow placeholder fixed @click-left="history.back()"></van-nav-bar>
|
|
|
|
<welfare ref="welfare" :is_icon="false" @find="findOne"></welfare>
|
|
</div>
|
|
<script>
|
|
const vue = new Vue({
|
|
el: '#app',
|
|
components: {
|
|
'welfare': httpVueLoader('/components/welfare/common.vue'),
|
|
},
|
|
methods: {
|
|
findOne(id) {
|
|
window.location.href = '/mobile/welfare/info?lp_id=' + id
|
|
}
|
|
}
|
|
})
|
|
</script>
|
|
<!--#
|
|
}
|
|
#--> |