This commit is contained in:
huangq 2021-02-24 23:07:11 +08:00
parent 6e030b548f
commit b22b232b16
69 changed files with 379 additions and 104 deletions

View File

@ -1,106 +1,155 @@
{ {
"easycom": { "easycom": {
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue" "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
}, },
"pages": [ //pageshttps://uniapp.dcloud.io/collocation/pages "pages": [ //pageshttps://uniapp.dcloud.io/collocation/pages
{ {
"path": "pages/index/index", "path": "pages/home/home",
"style": { "style": {
"navigationBarTitleText": "" "navigationBarTitleText": "首页",
} "enablePullDownRefresh": false
}, }
{ },
"path": "pages/csubstation/index", {
"style": { "path": "pages/index/index",
"navigationBarTitleText": "分站搭建" "style": {
} "navigationBarTitleText": ""
}, }
{ },
"path": "pages/csubstation/edit", {
"style": { "path": "pages/csubstation/index",
"navigationBarTitleText": "分站搭建" "style": {
} "navigationBarTitleText": "分站搭建"
}, }
{ },
"path": "pages/csubstation/complete", {
"style": { "path": "pages/csubstation/edit",
"navigationBarTitleText": "分站搭建" "style": {
} "navigationBarTitleText": "分站搭建"
} }
,{ },
"path" : "pages/login/login", {
"style" : "path": "pages/csubstation/complete",
{ "style": {
"navigationBarTitleText": "登录", "navigationBarTitleText": "分站搭建"
"enablePullDownRefresh": false }
} }, {
"path": "pages/login/login",
} "style": {
,{ "navigationBarTitleText": "登录",
"path" : "pages/login/login-main/login-main", "enablePullDownRefresh": false
"style" : }
{
"navigationBarTitleText": "登录", }, {
"enablePullDownRefresh": false "path": "pages/login/login-main/login-main",
} "style": {
"navigationBarTitleText": "登录",
} "enablePullDownRefresh": false
,{ }
"path" : "pages/login/reset-password/reset-password",
"style" : }, {
{ "path": "pages/login/reset-password/reset-password",
"navigationBarTitleText": "重置密码", "style": {
"enablePullDownRefresh": false "navigationBarTitleText": "重置密码",
} "enablePullDownRefresh": false
}
},
{ },
"path": "pages/syssetting/index", {
"style": { "path": "pages/syssetting/index",
"navigationBarTitleText": "系统设置" "style": {
} "navigationBarTitleText": "系统设置"
}, }
{ },
"path": "pages/syssetting/editname", {
"style": { "path": "pages/syssetting/editname",
"navigationBarTitleText": "系统设置" "style": {
} "navigationBarTitleText": "系统设置"
}, }
{ },
"path": "pages/info/index", {
"style": { "path": "pages/info/index",
"navigationBarTitleText": "消息通知" "style": {
} "navigationBarTitleText": "消息通知"
}, }
{ },
"path": "pages/callphone/index", {
"style": { "path": "pages/callphone/index",
"navigationBarTitleText": "联系客服" "style": {
} "navigationBarTitleText": "联系客服"
}, }
{ },
"path": "pages/extension/index", {
"style": { "path": "pages/extension/index",
"navigationBarTitleText": "我的推广" "style": {
} "navigationBarTitleText": "我的推广"
}, }
{ },
"path": "pages/request/index", {
"style": { "path": "pages/request/index",
"navigationBarTitleText": "常见问题" "style": {
} "navigationBarTitleText": "常见问题"
}, }
{ },
"path": "pages/detailed/index", {
"style": { "path": "pages/detailed/index",
"navigationBarTitleText": "收支明细" "style": {
} "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": {
"navigationBarTextStyle": "black", "navigationBarTextStyle": "black",
"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"
}]
}
} }

View File

@ -0,0 +1,19 @@
<template>
<view>
分类
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="scss">
</style>

19
pages/home/home.vue Normal file
View File

@ -0,0 +1,19 @@
<template>
<view>
首页
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="scss">
</style>

View File

@ -0,0 +1,22 @@
<template>
<view>
素材
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>

166
pages/user/user.vue Normal file
View File

@ -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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 431 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 853 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 413 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 840 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB