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

45 lines
937 B
HTML

<!--#
layout("/mobile/platform.html"){
#-->
<style>
.van-field__control {
color: #8b8f95;
}
.van-field__label {
color: #39acff
}
.custom-image .van-empty__image {
width: 220px;
height: 160px;
}
.van-empty__description {
margin-top: -10px;
}
</style>
<div id="app" v-cloak>
<van-nav-bar title="申请入会" left-arrow placeholder fixed @click-left="history.back()"></van-nav-bar>
<template v-if="formData.sfhy==1">
<van-empty class="custom-image" image="/hy.svg" description="您已是会员"/>
</template>
<template v-else>
<!--#include("/mobile/hy/common.html"){}#-->
</template>
</div>
<script>
const vue = new Vue({
el: '#app',
mixins: [memberMixins],
async created() {
this.pageData()
this.mzColumns = await this.getAllNation()
}
})
</script>
<!--#
}
#-->