|
@@ -1,2 +1,68 @@
|
|
|
<!--component/myInfo/myInfo.wxml-->
|
|
|
-<text>component/myInfo/myInfo.wxml</text>
|
|
|
+<view class="container">
|
|
|
+ <view class="page">
|
|
|
+ <!--输入姓名-->
|
|
|
+ <view class="item_input_bg">
|
|
|
+ <text class="item_input_title">姓名:</text>
|
|
|
+ <input class="item_input_content" maxlength="11" placeholder="请输入姓名" />
|
|
|
+ </view>
|
|
|
+ <!--输入姓名 end-->
|
|
|
+ <!--选择地区-->
|
|
|
+ <view class="item_input_bg">
|
|
|
+ <text class="item_input_title">地区:</text>
|
|
|
+ <picker mode="region" bindchange="bindRegionChange" value="{{region}}" class="item_picker_bg">
|
|
|
+ <view class="item_picker_content">
|
|
|
+ <p> {{region[0]}} </p>
|
|
|
+ <p> {{region[1]}} </p>
|
|
|
+ <p> {{region[2]}} </p>
|
|
|
+ </view>
|
|
|
+ </picker>
|
|
|
+ <view class="item_picker_icon_layout">
|
|
|
+ <image src="../../image/teacher/dropdown_icon.png" class="item_picker_icon"></image>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <!--选择地区 end-->
|
|
|
+ <!--选择学校-->
|
|
|
+ <view class="item_input_bg">
|
|
|
+ <text class="item_input_title">学校:</text>
|
|
|
+ <picker bindchange="bindSchoolPicker" value="{{schoolIndex}}" range="{{schoolArray}}" class="item_picker_bg">
|
|
|
+ <view class="item_picker_content">
|
|
|
+ {{schoolArray[schoolIndex]}}
|
|
|
+ </view>
|
|
|
+ </picker>
|
|
|
+ <view class="item_picker_icon_layout">
|
|
|
+ <image src="../../image/teacher/dropdown_icon.png" class="item_picker_icon"></image>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <!--选择学校end-->
|
|
|
+ <!--选择班级-->
|
|
|
+ <view class="item_input_bg">
|
|
|
+ <text class="item_input_title">班级:</text>
|
|
|
+ <picker bindchange="bindClssPicker" value="{{classIndex}}" range="{{classArray}}" class="item_picker_bg">
|
|
|
+ <view class="item_picker_content">
|
|
|
+ {{classArray[classIndex]}}
|
|
|
+ </view>
|
|
|
+ </picker>
|
|
|
+ <view class="item_picker_icon_layout">
|
|
|
+ <image src="../../image/teacher/dropdown_icon.png" class="item_picker_icon"></image>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <!--选择班级end-->
|
|
|
+ <!--设置密码-->
|
|
|
+ <view class="item_input_bg">
|
|
|
+ <text class="item_input_title">设置密码:</text>
|
|
|
+ <input class="item_input_content" maxlength="11" password="{{isShowPassWord}}" placeholder="请输入密码" />
|
|
|
+ <view class="phonenum_pwd_icon" bindtap="showPwdTab">
|
|
|
+ <image src="../../image/login/account_show_pwd_icon.png" style="width:33rpx;height:22rpx;"></image>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ </view>
|
|
|
+ <!--设置密码 end-->
|
|
|
+ <!-- 按钮-->
|
|
|
+ <view>
|
|
|
+ <view class="login_btn_layout" style="margin-left: 0rpx;margin-top: 267rpx;">
|
|
|
+ <button class="login_btn" style="width: 100%; margin-left: 0rpx;">确认</button>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+</view>
|