| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <view class="setup">
- <view class="navigation-container" style="{{'height: ' + navStatusBarHeight +'px'}}">
- <!-- 空白来占位状态栏 -->
- <view style="{{'height: ' + statusBarHeight +'px'}}"></view>
- <!-- 自定义导航栏 -->
- <view class="navigation-bar" style="{{'height:' + navBarHeight +'px'}}">
- <view class="title">个人中心</view>
- </view>
- </view>
- <view style="width: 100%;height:30rpx"></view>
- <view class="user">
- <image bind:tap="onuser" class="user_to" src="https://esos-iot.bjdexn.cn/wx_images/to1.jpg" mode=""/>
- <view class="user_name">
- <view class="user_name1">{{user.user.userName}}</view>
- <view class="user_name2">电话:{{user.user.phonenumber}}</view>
- </view>
- </view>
- <view class="equipment">
- <view class="equipment_1" bind:tap="onstation">
- <view class="user_left">
- <view class="user_leftname">我的设备</view>
- <view class="user_lefteq">{{station.stationName}}</view>
- </view>
- <view class="equipment_rightdiv">
- <image class="equipment_right1" src="https://esos-iot.bjdexn.cn/wx_images/104.png" mode=""/>
- </view>
- </view>
- <view class="equipment_2" bind:tap="onpowerstation">
- <view class="user_left">
- <view class="user_leftname">绑定设备</view>
- <view class="user_lefteq">扫码绑定设备</view>
- </view>
- <view class="equipment_rightdiv1">
- <image class="equipment_right" src="https://esos-iot.bjdexn.cn/wx_images/49.png" mode=""/></view>
- </view>
-
- </view>
- <view class="allocation_box">
- <view class="allocation" bind:tap="toconfigure">
- <view class="allocation_3">配置Wi-Fi</view>
- <view class="allocation_1">
- <view class="allocation_2"></view>
- <!-- <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/> -->
- </view>
- </view>
- <view class="allocation" bind:tap="toconfigure">
- <view class="allocation_3">连接设备</view>
- <view class="allocation_1">
- <view class="allocation_2"></view>
- <!-- <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/> -->
- </view>
- </view>
-
- </view>
- <view class="allocation_box">
-
- <view class="allocation">
- <view class="allocation_3">小程序版本</view>
- <view class="allocation_1">
- <view class="allocation_2" wx:if="{{accountInfo!=''}}">V {{accountInfo}}</view>
- <view class="allocation_2" wx:else>V 1.0.0</view>
- <!-- <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/> -->
- </view>
- </view>
- <view class="allocation">
- <view class="allocation_31">
- <button class="contact-button" open-type="contact" plain >
- <view>联系客服</view>
- </button>
- </view>
- <view class="allocation_1">
- <view class="allocation_2"></view>
- <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
- </view>
- </view>
- <view class="allocation" bind:tap="onsetup">
- <view class="allocation_3">设置</view>
- <view class="allocation_1">
- <view class="allocation_2"></view>
- <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
- </view>
- </view>
- </view>
- </view>
- <t-dialog
- visible="{{showMultiTextAndTitle}}"
- title="扫码"
- confirm-btn="取消"
- bind:confirm="closeDialog"
- >
- <!-- 适配skyline,增加type="list" -->
- <scroll-view slot="content" type="list" scroll-y class="long-content">
- <view class="content-container">
- <t-button
- t-class="wrapper"
- theme="primary"
- size="large"
- variant="outline"
- data-key="showMultiBtn"
- bind:tap="onscancode"
- block
- >
- <view class="ticon">
- <view class="ticonright">扫码添加</view> <t-icon name="scan" size="40rpx" data-name="scan"/>
- </view>
- </t-button>
- <!-- <view class="input-example">
- <t-input
- placeholder="搜索电站"
- borderless="{{true}}"
- value="{{inputValue}}"
- suffixIcon="{{ { name: 'search', ariaLabel: '搜索' } }}"
- bind:tap="click"
- bind:change="handleInput"
- />
- </view>
- <view class="inputbox">
- 搜索不到该电站
- </view> -->
- <!-- <t-button
- t-class="wrapper"
- theme="primary"
- size="large"
- variant="outline"
- data-key="showMultiBtn"
- bind:tap="oncreatestation"
- block
- >
- <view class="ticon">
- <view class="ticonright">创建电站</view> <t-icon name="file-add" size="40rpx" data-name="file-add"/>
- </view>
- </t-button> -->
- </view>
- </scroll-view>
- </t-dialog>
|