79
pages.json
|
|
@ -3,6 +3,13 @@
|
||||||
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
|
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
|
||||||
},
|
},
|
||||||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||||||
|
{
|
||||||
|
"path": "pages/home/home",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "首页",
|
||||||
|
"enablePullDownRefresh": false
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"path": "pages/index/index",
|
"path": "pages/index/index",
|
||||||
"style": {
|
"style": {
|
||||||
|
|
@ -26,29 +33,23 @@
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "分站搭建"
|
"navigationBarTitleText": "分站搭建"
|
||||||
}
|
}
|
||||||
}
|
}, {
|
||||||
,{
|
"path": "pages/login/login",
|
||||||
"path" : "pages/login/login",
|
"style": {
|
||||||
"style" :
|
|
||||||
{
|
|
||||||
"navigationBarTitleText": "登录",
|
"navigationBarTitleText": "登录",
|
||||||
"enablePullDownRefresh": false
|
"enablePullDownRefresh": false
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}, {
|
||||||
,{
|
"path": "pages/login/login-main/login-main",
|
||||||
"path" : "pages/login/login-main/login-main",
|
"style": {
|
||||||
"style" :
|
|
||||||
{
|
|
||||||
"navigationBarTitleText": "登录",
|
"navigationBarTitleText": "登录",
|
||||||
"enablePullDownRefresh": false
|
"enablePullDownRefresh": false
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}, {
|
||||||
,{
|
"path": "pages/login/reset-password/reset-password",
|
||||||
"path" : "pages/login/reset-password/reset-password",
|
"style": {
|
||||||
"style" :
|
|
||||||
{
|
|
||||||
"navigationBarTitleText": "重置密码",
|
"navigationBarTitleText": "重置密码",
|
||||||
"enablePullDownRefresh": false
|
"enablePullDownRefresh": false
|
||||||
}
|
}
|
||||||
|
|
@ -95,6 +96,27 @@
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "收支明细"
|
"navigationBarTitleText": "收支明细"
|
||||||
}
|
}
|
||||||
|
}, {
|
||||||
|
"path": "pages/classification/classification",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "分类",
|
||||||
|
"enablePullDownRefresh": false
|
||||||
|
}
|
||||||
|
|
||||||
|
}, {
|
||||||
|
"path": "pages/source-material/source-material",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "发现素材",
|
||||||
|
"enablePullDownRefresh": false
|
||||||
|
}
|
||||||
|
|
||||||
|
}, {
|
||||||
|
"path": "pages/user/user",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "我的",
|
||||||
|
"enablePullDownRefresh": false
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"globalStyle": {
|
"globalStyle": {
|
||||||
|
|
@ -102,5 +124,32 @@
|
||||||
"navigationBarTitleText": "uni-app",
|
"navigationBarTitleText": "uni-app",
|
||||||
"navigationBarBackgroundColor": "#F8F8F8",
|
"navigationBarBackgroundColor": "#F8F8F8",
|
||||||
"backgroundColor": "#F8F8F8"
|
"backgroundColor": "#F8F8F8"
|
||||||
|
},
|
||||||
|
"tabBar": {
|
||||||
|
"color": "#7A7E83",
|
||||||
|
"selectedColor": "#3cc51f",
|
||||||
|
"borderStyle": "black",
|
||||||
|
"backgroundColor": "#ffffff",
|
||||||
|
"list": [{
|
||||||
|
"pagePath": "pages/home/home",
|
||||||
|
"text": "首页",
|
||||||
|
"iconPath": "static/img/tab-bar/sy_icon_sy.png",
|
||||||
|
"selectedIconPath": "static/img/tab-bar/sy_icon_syh.png"
|
||||||
|
}, {
|
||||||
|
"pagePath": "pages/classification/classification",
|
||||||
|
"text": "分类",
|
||||||
|
"iconPath": "static/img/tab-bar/sy_icon_fl.png",
|
||||||
|
"selectedIconPath": "static/img/tab-bar/sy_icon_flh.png"
|
||||||
|
}, {
|
||||||
|
"iconPath": "./static/img/tab-bar/sy_icon_sc.png",
|
||||||
|
"selectedIconPath": "static/img/tab-bar/sy_icon_sch.png",
|
||||||
|
"text": "发现素材",
|
||||||
|
"pagePath": "pages/source-material/source-material"
|
||||||
|
}, {
|
||||||
|
"iconPath": "static/img/tab-bar/sy_icon_wd.png",
|
||||||
|
"selectedIconPath": "static/img/tab-bar/sy_icon_sch(1).png",
|
||||||
|
"text": "我的",
|
||||||
|
"pagePath": "pages/user/user"
|
||||||
|
}]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
分类
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
首页
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
素材
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
@ -0,0 +1,166 @@
|
||||||
|
<template>
|
||||||
|
<view class="user_container">
|
||||||
|
<!-- 用户信息 -->
|
||||||
|
<view class="user_info">
|
||||||
|
<view class="user_logo"></view>
|
||||||
|
<view class="user_text">
|
||||||
|
<view class="user_name">
|
||||||
|
<text>于慈航</text>
|
||||||
|
<view class="code_card">VIP1</view>
|
||||||
|
</view>
|
||||||
|
<view class="tel_number">
|
||||||
|
<text>手机号:</text>
|
||||||
|
<text>17722701181</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<!-- 金额信息 -->
|
||||||
|
<view class="amount_info">
|
||||||
|
<view class="top">
|
||||||
|
<view class="left">
|
||||||
|
当前余额:<text>2333</text>
|
||||||
|
</view>
|
||||||
|
<view class="actions">
|
||||||
|
<text>充值</text>
|
||||||
|
<text>立刻提现</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="bottom">
|
||||||
|
<view class="child">
|
||||||
|
<text>累计收益</text>
|
||||||
|
<text>123445</text>
|
||||||
|
</view>
|
||||||
|
<view class="child">
|
||||||
|
<text>今日预估</text>
|
||||||
|
<text>11111</text>
|
||||||
|
</view>
|
||||||
|
<view class="child">
|
||||||
|
<text>昨日收入</text>
|
||||||
|
<text>222</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.user_container {
|
||||||
|
color: #FFFFFF;
|
||||||
|
padding: 0 20rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user_info {
|
||||||
|
margin-top: 40rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
|
||||||
|
.user_logo {
|
||||||
|
height: 120rpx;
|
||||||
|
width: 120rpx;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user_text {
|
||||||
|
font-size: 28rpx;
|
||||||
|
line-height: 1;
|
||||||
|
flex: 1;
|
||||||
|
margin-left: 30rpx;
|
||||||
|
align-self: center;
|
||||||
|
|
||||||
|
.code_card {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tel_number {
|
||||||
|
margin-top: 10rpx;
|
||||||
|
color: #C4CBE4;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.amount_info {
|
||||||
|
height: 230rpx;
|
||||||
|
border-radius: 17rpx;
|
||||||
|
background-color: #2B3062;
|
||||||
|
margin-top: 40rpx;
|
||||||
|
|
||||||
|
.top {
|
||||||
|
border-radius: 17rpx 17rpx 0px 0px;
|
||||||
|
height: 80rpx;
|
||||||
|
align-items: center;
|
||||||
|
background-color: #F7D8B2;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
|
||||||
|
.left {
|
||||||
|
margin-left: 40rpx;
|
||||||
|
font-size: 26rpx;
|
||||||
|
color: #272727;
|
||||||
|
|
||||||
|
text {
|
||||||
|
margin-left: 20rpx;
|
||||||
|
font-size: 38rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.actions{
|
||||||
|
margin-right: 40rpx;
|
||||||
|
width: 228rpx;
|
||||||
|
height: 50rpx;
|
||||||
|
background: #D8D8D8 linear-gradient(143deg, #EF6F5F 0%, #FB2636 100%);
|
||||||
|
border-radius: 25rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
text{
|
||||||
|
position: relative;
|
||||||
|
padding:0 10rpx;
|
||||||
|
&:first-child::after{
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
right: -2px;
|
||||||
|
top: 2px;
|
||||||
|
bottom: 2px;
|
||||||
|
width: 4rpx;
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.bottom{
|
||||||
|
height: 150rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
align-items: center;
|
||||||
|
line-height: 1;
|
||||||
|
.child{
|
||||||
|
color: #C4CBE4;
|
||||||
|
display: flex;
|
||||||
|
font-size: 22rpx;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
text{
|
||||||
|
&:last-child{
|
||||||
|
margin-top: 10rpx;
|
||||||
|
line-height: 50rpx;
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-size: 36rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
After Width: | Height: | Size: 431 B |
|
After Width: | Height: | Size: 853 B |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 9.3 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 634 B |
|
After Width: | Height: | Size: 8.8 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 6.7 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 8.4 KiB |
|
After Width: | Height: | Size: 8.4 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 83 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 413 B |
|
After Width: | Height: | Size: 840 B |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 3.8 KiB |