Browse Source

Signed-off-by: yukangzhe <382985154@qq.com>

yukangzhe 4 years ago
parent
commit
1be1caafa6

+ 3 - 2
app.json

@@ -1,9 +1,9 @@
 {
   "plugins": {},
   "pages": [
+    "pages/myself/myself",
     "pages/teamWork/teamWork",
     "pages/forBack/forBack",
-    "pages/myself/myself",
     "pages/orderClassDetail/orderClassDetail",
     "pages/index/index",
     "pages/leaveRecord/leaveRecord",
@@ -24,7 +24,8 @@
     "pages/evaluation/evaluation",
     "pages/evaluationDetail/evaluationDetail",
     "pages/classOrder/classOrder",
-    "pages/quan/quan"
+    "pages/quan/quan",
+    "pages/editMyself/editMyself"
   ],
   "window": {
     "backgroundTextStyle": "dark",

+ 67 - 0
pages/editMyself/editMyself.js

@@ -0,0 +1,67 @@
+// pages/editMyself/editMyself.js
+Page({
+
+  /**
+   * 页面的初始数据
+   */
+  data: {
+    index: 0,
+    array:['女','男']
+  },
+
+  /**
+   * 生命周期函数--监听页面加载
+   */
+  onLoad: function (options) {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面初次渲染完成
+   */
+  onReady: function () {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面显示
+   */
+  onShow: function () {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面隐藏
+   */
+  onHide: function () {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面卸载
+   */
+  onUnload: function () {
+
+  },
+
+  /**
+   * 页面相关事件处理函数--监听用户下拉动作
+   */
+  onPullDownRefresh: function () {
+
+  },
+
+  /**
+   * 页面上拉触底事件的处理函数
+   */
+  onReachBottom: function () {
+
+  },
+
+  /**
+   * 用户点击右上角分享
+   */
+  onShareAppMessage: function () {
+
+  }
+})

+ 4 - 0
pages/editMyself/editMyself.json

@@ -0,0 +1,4 @@
+{
+  "navigationBarTitleText": "我的资料",
+  "usingComponents": {}
+}

+ 22 - 0
pages/editMyself/editMyself.wxml

@@ -0,0 +1,22 @@
+<view class="container">
+  <view class="edit-box">
+    <view class="title">头像</view>
+    <view class="headImg">
+      <image src="/images/head.png"></image>
+    </view>
+    <view class="title">姓名</view>
+    <view class="input-name">
+      <input value="刘德华"/>
+    </view>
+    <view class="title">性别</view>
+    <view class="sex-select">
+      <picker bindchange="bindPickerChange" value="{{index}}" range="{{array}}">
+          <view class="picker">
+            {{array[index]}}
+          </view>
+        </picker>
+    </view>
+    <view class="title">校区</view>
+    <view class="school-name">智慧汉阳校区</view>
+  </view>
+</view>

+ 38 - 0
pages/editMyself/editMyself.wxss

@@ -0,0 +1,38 @@
+/* pages/editMyself/editMyself.wxss */
+.container{
+  padding: 0;
+  margin: 0;
+}
+
+page{
+  background: #f1f1f1;
+}
+
+.edit-box{
+  display: flex;
+  flex-wrap: wrap;
+  justify-content: space-between;
+  padding:25rpx 25rpx 0;
+  background: #FFF;
+}
+.title{
+  width: 200rpx;
+  border-bottom: 1px solid #f2f2f2;
+  height: 100rpx;
+  line-height: 100rpx;
+}
+.headImg,.input-name,.sex-select,.school-name{
+  height: 100rpx;
+  line-height: 100rpx;
+  width: 500rpx;
+  text-align: right;
+  border-bottom: 1px solid #f2f2f2;
+  color: #999;
+}
+.input-name input{
+  height: 100rpx;
+}
+.headImg image{
+  width: 80rpx;
+  height: 80rpx;
+}

+ 2 - 2
pages/myself/myself.wxml

@@ -8,7 +8,7 @@
 			<text wx:if="{{userName}}">{{userName}}</text>
 		</view>
 		<view class="list">
-			<view class="list-item" catchtap="goNavigateTo" data-url="/pages/editInformation/editInformation">
+			<view class="list-item" catchtap="goNavigateTo" data-url="/pages/editMyself/editMyself">
 				<view class="li-left">
 					<image lazy-load mode="aspectFill" class="li-icon" src="/images/my-edit.png"></image>
 					<text>我的资料</text>
@@ -58,7 +58,7 @@
 				</view>
 				<image lazy-load mode="aspectFill" class="li-arrow" src="{{imageUrl? imageUrl+'arrow0603.png' : ''}}"></image>
 			</view>
-			<view class="list-item" catchtap="goNavigateTo" data-url="/pages/campusDistribution/campusDistribution">
+			<view class="list-item" catchtap="goNavigateTo" data-url="/pages/teamWork/teamWork">
 				<view class="li-left">
 					<image lazy-load mode="aspectFill" class="li-icon" src="/images/my-toget.png"></image>
 					<text>我要合作</text>