mirror of
https://gitee.com/java110/PropertyApp.git
synced 2026-02-23 21:36:39 +08:00
33 lines
412 B
Vue
33 lines
412 B
Vue
<template>
|
|
<view>
|
|
<view class="cu-avatar xl round margin-left lage-avatar" style="background-image:url('logo.png');"></view>
|
|
<view class="margin-top">
|
|
<text>{{staffInfo.name}}</text>
|
|
</view>
|
|
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
uni.hideTabBar({
|
|
animation:false
|
|
});
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|