123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- <template>
- <view>
- <view class="topBox">
- <image src="../../static/login_bgground@2x.png" style="width: 100%;height: 100%;"></image>
- <view class="headPhoto" @tap="seeMyInfo">
-
- <image :src="headImg?headImg:'../../static/qingShao.png'" style="width: 122rpx;height: 122rpx;border-radius: 50%;margin:18rpx;" ></image>
- </view>
- <view class="name" @tap="seeMyInfo">
- {{userName}}
- </view>
- <view class="phone" @tap="seeMyInfo">{{userPhone}}</view>
- <!-- 车辆数 -->
- <view class="carBox">
- <view class="leftCar" @tap="seeMyCar">
- <view class="num">{{carNum?carNum:0}}</view>
- <view class="text">汽车辆数</view>
- </view>
- <view class="rightCar" @tap="seeMyBike">
- <view class="num" style="width: 134rpx;">0</view>
- <view class="text" style="width: 134rpx;">电动车辆数</view>
- </view>
- </view>
- </view>
- <!-- 菜单栏 -->
- <view class="main">
- <view class="item" @tap="seeMyhouse">
- <view class="leftIcon">
- <image src="../../static/my_icon_house@2x.png" style="width: 38rpx;height: 40rpx;"></image>
- </view>
- <view style="display: flex;justify-content: space-between;margin-left: 32rpx;width: 100%;margin-top: 48rpx;">
- <view class="title">我的房屋</view>
- <image src="../../static/icon_more@2x.png" style="width:15rpx ;height: 28rpx;margin-top: 8rpx;"></image>
- </view>
- </view>
- <view class="item" @tap="visitorInfo">
- <view class="leftIcon">
- <image src="../../static/my_icon_information@2x.png" style="width:40rpx;height:35rpx;margin-top: 5rpx;"></image>
- </view>
- <view style="display: flex;justify-content: space-between;margin-left: 32rpx;width: 100%;margin-top: 48rpx;">
- <view class="title">访客信息</view>
- <image src="../../static/icon_more@2x.png" style="width:15rpx ;height: 28rpx;margin-top: 8rpx;"></image>
- </view>
- </view>
- <view class="item" @tap="changeFace">
- <view class="leftIcon">
- <image src="../../static/my_icon_formwork@2x.png" style="width: 38rpx;height: 40rpx;"></image>
- </view>
- <view style="display: flex;justify-content: space-between;margin-left: 32rpx;width: 100%;margin-top: 48rpx;">
- <view class="title">人脸模板</view>
- <image src="../../static/icon_more@2x.png" style="width:15rpx ;height: 28rpx;margin-top: 8rpx;"></image>
- </view>
- </view>
- <view class="item" @tap="seeMyFamily">
- <view class="leftIcon">
- <image src="../../static/my_icon_family@2x.png" style="width: 38rpx;height: 40rpx;"></image>
- </view>
- <view style="display: flex;justify-content: space-between;margin-left: 32rpx;width: 100%;margin-top: 48rpx;">
- <view class="title">我的家人</view>
- <image src="../../static/icon_more@2x.png" style="width:15rpx ;height: 28rpx;margin-top: 8rpx;"></image>
- </view>
- </view>
- <view class="item" @tap="seeMyMessage">
- <view class="leftIcon">
- <image src="../../static/myMessage.png" style="width: 38rpx;height: 40rpx;"></image>
- </view>
- <view style="display: flex;justify-content: space-between;margin-left: 32rpx;width: 100%;margin-top: 48rpx;">
- <view class="title">我的消息</view>
- <image src="../../static/icon_more@2x.png" style="width:15rpx ;height: 28rpx;margin-top: 8rpx;"></image>
- </view>
- </view>
- </view>
- <!-- 认证房屋是否通过提示 -->
- <uniPopup ref='popup' type="center">
- <view style="width: 600rpx;height: 522rpx;background-color: #fff;border-radius: 10rpx;" class="popupBox">
- <image src="../../static/auditing_popup.png" style="width:85%;height: 100%;margin-top: -50rpx;margin-left: 30rpx;"></image>
- <view class="popupTitle" v-if="status==1">当前认证房屋正在审核中</view>
- <view class="popupTitle" v-else-if="status==4">当前暂无房屋绑定,请重新认证</view>
- <button class="popupBtn" @tap="popupClose" v-if="status==1">我知道了</button>
- <button class="popupBtn" @tap="goTapHouse" v-else-if="status==4">去认证</button>
- </view>
- </uniPopup>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- userName:uni.getStorageSync('userName'),
- headImg:uni.getStorageSync('headImg'),
- userPhone:uni.getStorageSync('userPhone'),
- carNum: 0, //汽车数量
- bikeNum: 0, //自行车数量
- headPhoto:'',
- status:''
- }
- },
- onShow() {
- this.getCarData()
- // this.getUserData()
- this.userName=uni.getStorageSync('userName')
- this.headImg=uni.getStorageSync('headImg')
- this.userPhone=uni.getStorageSync('userPhone')
- this.status=uni.getStorageSync('houseStatus')
- },
- onLoad() {
- this.status=uni.getStorageSync('houseStatus')
- },
- methods: {
- //重新认证房屋
- goTapHouse(){
- uni.navigateTo({
- url:'../authentication/city'
- })
- this.$refs.popup.close()
- },
- // 关闭弹窗
- popupClose(){
- this.$refs.popup.close()
- },
- // 获取汽车车辆数
- getCarData() {
- uni.showLoading({
- title: '加载中',
- 'icon': 'none'
- })
- this.http.httpRequest('/wxapplet/ownercar/list', 'get', {
- cardId: uni.getStorageSync('idNumber'),
- pageNum: 1,
- pageSize: 10
- }, true).then((res) => {
- console.log(res)
- if (res.code == 0) {
- this.carNum = res.data.rows.length
- uni.hideLoading()
- } else {
- uni.hideLoading()
- }
- }).catch(() => {
- uni.hideLoading()
- })
- },
- // 查看电动车
- seeMyBike() {
- if(this.status==1 ||this.status==4){
- this.$refs.popup.open()
- return
- }
- uni.navigateTo({
- url: './myBike'
- })
- },
- // 访客信息
- visitorInfo() {
- if(this.status==1||this.status==4){
- this.$refs.popup.open()
- return
- }
- uni.navigateTo({
- url: "../visitor/historyList"
- })
- },
- // 查看个人资料
- seeMyInfo() {
- if(this.status==1||this.status==4){
- this.$refs.popup.open()
- return
- }
- uni.navigateTo({
- url: "myInfo"
- })
- },
- // 查看我的汽车
- seeMyCar() {
- if(this.status==1||this.status==4){
- this.$refs.popup.open()
- return
- }
- uni.navigateTo({
- url: "myCar"
- })
- },
- // 查看我的房屋
- seeMyhouse() {
- if(this.status==1||this.status==4){
- this.$refs.popup.open()
- return
- }
- uni.navigateTo({
- url: "myHouse"
- })
- },
- //更换人脸模板
- changeFace() {
- if(this.status==1||this.status==4){
- this.$refs.popup.open()
- return
- }
- uni.navigateTo({
- url: "./face"
- })
- },
- // 查看我的家人
- seeMyFamily() {
- if(this.status==1||this.status==4){
- this.$refs.popup.open()
- return
- }
- uni.navigateTo({
- url: "./family"
- })
- },
- // 查看我的消息
- seeMyMessage() {
- if(this.status==1||this.status==4){
- this.$refs.popup.open()
- return
- }
- uni.navigateTo({
- url: "./message"
- })
- }
- }
- }
- </script>
- <style>
- .popupClose {
- width: 44rpx;
- height: 44rpx;
- position: absolute;
- right: 20rpx;
- top: 20rpx;
-
- }
- .popupBtn {
- width: 342rpx;
- height: 80rpx;
- position: absolute;
- bottom: 80rpx;
- left: 128rpx;
- background: rgba(41, 138, 253, 1);
- color: #FFFFFF;
- font-size: 32rpx;
- }
-
- .popupTitle {
- width: 400rpx;
- height: 40rpx;
- font-size: 28rpx;
- color: #999999;
- position: absolute;
- bottom: 232rpx;
- left: 170rpx;
- }
-
- .popupImage {
- width: 100%;
- height: 300rpx;
- /* background-image: url(../../static/success_popup@2x.png);
- position: absolute;
- top: -64rpx; */
-
- }
- .leftIcon {
- width: 38rpx;
- height: 40rpx;
- margin-top: 48rpx;
- }
- .item {
- width: 650rpx;
- height: 140rpx;
- margin: 0 auto;
- border-bottom: 2rpx solid rgba(245, 245, 245, 1);
- display: flex;
- }
- .main {
- width: 100%;
- margin-top: 50rpx;
- overflow: hidden;
- }
- .carBox {
- width: 650rpx;
- height: 170rpx;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0rpx 6rpx 20rpx rgba(0, 0, 0, 0.12);
- opacity: 1;
- border-radius: 86rpx;
- position: absolute;
- left: 50rpx;
- bottom: -54rpx;
- display: flex;
- }
- .leftCar {
- width: 218rpx;
- height: 90rpx;
- margin-left: 108rpx;
- border-right: 2px solid rgba(247, 247, 247, 1);
- ;
- margin-top: 40rpx;
- }
- .rightCar {
- height: 90rpx;
- margin-top: 40rpx;
- margin-left: 96rpx;
- }
- .num {
- width: 108rpx;
- height: 44rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: rgba(51, 51, 51, 1);
- text-align: center;
- line-height: 44rpx;
- }
- .text {
- height: 36rpx;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(51, 51, 51, 1);
- }
- .name {
- height: 50rpx;
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(255, 255, 255, 1);
- position: absolute;
- bottom: 216rpx;
- left: 220rpx;
- }
- .phone {
- width: 168rpx;
- height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(255, 255, 255, 1);
- position: absolute;
- bottom: 176rpx;
- left: 220rpx;
- }
- .topBox {
- width: 100%;
- height: 430rpx;
- position: relative;
- }
- .headPhoto {
- width: 160rpx;
- height: 160rpx;
- border: 2rpx solid rgba(255, 255, 255, 1);
- border-radius: 50%;
- opacity: 1;
- position: absolute;
- left: 50rpx;
- bottom: 142rpx;
- background: #000000;
- }
- </style>
|