Files
UNION_HUTB/target/classes/views/mobile/condolence/apply_info.html
T
2026-09-09 09:14:28 +08:00

57 lines
1.1 KiB
HTML

<!--#
layout("/mobile/platform.html"){
#-->
<style>
#app {
height: 100%;
}
.cell-card {
padding: 3px;
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
width: 95%;
margin: 10px;
border-radius: 20px;
}
.van-field__control {
color: #8b8f95;
}
.van-field__label {
color: #39acff
}
.text-overflow {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
</style>
<div id="app" v-cloak>
<van-nav-bar title="慰问申请信息" left-arrow placeholder fixed @click-left="history.back()"></van-nav-bar>
<condolence-info :id.sync="id"></condolence-info>
</div>
<script>
const vue = new Vue({
el: '#app',
data() {
return {
id: ""
}
},
components: {
'condolence-info': httpVueLoader('/components/condolence/mobile/common.vue'),
},
methods: {},
async created() {
this.id = GetQueryString('id')
}
})
</script>
<!--#
}
#-->