37 lines
1005 B
HTML
37 lines
1005 B
HTML
<!--#
|
|
layout("/mobile/platform.html"){
|
|
#-->
|
|
<link rel="stylesheet" href="${base!}/assets/platform/plugins/video/css/video-js.min.css">
|
|
<script src="${base!}/assets/platform/plugins/video/js/video.min.js"></script>
|
|
<div id="app" v-cloak>
|
|
<m-page-loading v-if="mLoading"></m-page-loading>
|
|
<van-nav-bar title="详细信息" left-arrow placeholder fixed @click-left="history.back()"></van-nav-bar>
|
|
|
|
<mobile-wmhd-info ref="minfo"></mobile-wmhd-info>
|
|
</div>
|
|
|
|
<script>
|
|
var vue = new Vue({
|
|
el: '#app',
|
|
data() {
|
|
return {}
|
|
},
|
|
components: {
|
|
'mobile-wmhd-info': httpVueLoader('/components/mobile/wmhd/info.vue?v=' + new Date().getTime()),
|
|
},
|
|
methods: {},
|
|
async created() {
|
|
this.mLoading = true
|
|
const id = GetQueryString("id")
|
|
setTimeout(() => {
|
|
this.$refs.minfo.getInfo(id)
|
|
}, 100)
|
|
this.mLoading = false
|
|
}
|
|
})
|
|
</script>
|
|
|
|
|
|
<!--#
|
|
}
|
|
#--> |