完成第一部分
This commit is contained in:
parent
755ad7d631
commit
e05425cb40
9
app.json
9
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",
|
||||
|
|
66
pages/personCenter/accountSetting/accountSetting.js
Normal file
66
pages/personCenter/accountSetting/accountSetting.js
Normal file
|
@ -0,0 +1,66 @@
|
|||
// pages/personCenter/accountSetting/accountSetting.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
3
pages/personCenter/accountSetting/accountSetting.json
Normal file
3
pages/personCenter/accountSetting/accountSetting.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"usingComponents": {}
|
||||
}
|
49
pages/personCenter/accountSetting/accountSetting.wxml
Normal file
49
pages/personCenter/accountSetting/accountSetting.wxml
Normal file
|
@ -0,0 +1,49 @@
|
|||
<view class="flex-col page">
|
||||
<view class="flex-col group">
|
||||
<view class="flex-row self-stretch section">
|
||||
<image
|
||||
class="self-center image"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=0366154f820ca1234f392aee462ac535.png"
|
||||
/>
|
||||
<view class="flex-col items-start flex-1 self-start group_2 ml-8">
|
||||
<text class="text">user</text>
|
||||
<text class="font text_2 mt-28">15888610253</text>
|
||||
</view>
|
||||
</view>
|
||||
<text class="self-start font_2 text_3 mt-19">平台服务</text>
|
||||
<view class="flex-col self-stretch list mt-19">
|
||||
<view class="flex-row justify-between items-center list-item">
|
||||
<text class="font text_4">修改密码</text>
|
||||
<image
|
||||
class="image_2"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=f9ca835233e2714bc2418ea181ce0f10.png"
|
||||
/>
|
||||
</view>
|
||||
<view class="section_3"></view>
|
||||
<view class="flex-row justify-between items-center group_4">
|
||||
<text class="font text_5">联系客服</text>
|
||||
<image
|
||||
class="image_2"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=f9ca835233e2714bc2418ea181ce0f10.png"
|
||||
/>
|
||||
</view>
|
||||
<view class="section_3"></view>
|
||||
<view class="flex-row justify-between items-center group_5">
|
||||
<text class="font">用户协议</text>
|
||||
<image
|
||||
class="image_2"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=f9ca835233e2714bc2418ea181ce0f10.png"
|
||||
/>
|
||||
</view>
|
||||
<view class="section_3"></view>
|
||||
<view class="flex-row justify-between items-center group_6">
|
||||
<text class="font text_6">隐私政策</text>
|
||||
<image
|
||||
class="image_2"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=f9ca835233e2714bc2418ea181ce0f10.png"
|
||||
/>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="flex-col justify-start items-center text-wrapper"><text class="font_2 text_7">退出登录</text></view>
|
||||
</view>
|
94
pages/personCenter/accountSetting/accountSetting.wxss
Normal file
94
pages/personCenter/accountSetting/accountSetting.wxss
Normal file
|
@ -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;
|
||||
}
|
66
pages/personCenter/contactSuper/contactSuper.js
Normal file
66
pages/personCenter/contactSuper/contactSuper.js
Normal file
|
@ -0,0 +1,66 @@
|
|||
// pages/personCenter/contactSuper/contactSuper.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
3
pages/personCenter/contactSuper/contactSuper.json
Normal file
3
pages/personCenter/contactSuper/contactSuper.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"usingComponents": {}
|
||||
}
|
19
pages/personCenter/contactSuper/contactSuper.wxml
Normal file
19
pages/personCenter/contactSuper/contactSuper.wxml
Normal file
|
@ -0,0 +1,19 @@
|
|||
<view class="flex-col justify-start page">
|
||||
<view class="flex-row justify-between items-center section">
|
||||
<view class="flex-row items-end">
|
||||
<view class="flex-col shrink-0 group">
|
||||
<text class="self-start font text">cy</text>
|
||||
<text class="mt-16 self-start font text_2">微信号</text>
|
||||
<text class="mt-16 self-stretch font text_3">联系电话 15123967648</text>
|
||||
</view>
|
||||
<image
|
||||
class="shrink-0 image_2 ml-21"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=7a4d8e9d3ca535fbc208a7a4a1a3d82c.png"
|
||||
/>
|
||||
</view>
|
||||
<image
|
||||
class="image"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=0366154f820ca1234f392aee462ac535.png"
|
||||
/>
|
||||
</view>
|
||||
</view>
|
43
pages/personCenter/contactSuper/contactSuper.wxss
Normal file
43
pages/personCenter/contactSuper/contactSuper.wxss
Normal file
|
@ -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;
|
||||
}
|
|
@ -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',
|
||||
})
|
||||
},
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
<text class="font_2 text_6">当前金额:</text>
|
||||
<text class="text_5">¥5.00</text>
|
||||
</view>
|
||||
<view class="flex-row items-center section_3">
|
||||
<view class="flex-row items-center section_3" bind:tap="lijitixian">
|
||||
<image
|
||||
class="image_5 image_6"
|
||||
src="/pages/personCenter/mine/image/jiantou.png"
|
||||
|
@ -72,7 +72,7 @@
|
|||
/>
|
||||
<text class="font text_11 mt-6">资金明细</text>
|
||||
</view>
|
||||
<view class="flex-col items-center group_6 group_1" >
|
||||
<view class="flex-col items-center group_6 group_1" bind:tap="tixianzhanghu">
|
||||
<image
|
||||
class="image_7"
|
||||
src="/pages/personCenter/mine/image/tixianzhanghu.png"
|
||||
|
@ -121,7 +121,7 @@
|
|||
/>
|
||||
<text class="font text_16 mt-11">设置抽佣</text>
|
||||
</view>
|
||||
<view class="flex-col items-center group_12 equal-division-item_7">
|
||||
<view class="flex-col items-center group_12 equal-division-item_7" bind:tap="lxsj">
|
||||
<image
|
||||
class="image_8"
|
||||
src="/pages/personCenter/mine/image/shangji.png"
|
||||
|
@ -133,7 +133,7 @@
|
|||
</view>
|
||||
<view class="flex-col list_2">
|
||||
<view class="flex-row justify-between items-center self-stretch group_13">
|
||||
<view class="flex-row items-center">
|
||||
<view class="flex-row items-center" bind:tap="zhshezhi">
|
||||
<image
|
||||
class="shrink-0 image_9"
|
||||
src="/pages/personCenter/mine/image/zhanghaoshezhi.png"
|
||||
|
|
66
pages/personCenter/withdrawal/withdrawal.js
Normal file
66
pages/personCenter/withdrawal/withdrawal.js
Normal file
|
@ -0,0 +1,66 @@
|
|||
// pages/personCenter/withdrawal/withdrawal.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
3
pages/personCenter/withdrawal/withdrawal.json
Normal file
3
pages/personCenter/withdrawal/withdrawal.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"usingComponents": {}
|
||||
}
|
31
pages/personCenter/withdrawal/withdrawal.wxml
Normal file
31
pages/personCenter/withdrawal/withdrawal.wxml
Normal file
|
@ -0,0 +1,31 @@
|
|||
<view class="flex-col page">
|
||||
<view class="flex-col self-stretch section">
|
||||
<text class="self-start font">提现账户</text>
|
||||
<view class="flex-row items-center self-stretch section_2 mt-11">
|
||||
<image
|
||||
class="image"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=3ac88c7198dbd67b151998279e0c3ecb.png"
|
||||
/>
|
||||
<text class="font_2 text ml-10">622031207006363442</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="flex-col self-stretch section_3">
|
||||
<text class="self-start font text_2">提现金额</text>
|
||||
<view class="flex-col self-stretch mt-30">
|
||||
<view class="flex-row justify-between items-center self-stretch group">
|
||||
<view class="flex-row items-center">
|
||||
<image
|
||||
class="shrink-0 image_2"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=3e477a46fde31cc9db53891e69d8bdc1.png"
|
||||
/>
|
||||
<input class="font_2 text_3 ml-13" placeholder="请输入金额" />
|
||||
</view>
|
||||
<text class="text_4">全部提现</text>
|
||||
</view>
|
||||
<text class="self-start font_2 text_5 mt-19">可提现:13.93元</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="flex-col justify-start items-center self-center text-wrapper">
|
||||
<text class="font text_6">立即提现</text>
|
||||
</view>
|
||||
</view>
|
91
pages/personCenter/withdrawal/withdrawal.wxss
Normal file
91
pages/personCenter/withdrawal/withdrawal.wxss
Normal file
|
@ -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;
|
||||
}
|
66
pages/personCenter/withdrawalAccount/withdrawalAccount.js
Normal file
66
pages/personCenter/withdrawalAccount/withdrawalAccount.js
Normal file
|
@ -0,0 +1,66 @@
|
|||
// pages/personCenter/withdrawalAccount/withdrawalAccount.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"usingComponents": {}
|
||||
}
|
58
pages/personCenter/withdrawalAccount/withdrawalAccount.wxml
Normal file
58
pages/personCenter/withdrawalAccount/withdrawalAccount.wxml
Normal file
|
@ -0,0 +1,58 @@
|
|||
<view class="flex-col page">
|
||||
<view class="flex-row justify-center self-stretch">
|
||||
<view class="flex-row items-start relative group">
|
||||
<view class="section"></view>
|
||||
<image
|
||||
class="image_7"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=4123c79511934758988501a4cc297d15.png"
|
||||
/>
|
||||
<image
|
||||
class="image_2"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=1e8b55848b81b18e7a0a8e2623bf7cc8.png"
|
||||
/>
|
||||
<image
|
||||
class="image_4 pos_3"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=851d86d6bee13c5dfbc4ab523b721294.png"
|
||||
/>
|
||||
<image
|
||||
class="image_3 pos_2"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=c1d1f2c9f0828c9878c7a5ac340c3372.png"
|
||||
/>
|
||||
<image
|
||||
class="image_6 pos_4"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=3b2bcbf8e15790961aff0a447a876d7d.png"
|
||||
/>
|
||||
<image
|
||||
class="image pos"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=5495cbeda5287c29de397cf80ed0c7dd.png"
|
||||
/>
|
||||
</view>
|
||||
<image
|
||||
class="ml-2 self-start image_5"
|
||||
src="https://ide.code.fun/api/image?token=682eba294ae84d00123031c1&name=bc6feae8564832b2f4494c9969f51b1e.png"
|
||||
/>
|
||||
</view>
|
||||
<view class="flex-col self-stretch mt-55">
|
||||
<view class="flex-row justify-between group_2">
|
||||
<text class="font text">姓名</text>
|
||||
<text class="font text_2">陈新知</text>
|
||||
</view>
|
||||
<view class="flex-col mt-25">
|
||||
<view class="flex-row justify-between items-center">
|
||||
<text class="font text_3">支付宝账号</text>
|
||||
<text class="font_2 text_4">15888610253</text>
|
||||
</view>
|
||||
<view class="flex-row justify-between group_3">
|
||||
<text class="self-start font text_6">开户银行</text>
|
||||
<text class="self-center font_2 text_5">浙江省台州市中国工商银行台州蓬街支行</text>
|
||||
</view>
|
||||
<view class="flex-row justify-between group_4">
|
||||
<text class="font text_7">银行卡号</text>
|
||||
<text class="font_2 text_8">62220********363442</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="flex-col justify-start items-center self-center text-wrapper mt-55">
|
||||
<text class="text_9">修改账户</text>
|
||||
</view>
|
||||
</view>
|
144
pages/personCenter/withdrawalAccount/withdrawalAccount.wxss
Normal file
144
pages/personCenter/withdrawalAccount/withdrawalAccount.wxss
Normal file
|
@ -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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user