Files
UNION_HUTB/target/classes/views/platform/member/info/PersonInfo.html
T
2026-09-09 09:14:28 +08:00

62 lines
1.3 KiB
HTML

<!--#
layout("/layouts/platform.html"){
#-->
<style>
.v-body {
display: flex;
width: 100%;
height: 100%;
justify-content: center;
align-items: center;
background-color: #f0f2f5;
}
.v-card {
width: calc(100% - 0px);
height: calc(100% - 20px);
position: relative;
overflow: auto;
padding-top: 20px;
padding-bottom: 50px;
}
</style>
<div id="app" v-cloak>
<guava ref="guava" style="width: 100%;height: 100%">
<template>
<div class="v-body">
<el-card class="v-card" shadow="never">
<el-button type="primary" @click="$refs.member.save()"
style="position: absolute;right: 20px;top: 30px;z-index: 100">提交
</el-button>
<member ref="member" :id="'${@shiro.getPrincipalProperty('id')}'"></member>
</el-card>
</div>
</template>
</guava>
</div>
<script>
const vue = new Vue({
el: '#app',
data() {
return {}
},
components: {
'member': httpVueLoader('/components/member/MemberInfo.vue?v=1.0.3'),
},
methods: {},
async created() {
}
})
</script>
<!--#
}
#-->