38 lines
905 B
HTML
38 lines
905 B
HTML
<!--#
|
|
layout("/mobile/platform.html"){
|
|
#-->
|
|
<style>
|
|
|
|
</style>
|
|
|
|
<div id="app" v-cloak>
|
|
<van-nav-bar title="困难帮扶申请信息" left-arrow placeholder fixed @click-left="history.back()"></van-nav-bar>
|
|
|
|
<div>
|
|
<difficulty-info :id.sync="id"></difficulty-info>
|
|
</div>
|
|
</div>
|
|
<script src="/assets/platform/module/difficulty/common.js?v=1.0.0"></script>
|
|
<script>
|
|
var vue = new Vue({
|
|
el: '#app',
|
|
mixins: [mobileMixins],
|
|
data() {
|
|
return {
|
|
id: "",
|
|
state_id: ""
|
|
}
|
|
},
|
|
components: {
|
|
'difficulty-info': httpVueLoader('/components/mobile/difficulty/info.vue?v=' + new Date().getTime()),
|
|
},
|
|
methods: {},
|
|
async created() {
|
|
this.id = GetQueryString('id')
|
|
this.state_id = GetQueryString('state_id')
|
|
}
|
|
})
|
|
</script>
|
|
<!--#
|
|
}
|
|
#--> |