From e05425cb40fc6ad42b88f208df3b817800fb3d1e Mon Sep 17 00:00:00 2001
From: chen-xin-zhi <3588068430@qq.com>
Date: Mon, 26 May 2025 09:46:08 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E7=AC=AC=E4=B8=80=E9=83=A8?=
=?UTF-8?q?=E5=88=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app.json | 9 +-
.../accountSetting/accountSetting.js | 66 ++++++++
.../accountSetting/accountSetting.json | 3 +
.../accountSetting/accountSetting.wxml | 49 ++++++
.../accountSetting/accountSetting.wxss | 94 ++++++++++++
.../personCenter/contactSuper/contactSuper.js | 66 ++++++++
.../contactSuper/contactSuper.json | 3 +
.../contactSuper/contactSuper.wxml | 19 +++
.../contactSuper/contactSuper.wxss | 43 ++++++
pages/personCenter/mine/mine.js | 23 ++-
pages/personCenter/mine/mine.wxml | 8 +-
pages/personCenter/withdrawal/withdrawal.js | 66 ++++++++
pages/personCenter/withdrawal/withdrawal.json | 3 +
pages/personCenter/withdrawal/withdrawal.wxml | 31 ++++
pages/personCenter/withdrawal/withdrawal.wxss | 91 +++++++++++
.../withdrawalAccount/withdrawalAccount.js | 66 ++++++++
.../withdrawalAccount/withdrawalAccount.json | 3 +
.../withdrawalAccount/withdrawalAccount.wxml | 58 +++++++
.../withdrawalAccount/withdrawalAccount.wxss | 144 ++++++++++++++++++
19 files changed, 837 insertions(+), 8 deletions(-)
create mode 100644 pages/personCenter/accountSetting/accountSetting.js
create mode 100644 pages/personCenter/accountSetting/accountSetting.json
create mode 100644 pages/personCenter/accountSetting/accountSetting.wxml
create mode 100644 pages/personCenter/accountSetting/accountSetting.wxss
create mode 100644 pages/personCenter/contactSuper/contactSuper.js
create mode 100644 pages/personCenter/contactSuper/contactSuper.json
create mode 100644 pages/personCenter/contactSuper/contactSuper.wxml
create mode 100644 pages/personCenter/contactSuper/contactSuper.wxss
create mode 100644 pages/personCenter/withdrawal/withdrawal.js
create mode 100644 pages/personCenter/withdrawal/withdrawal.json
create mode 100644 pages/personCenter/withdrawal/withdrawal.wxml
create mode 100644 pages/personCenter/withdrawal/withdrawal.wxss
create mode 100644 pages/personCenter/withdrawalAccount/withdrawalAccount.js
create mode 100644 pages/personCenter/withdrawalAccount/withdrawalAccount.json
create mode 100644 pages/personCenter/withdrawalAccount/withdrawalAccount.wxml
create mode 100644 pages/personCenter/withdrawalAccount/withdrawalAccount.wxss
diff --git a/app.json b/app.json
index d4003f8..56894fc 100644
--- a/app.json
+++ b/app.json
@@ -1,11 +1,16 @@
{
"pages": [
"pages/loginModule/pwdLogin/pwdLogin",
- "pages/projectModule/projectList/projectList",
+ "pages/test/testVideo/testVideo",
"pages/personCenter/mine/mine",
- "pages/personCenter/teamManage/teamManage",
+ "pages/personCenter/withdrawal/withdrawal",
+ "pages/personCenter/withdrawalAccount/withdrawalAccount",
+ "pages/personCenter/accountSetting/accountSetting",
+ "pages/personCenter/contactSuper/contactSuper",
"pages/personCenter/fundingDetails/fundingDetails",
+ "pages/personCenter/teamManage/teamManage",
"pages/personCenter/billingDetails/billingDetails",
+ "pages/projectModule/projectList/projectList",
"pages/projectModule/projectNotice/projectNotice",
"pages/projectModule/projectDetail/projectDetail",
"pages/loginModule/register/register",
diff --git a/pages/personCenter/accountSetting/accountSetting.js b/pages/personCenter/accountSetting/accountSetting.js
new file mode 100644
index 0000000..b64f51e
--- /dev/null
+++ b/pages/personCenter/accountSetting/accountSetting.js
@@ -0,0 +1,66 @@
+// pages/personCenter/accountSetting/accountSetting.js
+Page({
+
+ /**
+ * 页面的初始数据
+ */
+ data: {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面加载
+ */
+ onLoad(options) {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面显示
+ */
+ onShow() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload() {
+
+ },
+
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh() {
+
+ },
+
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom() {
+
+ },
+
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage() {
+
+ }
+})
\ No newline at end of file
diff --git a/pages/personCenter/accountSetting/accountSetting.json b/pages/personCenter/accountSetting/accountSetting.json
new file mode 100644
index 0000000..8835af0
--- /dev/null
+++ b/pages/personCenter/accountSetting/accountSetting.json
@@ -0,0 +1,3 @@
+{
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/pages/personCenter/accountSetting/accountSetting.wxml b/pages/personCenter/accountSetting/accountSetting.wxml
new file mode 100644
index 0000000..ed8a979
--- /dev/null
+++ b/pages/personCenter/accountSetting/accountSetting.wxml
@@ -0,0 +1,49 @@
+
+
+
+
+
+ user
+ 15888610253
+
+
+ 平台服务
+
+
+ 修改密码
+
+
+
+
+ 联系客服
+
+
+
+
+ 用户协议
+
+
+
+
+ 隐私政策
+
+
+
+
+ 退出登录
+
\ No newline at end of file
diff --git a/pages/personCenter/accountSetting/accountSetting.wxss b/pages/personCenter/accountSetting/accountSetting.wxss
new file mode 100644
index 0000000..bf599ed
--- /dev/null
+++ b/pages/personCenter/accountSetting/accountSetting.wxss
@@ -0,0 +1,94 @@
+.mt-19 {
+ margin-top: 35.63rpx;
+}
+.page {
+ padding: 0 33.75rpx 787.5rpx;
+ background-color: #f9f9f9;
+ width: 100%;
+ overflow-y: auto;
+ overflow-x: hidden;
+ height: 100%;
+}
+.group {
+ padding: 46.88rpx 0 48.75rpx;
+}
+.section {
+ padding: 30rpx 31.88rpx 28.13rpx;
+ background-color: #ffffff;
+ border-radius: 9.38rpx;
+}
+.image {
+ width: 121.88rpx;
+ height: 121.88rpx;
+}
+.group_2 {
+ margin-top: 21.84rpx;
+}
+.text {
+ color: #000000;
+ font-size: 30rpx;
+ font-family: SourceHanSansCN;
+ line-height: 17.1rpx;
+}
+.font {
+ font-size: 26.25rpx;
+ font-family: SourceHanSansCN;
+ line-height: 24.47rpx;
+ color: #000000;
+}
+.text_2 {
+ color: #787878;
+ line-height: 19.93rpx;
+}
+.font_2 {
+ font-size: 30rpx;
+ font-family: SourceHanSansCN;
+ line-height: 27.64rpx;
+}
+.text_3 {
+ color: #000000;
+ line-height: 28.16rpx;
+}
+.list {
+ background-color: #ffffff;
+ border-radius: 9.38rpx;
+}
+.list-item {
+ padding: 28.13rpx 24.38rpx 28.14rpx 24.9rpx;
+}
+.text_4 {
+ line-height: 24.52rpx;
+}
+.image_2 {
+ width: 35.63rpx;
+ height: 35.63rpx;
+}
+.section_3 {
+ margin-left: 28.13rpx;
+ margin-right: 29.96rpx;
+ background-color: #e0e0e0;
+ height: 1.88rpx;
+}
+.group_4 {
+ padding: 26.25rpx 24.38rpx 30.02rpx 25.37rpx;
+}
+.text_5 {
+ line-height: 24.6rpx;
+}
+.group_5 {
+ padding: 26.25rpx 24.38rpx 30rpx 25.22rpx;
+}
+.group_6 {
+ padding: 26.25rpx 24.38rpx 30.02rpx 26.49rpx;
+}
+.text_6 {
+ line-height: 24.3rpx;
+}
+.text-wrapper {
+ padding: 28.39rpx 0 26.47rpx;
+ background-color: #ff8d1a;
+ border-radius: 9.38rpx;
+}
+.text_7 {
+ color: #ffffff;
+}
\ No newline at end of file
diff --git a/pages/personCenter/contactSuper/contactSuper.js b/pages/personCenter/contactSuper/contactSuper.js
new file mode 100644
index 0000000..a772ff6
--- /dev/null
+++ b/pages/personCenter/contactSuper/contactSuper.js
@@ -0,0 +1,66 @@
+// pages/personCenter/contactSuper/contactSuper.js
+Page({
+
+ /**
+ * 页面的初始数据
+ */
+ data: {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面加载
+ */
+ onLoad(options) {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面显示
+ */
+ onShow() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload() {
+
+ },
+
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh() {
+
+ },
+
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom() {
+
+ },
+
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage() {
+
+ }
+})
\ No newline at end of file
diff --git a/pages/personCenter/contactSuper/contactSuper.json b/pages/personCenter/contactSuper/contactSuper.json
new file mode 100644
index 0000000..8835af0
--- /dev/null
+++ b/pages/personCenter/contactSuper/contactSuper.json
@@ -0,0 +1,3 @@
+{
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/pages/personCenter/contactSuper/contactSuper.wxml b/pages/personCenter/contactSuper/contactSuper.wxml
new file mode 100644
index 0000000..c91baea
--- /dev/null
+++ b/pages/personCenter/contactSuper/contactSuper.wxml
@@ -0,0 +1,19 @@
+
+
+
+
+ cy
+ 微信号
+ 联系电话 15123967648
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/personCenter/contactSuper/contactSuper.wxss b/pages/personCenter/contactSuper/contactSuper.wxss
new file mode 100644
index 0000000..4322b90
--- /dev/null
+++ b/pages/personCenter/contactSuper/contactSuper.wxss
@@ -0,0 +1,43 @@
+.ml-21 {
+ margin-left: 39.38rpx;
+}
+.page {
+ padding: 43.13rpx 0 1346.25rpx;
+ background-image: linear-gradient(180deg, #ff8d1a -7.3%, #ffffff00 33.5%);
+ width: 100%;
+ overflow-y: auto;
+ overflow-x: hidden;
+ height: 100%;
+}
+.section {
+ margin: 0 41.25rpx;
+ padding: 33.75rpx 30rpx 60rpx;
+ background-color: #ffead4;
+ border-radius: 14.1rpx;
+}
+.group {
+ width: 248.04rpx;
+}
+.font {
+ font-size: 26.25rpx;
+ font-family: SourceHanSansCN;
+ color: #000000;
+}
+.text {
+ line-height: 20.76rpx;
+}
+.text_2 {
+ line-height: 24.23rpx;
+}
+.text_3 {
+ line-height: 31.88rpx;
+}
+.image_2 {
+ width: 30rpx;
+ height: 30rpx;
+}
+.image {
+ margin-right: 11.25rpx;
+ width: 121.88rpx;
+ height: 121.88rpx;
+}
\ No newline at end of file
diff --git a/pages/personCenter/mine/mine.js b/pages/personCenter/mine/mine.js
index 25a0348..bb1c753 100644
--- a/pages/personCenter/mine/mine.js
+++ b/pages/personCenter/mine/mine.js
@@ -5,7 +5,7 @@ Page({
* 页面的初始数据
*/
data: {
- items: [null, null],
+ items: [null],
},
myteam(){
wx.navigateTo({
@@ -32,7 +32,26 @@ Page({
url: '/pages/tuiguangma/tuiguangma',
})
},
-
+ lxsj(){
+ wx.navigateTo({
+ url: '/pages/personCenter/contactSuper/contactSuper',
+ })
+ },
+ zhshezhi(){
+ wx.navigateTo({
+ url: '/pages/personCenter/accountSetting/accountSetting',
+ })
+ },
+ tixianzhanghu() {
+ wx.navigateTo({
+ url: '/pages/personCenter/withdrawalAccount/withdrawalAccount',
+ })
+ },
+ lijitixian() {
+ wx.navigateTo({
+ url: '/pages/personCenter/withdrawal/withdrawal',
+ })
+ },
/**
* 生命周期函数--监听页面加载
*/
diff --git a/pages/personCenter/mine/mine.wxml b/pages/personCenter/mine/mine.wxml
index 01d69d1..39576b6 100644
--- a/pages/personCenter/mine/mine.wxml
+++ b/pages/personCenter/mine/mine.wxml
@@ -35,7 +35,7 @@
当前金额:
¥5.00
-
+
资金明细
-
+
设置抽佣
-
+
-
+
+
+ 提现账户
+
+
+ 622031207006363442
+
+
+
+ 提现金额
+
+
+
+
+
+
+ 全部提现
+
+ 可提现:13.93元
+
+
+
+ 立即提现
+
+
\ No newline at end of file
diff --git a/pages/personCenter/withdrawal/withdrawal.wxss b/pages/personCenter/withdrawal/withdrawal.wxss
new file mode 100644
index 0000000..f8556b7
--- /dev/null
+++ b/pages/personCenter/withdrawal/withdrawal.wxss
@@ -0,0 +1,91 @@
+.mt-11 {
+ margin-top: 20.99rpx;
+}
+.ml-13 {
+ margin-left: 24.81rpx;
+}
+.mt-19 {
+ margin-top: 36.26rpx;
+}
+.page {
+ padding: 62.98rpx 32.44rpx 778.63rpx 34.35rpx;
+ background-image: linear-gradient(180deg, #ffa64d 0%, #f5f5f500 30.1%);
+ width: 100%;
+ overflow-y: auto;
+ overflow-x: hidden;
+ height: 100%;
+}
+.section {
+ padding: 30.61rpx 25.69rpx 38.17rpx;
+ background-color: #ffffff;
+ border-radius: 19.62rpx;
+}
+.font {
+ font-size: 30.53rpx;
+ font-family: SourceHanSansCN;
+ line-height: 28.44rpx;
+ color: #000000;
+}
+.section_2 {
+ margin-left: 6.76rpx;
+ margin-right: 6.76rpx;
+ padding: 19.08rpx 19.14rpx 19.08rpx;
+ background-color: #f8f9fe;
+ border-radius: 9.54rpx;
+}
+.image {
+ width: 57.25rpx;
+ height: 57.25rpx;
+}
+.font_2 {
+ font-size: 26.72rpx;
+ font-family: SourceHanSansCN;
+ line-height: 21.39rpx;
+ color: #000000;
+}
+.text {
+ line-height: 20.29rpx;
+}
+.section_3 {
+ margin-top: 40.08rpx;
+ padding: 37.96rpx 28.63rpx 30.06rpx;
+ background-color: #ffffff;
+ border-radius: 19.08rpx;
+}
+.text_2 {
+ line-height: 28.49rpx;
+}
+.group {
+ padding-left: 3.82rpx;
+ padding-bottom: 17.18rpx;
+ border-bottom: solid 1.91rpx #dedede;
+}
+.image_2 {
+ width: 41.98rpx;
+ height: 41.98rpx;
+}
+.text_3 {
+ color: #b0b0b0;
+ line-height: 24.92rpx;
+}
+.text_4 {
+ color: #ff8d1a;
+ font-size: 22.9rpx;
+ font-family: SourceHanSansCN;
+ line-height: 21.39rpx;
+}
+.text_5 {
+ font-size: 24.81rpx;
+ line-height: 22.88rpx;
+}
+.text-wrapper {
+ margin-top: 64.89rpx;
+ padding: 28.51rpx 0 25.19rpx;
+ background-color: #ff8d1a;
+ border-radius: 19.08rpx;
+ width: 454.2rpx;
+}
+.text_6 {
+ color: #ffffff;
+ line-height: 28.36rpx;
+}
\ No newline at end of file
diff --git a/pages/personCenter/withdrawalAccount/withdrawalAccount.js b/pages/personCenter/withdrawalAccount/withdrawalAccount.js
new file mode 100644
index 0000000..bd23c11
--- /dev/null
+++ b/pages/personCenter/withdrawalAccount/withdrawalAccount.js
@@ -0,0 +1,66 @@
+// pages/personCenter/withdrawalAccount/withdrawalAccount.js
+Page({
+
+ /**
+ * 页面的初始数据
+ */
+ data: {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面加载
+ */
+ onLoad(options) {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面显示
+ */
+ onShow() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload() {
+
+ },
+
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh() {
+
+ },
+
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom() {
+
+ },
+
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage() {
+
+ }
+})
\ No newline at end of file
diff --git a/pages/personCenter/withdrawalAccount/withdrawalAccount.json b/pages/personCenter/withdrawalAccount/withdrawalAccount.json
new file mode 100644
index 0000000..8835af0
--- /dev/null
+++ b/pages/personCenter/withdrawalAccount/withdrawalAccount.json
@@ -0,0 +1,3 @@
+{
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/pages/personCenter/withdrawalAccount/withdrawalAccount.wxml b/pages/personCenter/withdrawalAccount/withdrawalAccount.wxml
new file mode 100644
index 0000000..7b4e136
--- /dev/null
+++ b/pages/personCenter/withdrawalAccount/withdrawalAccount.wxml
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 姓名
+ 陈新知
+
+
+
+ 支付宝账号
+ 15888610253
+
+
+ 开户银行
+ 浙江省台州市中国工商银行台州蓬街支行
+
+
+ 银行卡号
+ 62220********363442
+
+
+
+
+ 修改账户
+
+
\ No newline at end of file
diff --git a/pages/personCenter/withdrawalAccount/withdrawalAccount.wxss b/pages/personCenter/withdrawalAccount/withdrawalAccount.wxss
new file mode 100644
index 0000000..add8eae
--- /dev/null
+++ b/pages/personCenter/withdrawalAccount/withdrawalAccount.wxss
@@ -0,0 +1,144 @@
+.mt-25 {
+ margin-top: 46.88rpx;
+}
+.mt-55 {
+ margin-top: 103.13rpx;
+}
+.page {
+ padding: 127.5rpx 41.25rpx 826.88rpx 56.25rpx;
+ background-color: #ffffff;
+ width: 100%;
+ overflow-y: auto;
+ overflow-x: hidden;
+ height: 100%;
+}
+.group {
+ padding-top: 11.25rpx;
+ width: 175.69rpx;
+}
+.section {
+ margin-left: 15rpx;
+ margin-top: 67.5rpx;
+ background-color: #fff7ec;
+ width: 14.4rpx;
+ height: 14.4rpx;
+}
+.image_7 {
+ margin-left: -30rpx;
+ margin-top: 97.5rpx;
+ width: 22.5rpx;
+ height: 22.5rpx;
+}
+.image_2 {
+ margin-left: 15rpx;
+ width: 108.75rpx;
+ height: 106.88rpx;
+}
+.image_4 {
+ width: 91.88rpx;
+ height: 54.38rpx;
+}
+.pos_3 {
+ position: absolute;
+ right: 20.48rpx;
+ top: 32.98rpx;
+}
+.image_3 {
+ width: 110.63rpx;
+ height: 106.88rpx;
+}
+.pos_2 {
+ position: absolute;
+ right: 6.79rpx;
+ bottom: 0;
+}
+.image_6 {
+ width: 35.63rpx;
+ height: 20.63rpx;
+}
+.pos_4 {
+ position: absolute;
+ right: 0;
+ bottom: 33.49rpx;
+}
+.image {
+ width: 163.13rpx;
+ height: 63.75rpx;
+}
+.pos {
+ position: absolute;
+ left: 7.09rpx;
+ right: 5.47rpx;
+ top: 0;
+}
+.image_5 {
+ margin-top: 33.75rpx;
+ width: 15rpx;
+ height: 15rpx;
+}
+.group_2 {
+ padding-bottom: 41.25rpx;
+ border-bottom: solid 1.88rpx #d1d1d1;
+}
+.font {
+ font-size: 26.25rpx;
+ font-family: SourceHanSansCN;
+ line-height: 24.36rpx;
+ color: #615151;
+}
+.text {
+ line-height: 24.21rpx;
+}
+.text_2 {
+ margin-right: 11.25rpx;
+ color: #000000;
+}
+.text_3 {
+ line-height: 24.49rpx;
+}
+.font_2 {
+ font-size: 26.25rpx;
+ font-family: SourceHanSansCN;
+ line-height: 19.93rpx;
+ color: #000000;
+}
+.text_4 {
+ margin-right: 7.5rpx;
+}
+.group_3 {
+ margin-right: 11.25rpx;
+ margin-top: 41.25rpx;
+ padding: 37.5rpx 0 15rpx;
+ border-top: solid 1.88rpx #d1d1d1;
+ border-bottom: solid 1.88rpx #d1d1d1;
+}
+.text_6 {
+ margin-top: 11.25rpx;
+ line-height: 24.43rpx;
+}
+.text_5 {
+ margin-right: 3.75rpx;
+ line-height: 31.88rpx;
+ width: 418.13rpx;
+}
+.group_4 {
+ padding-top: 33.75rpx;
+}
+.text_7 {
+ line-height: 24.26rpx;
+}
+.text_8 {
+ line-height: 21.24rpx;
+}
+.text-wrapper {
+ padding: 26.25rpx 0;
+ background-color: #ff8d1a;
+ border-radius: 18.75rpx;
+ width: 243.75rpx;
+}
+.text_9 {
+ color: #ffffff;
+ font-size: 30rpx;
+ font-family: SourceHanSansCN;
+ line-height: 27.94rpx;
+}
\ No newline at end of file