2025-06-23 16:02:11 +08:00

112 lines
2.5 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="container_body">
<view class="container">
<div class="userAva">
<image src="http://192.168.0.172:5500/com_MsgImg1.png" alt="" mode="aspectFill" />
</div>
<div class="Name">MarrekoZhang</div>
<view class="item">
<view class="label">
<view class="item_desc">房产</view>
</view>
<input :value="communityName" @click="chooseMsg" class="right_input" disabled type="text" placeholder="请选择您要入驻的房产" />
</view>
<view class="item">
<view class="label">
<view class="item_desc">姓名</view>
</view>
<input :value="communityName" class="right_input" type="text" placeholder="请输入您的姓名" />
</view>
<view class="item">
<view class="label">
<view class="item_desc">手机</view>
</view>
<input :value="communityName" class="right_input" type="text" placeholder="请选择您的手机号" />
</view>
<view class="item">
<view class="label">
<view class="item_desc">身份</view>
</view>
<input @click="changeShow" :value="communityName" disabled class="right_input" type="text" placeholder="请选择您的身份" />
</view>
<view class="tips ">
注意业主为在物业登记在册的人员需经过物业审
核确认后即可成为该房产的业主如需帮助可与物
业或平台联系
</view>
<view class="btn" @click="submit">确定</view>
</view>
<u-picker :show="show" :columns="columns" keyName="text" @confirm='confirm' @close='onClose' @cancel='onClose'
closeOnClickOverlay></u-picker>
</view>
</template>
<script>
import { request, picUrl, NavgateTo } from '../../../utils';
import { apiArr } from '../../../api/community';
export default {
data() {
return {
show: false, //弹出层
columns: [
[
{ text: "业主", type: 1 },
{ text: "家属", type: 2 },
{ text: "租户", type: 3 },
{ text: "访客", type: 4 },
]
]
}
},
methods: {
changeShow() {
this.show = !this.show;
},
onClose() {
this.show = false;
},
confirm(e) {
console.log('eee', e);
this.typeName = e.value[0].text;
this.type = e.value[0].type;
this.show = false;
},
chooseMsg(){
NavgateTo("../chooseMsg/index")
},
},
onLoad(options) {
},
onShow() {
},
}
</script>
<style>
@import url("./index.css");
</style>