49 lines
1.8 KiB
HTML
49 lines
1.8 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 left-text="返回" placeholder fixed @click-left="location.href = document.referrer"></van-nav-bar>-->
|
|
<van-nav-bar title="详细信息" left-arrow placeholder fixed @click-left="history.back()"></van-nav-bar>
|
|
|
|
<mobile-member-info ref="minfo"></mobile-member-info>
|
|
</div>
|
|
|
|
<script>
|
|
const vue = new Vue({
|
|
el: '#app',
|
|
mixins: [mobileMixins],
|
|
data() {
|
|
return {
|
|
unionAudit: {},
|
|
schoolAudit: {},
|
|
personTypes: ["事业编制", "事业编制人事代理", "非事业编制人事代理", "校聘人才派遣", "人才/劳务派遣(天目湖校区)", "溧阳事业编制(天目湖校区)"],
|
|
}
|
|
},
|
|
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)
|
|
this.mLoading = false
|
|
/* if (personType === "" || !this.personTypes.includes(personType)) {
|
|
console.log(11)
|
|
this.$toast.fail('您不具备申请会员的条件,具体事宜请咨询校工会');
|
|
}*/
|
|
}
|
|
})
|
|
</script>
|
|
|
|
|
|
<!--#
|
|
}
|
|
#--> |