From 079185f6947efd0d1fb9865ace85c7126b6f291e Mon Sep 17 00:00:00 2001
From: imax <373170631@qq.com>
Date: Mon, 11 Jul 2022 22:53:38 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=B4=BB=E5=8A=A8=E6=96=87?=
=?UTF-8?q?=E6=9C=AC=E6=A1=86=E8=BE=93=E5=85=A5=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/center/center.wxml | 2 +-
pages/index/editjoin/editjoin.js | 33 +++++++++++++++++++++-----
pages/index/editjoin/editjoin.wxml | 16 +++++++++----
pages/index/editjoin/editjoin.wxss | 3 ++-
pages/index/history/history.wxml | 2 +-
pages/release/addactive/addactive.wxml | 6 ++---
project.config.json | 3 ++-
7 files changed, 47 insertions(+), 18 deletions(-)
diff --git a/pages/center/center.wxml b/pages/center/center.wxml
index c256cd4..c9ac8d7 100644
--- a/pages/center/center.wxml
+++ b/pages/center/center.wxml
@@ -55,7 +55,7 @@
提现
-
+ 提现记录
diff --git a/pages/index/editjoin/editjoin.js b/pages/index/editjoin/editjoin.js
index 5feae96..026e861 100644
--- a/pages/index/editjoin/editjoin.js
+++ b/pages/index/editjoin/editjoin.js
@@ -5,23 +5,44 @@ Page({
* 页面的初始数据
*/
data: {
-
+ data: {}
+ },
+ editCenteruserInfo(){
+ console.log(this.data.data);
},
-
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
this.setData({
data:JSON.parse(options.data)[0]
- })
- console.log(this.data.data)
-
+ })
+ },
+ phoneinput(e){
+ this.setData({
+ data: {...this.data.data, phone: e.detail.value}
+ });
+ },
+ realnameinput(e){
+ this.setData({
+ data: {...this.data.data, realname: e.detail.value}
+ });
+ },
+ idcardinput(e){
+ this.setData({
+ data: {...this.data.data, idcard: e.detail.value}
+ });
+ },
+ nicknamechange(e){
+ this.setData({
+ data: {...this.data.data, nickname: e.detail.value}
+ });
},
genderChange: function (e) {
+ console.log(e);
let gender = e.detail.value;
this.setData({
- gender: gender
+ data: {...this.data.data, gender}
});
},
/**
diff --git a/pages/index/editjoin/editjoin.wxml b/pages/index/editjoin/editjoin.wxml
index c6fa6c2..934d033 100644
--- a/pages/index/editjoin/editjoin.wxml
+++ b/pages/index/editjoin/editjoin.wxml
@@ -2,11 +2,13 @@
昵称
-
+
+
+
手机号
-
+
性别
@@ -21,12 +23,16 @@
真实姓名
-
+
+
+
身份证号
-
+
+
+
-
+ 保存
\ No newline at end of file
diff --git a/pages/index/editjoin/editjoin.wxss b/pages/index/editjoin/editjoin.wxss
index d75dcde..7521bc7 100644
--- a/pages/index/editjoin/editjoin.wxss
+++ b/pages/index/editjoin/editjoin.wxss
@@ -6,4 +6,5 @@
.content .list .inputbox{width:60%;}
.content .list .title{color:#9A9A9A;font-size:26rpx;}
.content .list .inputbox input{width:100%;text-align: right;height:40rpx;margin-top:28rpx;}
-.content .mark .title{color:#9A9A9A;font-size:26rpx;line-height:80rpx;}
\ No newline at end of file
+.content .mark .title{color:#9A9A9A;font-size:26rpx;line-height:80rpx;}
+.bottom{color:#fff;height: 80rpx;line-height:80rpx;text-align:center;width:94%;position: absolute;bottom:24rpx;left:3%;background: #f66a01;border-radius: 12rpx;}
\ No newline at end of file
diff --git a/pages/index/history/history.wxml b/pages/index/history/history.wxml
index c1aea77..724e10c 100644
--- a/pages/index/history/history.wxml
+++ b/pages/index/history/history.wxml
@@ -15,7 +15,7 @@
{{item.phone}}
-
+
diff --git a/pages/release/addactive/addactive.wxml b/pages/release/addactive/addactive.wxml
index 66ba8a8..94fecd1 100644
--- a/pages/release/addactive/addactive.wxml
+++ b/pages/release/addactive/addactive.wxml
@@ -100,8 +100,8 @@
-
-
+
+
@@ -109,7 +109,7 @@
-
+
diff --git a/project.config.json b/project.config.json
index 189fc0f..d3838ae 100644
--- a/project.config.json
+++ b/project.config.json
@@ -37,7 +37,8 @@
"packNpmManually": false,
"packNpmRelationList": [],
"minifyWXSS": true,
- "showES6CompileOption": false
+ "showES6CompileOption": false,
+ "ignoreUploadUnusedFiles": true
},
"compileType": "miniprogram",
"libVersion": "2.15.0",