63 lines
1.9 KiB
HTML
63 lines
1.9 KiB
HTML
<!--#
|
|
layout("/mobile/platform.html"){
|
|
#-->
|
|
<div id="app" v-cloak>
|
|
<m-page-loading v-if="mLoading"></m-page-loading>
|
|
<!-- <van-nav-bar title="详细信息" left-arrow placeholder fixed @click-left="location.href = document.referrer"></van-nav-bar>-->
|
|
<van-nav-bar title="详细信息" left-arrow placeholder fixed @click-left="pjaxReplace('/mobile/index')"></van-nav-bar>
|
|
|
|
<div class="van-cell-group__title">
|
|
<div class="van-sidebar-item van-sidebar-item--select">
|
|
当前状态:{{stateName}}
|
|
</div>
|
|
</div>
|
|
|
|
<mobile-member-info ref="minfo"></mobile-member-info>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
const vue = new Vue({
|
|
el: '#app',
|
|
mixins: [mobileMixins],
|
|
data() {
|
|
return {
|
|
unionAudit: {},
|
|
schoolAudit: {},
|
|
stateName: null,
|
|
stateId: null
|
|
}
|
|
},
|
|
components: {
|
|
'mobile-member-info': httpVueLoader('/components/mobile/member/MobileMemberInfo.vue?v=' + new Date().getTime()),
|
|
},
|
|
methods: {},
|
|
async created() {
|
|
this.mLoading = true
|
|
const record_id = GetQueryString("record_id")
|
|
const user_id = GetQueryString("user_id")
|
|
const userId = "${@shiro.getPrincipalProperty('id')}"
|
|
const personType = "${@shiro.getPrincipalProperty('personType')}"
|
|
setTimeout(() => {
|
|
this.$refs.minfo.getUserInfo(user_id ? user_id : userId)
|
|
this.$refs.minfo.getAuditInfo(record_id)
|
|
}, 500)
|
|
|
|
const resp = await $.get("/platform/member/apply/submit/unionInfo")
|
|
if (resp.code === 0) {
|
|
if (resp.data.record) {
|
|
this.stateName = resp.data.record.stateName
|
|
this.stateId = resp.data.record.stateId
|
|
}
|
|
}
|
|
|
|
this.mLoading = false
|
|
}
|
|
})
|
|
</script>
|
|
|
|
|
|
<!--#
|
|
}
|
|
#-->
|