Browse Source

页面样式, 添加iconfont, 删除多余静态资源

feature-1.0
helming 3 years ago
parent
commit
a9ea7c03c3
  1. 5
      App.vue
  2. 11
      components/money-view/money-view.vue
  3. 139
      pages-userInfo/extends/extends.vue
  4. 2
      pages-userInfo/notice/notice.vue
  5. 38
      pages-userInfo/notice/noticeDetail.vue
  6. 41
      pages-userInfo/setting/compoSign.vue
  7. 41
      pages-userInfo/setting/secretSign.vue
  8. 121
      pages-userInfo/setting/setting.vue
  9. 239
      pages-userInfo/withdraw/withdraw.vue
  10. 69
      pages-userInfo/withdraw/withdrawDetail.vue
  11. 123
      pages-userInfo/withdraw/withdrawIndex.vue
  12. 71
      pages-userInfo/withdraw/withdrawLog.vue
  13. 47
      pages/index/index.vue
  14. 2
      pages/index/material/imgDetail.vue
  15. 4
      pages/index/upload/upload.vue
  16. 12
      pages/login/login.vue
  17. 20
      pages/profit/profit.vue
  18. 84
      pages/profit/profitEndDetails.vue
  19. 75
      pages/profit/profitEndOrder.vue
  20. 82
      pages/profit/profitInDetails.vue
  21. 81
      pages/profit/profitInOrder.vue
  22. 73
      pages/profit/profitPreDetails.vue
  23. 22
      pages/userInfo/userInfo.vue
  24. BIN
      static/active.png
  25. BIN
      static/advertIcon.png
  26. BIN
      static/aliPay.png
  27. BIN
      static/collect-select.png
  28. BIN
      static/collect.png
  29. BIN
      static/collectLength.png
  30. 20
      static/customicons.css
  31. BIN
      static/customicons.ttf
  32. BIN
      static/download-select.png
  33. BIN
      static/download.png
  34. BIN
      static/emoBack.png
  35. BIN
      static/friendBack.png
  36. BIN
      static/gifBack.png
  37. BIN
      static/headBack.png
  38. BIN
      static/hot-not.png
  39. BIN
      static/hot-yes.png
  40. 97
      static/icon/iconfont.css
  41. BIN
      static/icon/iconfont.ttf
  42. BIN
      static/iconAbout.png
  43. BIN
      static/iconContactUs.png
  44. BIN
      static/iconInvite.png
  45. BIN
      static/iconInviteLog.png
  46. BIN
      static/iconNotice.png
  47. BIN
      static/iconWithdraw.png
  48. 2
      static/img/share.svg
  49. 2
      static/img/slide-top.svg
  50. BIN
      static/img/start.gif
  51. BIN
      static/imgLength.png
  52. BIN
      static/index-default.png
  53. BIN
      static/index-select.png
  54. BIN
      static/inviteIcon.png
  55. BIN
      static/iwatchBack.png
  56. BIN
      static/jiantou-right.png
  57. BIN
      static/like-select.png
  58. BIN
      static/like.png
  59. BIN
      static/likeLength.png
  60. BIN
      static/logo.png
  61. BIN
      static/mine-default.png
  62. BIN
      static/mine-select.png
  63. BIN
      static/phoneBack.png
  64. BIN
      static/right.png
  65. BIN
      static/share.png
  66. BIN
      static/theme-default.png
  67. BIN
      static/theme-select.png
  68. BIN
      static/wxPay.png
  69. 2
      uni.scss

5
App.vue

@ -14,10 +14,11 @@
</script> </script>
<style lang="scss"> <style lang="scss">
/*iconfont*/
@import "@/static/icon/iconfont.css";
/*每个页面公共css */ /*每个页面公共css */
@import '@/uni_modules/uni-scss/index.scss'; @import '@/uni_modules/uni-scss/index.scss';
/* #ifndef APP-NVUE */
@import '@/static/customicons.css';
// //
page { page {
min-height: 100vh; min-height: 100vh;

11
components/money-view/money-view.vue

@ -43,8 +43,11 @@ export default {
hiddenValue: '******', hiddenValue: '******',
} }
}, },
created() {
this.moneyValue = this.moneyFormat(this.value, 2, ',')
},
methods: { methods: {
thousandFormat(num) { thousandFormat(num, split) {
const len = num.length const len = num.length
return len <= 3 ? num : this.thousandFormat(num.substr(0, len - 3)) + split + num.substr(len - 3, 3) return len <= 3 ? num : this.thousandFormat(num.substr(0, len - 3)) + split + num.substr(len - 3, 3)
}, },
@ -63,7 +66,7 @@ export default {
let res = 0; let res = 0;
const dotIndex = String(num).indexOf('.'); const dotIndex = String(num).indexOf('.');
if (dotIndex === -1) { // if (dotIndex === -1) { //
res = this.thousandFormat(String(num)) + '.' + '0'.repeat(decimal) res = this.thousandFormat(String(num), split) + '.' + '0'.repeat(decimal)
} else { // } else { //
// js Math.round()4556 // js Math.round()4556
// Math.round(1.5) = 2 // Math.round(1.5) = 2
@ -72,7 +75,7 @@ export default {
// decimals // decimals
const numStr = String((Math.round(num * Math.pow(10, decimal)) / Math.pow(10, decimal)).toFixed(decimal)) // 2 const numStr = String((Math.round(num * Math.pow(10, decimal)) / Math.pow(10, decimal)).toFixed(decimal)) // 2
const decimals = numStr.slice(dotIndex, dotIndex + decimal + 1) // const decimals = numStr.slice(dotIndex, dotIndex + decimal + 1) //
res = this.thousandFormat(numStr.slice(0, dotIndex)) + decimals res = this.thousandFormat(numStr.slice(0, dotIndex), split) + decimals
} }
return res return res
} }
@ -91,7 +94,7 @@ export default {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
.money-format-view { .money-format-view {
min-width: 80rpx; //min-width: 80rpx;
} }
.money-hidden { .money-hidden {

139
pages-userInfo/extends/extends.vue

@ -1,20 +1,18 @@
<template> <template>
<view class="back"> <view class="container">
<!-- <view class="back-top"></view> --> <view class="invite-comp">
<view class="uni-radius back-con uni-shadow-sm"> <view class="invite-code-div">
<view class="">
<view class="back-con-top"> 邀请码 </view> <view class="back-con-top"> 邀请码 </view>
<view class="inviteCode"> <view class="inviteCode">
{{userInfo.inviteCode}} {{userInfo.inviteCode}}
</view> </view>
</view> </view>
<view class="border"></view> <view class="border"></view>
<view class=""> <view class="invite-code-btn">
<view class="back-con-top"> 微信邀请 </view> <button class="invite-btn" @click="" open-type="share">点击邀请</button>
<button @click="" open-type="share">点击邀请</button>
</view> </view>
</view> </view>
<view class="invited-list-title">已邀请</view>
<view> <view>
<uni-list border-full v-for="(item,index) in inviteLogList" :key="index"> <uni-list border-full v-for="(item,index) in inviteLogList" :key="index">
<uni-list-item :title="item.invitedScanCode" :note="item.createTime" :thumb="item.img" thumb-size="lg" /> <uni-list-item :title="item.invitedScanCode" :note="item.createTime" :thumb="item.img" thumb-size="lg" />
@ -109,55 +107,88 @@
} }
</script> </script>
<style lang="scss"> <style lang="scss" scoped>
.back { .container {
width: 100%; width: 670rpx;
height: 320px; margin: 20rpx auto;
position: relative;
}
.back-con { .invite-comp {
width: 95%; background: $uni-bg-base-color;
left: 50%; border-radius: 20rpx;
top: 42%; padding: 40rpx;
transform: translate(-50%, -50%);
background-color: white; .invite-code-div {
position: relative;
height: 440rpx; .back-con-top {
display: flex; color: $uni-white;
flex-direction: column; font-size: 28rpx;
align-items: center; line-height: 60rpx;
justify-content: space-between; text-align: center;
} }
.back2 {
width: 100%; .inviteCode {
} color: $uni-primary;
.back-top {
width: 100%;
position: absolute;
height: 240rpx;
background: #416bdc;
}
.back-con-top {
font-size: 40rpx; font-size: 40rpx;
font-weight: 600; line-height: 80rpx;
margin: 40rpx 0 30rpx 0; text-align: center;
display: flex;
justify-content: center;
}
.border { }
width: 95%;
}
.border {
height: 2rpx; height: 2rpx;
margin-top: 19rpx; background: $uni-secondary-color;
background-color: rgb(165, 165, 165); margin-top: 40rpx;
} margin-bottom: 40rpx;
}
.ivOver{ .invite-code-btn {
width: 100%;
height:100rpx; .invite-btn {
line-height: 100rpx; color: $uni-btn-text-color;
text-align: center;
background: #fff;
font-size: 20rpx;
} }
}
}
.invited-list-title {
color: $uni-white;
font-size: 28rpx;
line-height: 60rpx;
margin-top: 20rpx;
margin-bottom: 20rpx;
}
::v-deep .uni-list {
background: $uni-bg-base-color !important;
margin-bottom: 20rpx;
border-radius: 24rpx;
overflow: hidden;
}
::v-deep .uni-list-item {
background: $uni-bg-base-color !important;
}
::v-deep .uni-list--border-top {
display: none !important;
}
::v-deep .uni-list--border-bottom {
display: none !important;
}
::v-deep .uni-list-item__content-title {
color: $uni-white !important;
}
::v-deep .uni-list-item__content-note {
color: $uni-secondary-color !important;
}
}
</style> </style>

2
pages-userInfo/notice/notice.vue

@ -117,7 +117,7 @@ page {
<style lang="scss" scoped> <style lang="scss" scoped>
.container { .container {
width: 670rpx; width: 670rpx;
margin: 0 auto; margin: 20rpx auto;
::v-deep .uni-list { ::v-deep .uni-list {
background: $uni-bg-base-color !important; background: $uni-bg-base-color !important;

38
pages-userInfo/notice/noticeDetail.vue

@ -1,5 +1,5 @@
<template> <template>
<view> <view class="notice-detail-content">
<uni-card v-bind:title="noticeDetail.title"> <uni-card v-bind:title="noticeDetail.title">
<text class="uni-body">{{noticeDetail.content}}</text></br> <text class="uni-body">{{noticeDetail.content}}</text></br>
<view class="bottom"> <view class="bottom">
@ -71,8 +71,38 @@
} }
</script> </script>
<style> <style lang="scss" scoped>
.bottom{ .notice-detail-content {
margin-top:40rpx;
::v-deep .uni-card {
min-height: calc(100vh - 80rpx);
margin: 40rpx !important;
background: $uni-bg-base-color;
border-color: $uni-bg-base-color;
padding: 0 !important;
border-radius: 20rpx !important;
}
::v-deep .uni-card__header {
height: 60rpx;
border-bottom-color: $uni-secondary-color;
}
::v-deep .uni-card__header-content-title {
color: $uni-white !important;
font-size: 28rpx !important;
}
::v-deep .uni-body {
color: $uni-secondary-color;
font-size: 24rpx;
}
.bottom{
color: $uni-secondary-color;
font-size: 24rpx;
text-align: right;
margin-top: 60rpx;
}
} }
</style> </style>

41
pages-userInfo/setting/compoSign.vue

@ -1,5 +1,5 @@
<template> <template>
<view> <view class="container">
<uni-card title="合作协议"> <uni-card title="合作协议">
<view> <view>
<text class="uni-body"> <text class="uni-body">
@ -44,10 +44,10 @@
3用户个人信息保护 3用户个人信息保护
公司与您一同致力于您个人信息即能够独立或与其他信息结合后识别用户身份的信息的保护保护用户个人信息是公司的基本原则之一在使用次元HuB及相关服务的过程中您可能需要提供您的个人信息包括但不限于姓名电话号码位置信息等以便公司向您提供更好的服务和相应的技术支持公司将运用加密技术匿名化处理等其他与次元HuB及相关服务相匹配的技术措施及其他安全措施保护您的个人信息更多关于用户个人信息保护的内容请参见 公司与您一同致力于您个人信息即能够独立或与其他信息结合后识别用户身份的信息的保护保护用户个人信息是公司的基本原则之一在使用次元HuB及相关服务的过程中您可能需要提供您的个人信息包括但不限于姓名电话号码位置信息等以便公司向您提供更好的服务和相应的技术支持公司将运用加密技术匿名化处理等其他与次元HuB及相关服务相匹配的技术措施及其他安全措施保护您的个人信息更多关于用户个人信息保护的内容请参见
</text> </text>
<navigator url="/pages-userInfo/setting/secretSign" style="color: blue;display: inline-block;">隐私协议</navigator> <navigator url="/pages-userInfo/setting/secretSign" :style="{color: primaryColor, display: 'inline-block'}">隐私协议</navigator>
</view> </view>
<view> <view>
<text> <text class="uni-body">
4权利和义务 4权利和义务
4.1 行为要求您应当对您使用本服务的行为负责除非法律允许或者经公司事先书面许可您使用本服务不得具有下列行为 4.1 行为要求您应当对您使用本服务的行为负责除非法律允许或者经公司事先书面许可您使用本服务不得具有下列行为
@ -254,7 +254,6 @@
12.5 您和公司均是独立的主体在任何情况下本协议不构成公司对用户的任何形式的明示或暗示担保或条件双方之间亦不构成代理合伙合营或雇佣关系 12.5 您和公司均是独立的主体在任何情况下本协议不构成公司对用户的任何形式的明示或暗示担保或条件双方之间亦不构成代理合伙合营或雇佣关系
更新日期2022/12/20 更新日期2022/12/20
生效日期2022/12/20 生效日期2022/12/20
</text> </text>
@ -272,6 +271,7 @@
export default { export default {
data() { data() {
return { return {
primaryColor: '#0b6375',
userInfo:{} userInfo:{}
} }
}, },
@ -300,8 +300,39 @@
} }
</script> </script>
<style lang="scss"> <style lang="scss" scoped>
.container {
::v-deep .uni-card {
min-height: calc(100vh - 80rpx);
margin: 40rpx !important;
background: $uni-bg-base-color;
border-color: $uni-bg-base-color;
border-radius: 20rpx !important;
}
::v-deep .uni-card__header {
height: 60rpx;
border-bottom-color: $uni-secondary-color;
}
::v-deep .uni-card__header-content-title {
color: $uni-white !important;
font-size: 28rpx !important;
}
::v-deep .uni-body {
color: $uni-secondary-color;
font-size: 24rpx;
}
.bottom{
color: $uni-secondary-color;
font-size: 24rpx;
text-align: right;
margin-top: 60rpx;
}
}
</style> </style>

41
pages-userInfo/setting/secretSign.vue

@ -1,33 +1,28 @@
<template> <template>
<view> <view class="container">
<uni-card title="隐私协议"> <uni-card title="隐私协议">
<text class="uni-body"> <text class="uni-body">
本指引是节点壁纸小程序开发者收集使用和存储你的信息而制定 本指引是节点壁纸小程序开发者收集使用和存储你的信息而制定
开发者收集你的用户信息用户昵称头像性别地区用于产品内个人信息展示 开发者收集你的用户信息用户昵称头像性别地区用于产品内个人信息展示
开发者收集你的相册用于保存图片 开发者收集你的相册用于保存图片
开发者对信息的存储 开发者对信息的存储
存储地点: 境内 存储地点: 境内
存储期限: 小程序停止运营后及时删除 存储期限: 小程序停止运营后及时删除
信息的使用规则 信息的使用规则
开发者将会在本指引所涵盖的用途内使用收集的信息 开发者将会在本指引所涵盖的用途内使用收集的信息
如开发者使用你的信息超出本指引目的或合理范围会及时更新本指引同时开发者在使用你的信息前再次以小程序浮窗等方式告知并征得你的明示同意 如开发者使用你的信息超出本指引目的或合理范围会及时更新本指引同时开发者在使用你的信息前再次以小程序浮窗等方式告知并征得你的明示同意
开发者承诺 开发者承诺
不会主动共享或转让你的信息至任何第三方如存在确需共享或转让时开发者应当直接或确认第三方征得你的明示同意 不会主动共享或转让你的信息至任何第三方如存在确需共享或转让时开发者应当直接或确认第三方征得你的明示同意
不会对外公开披露你的信息如必须公开披露时开发者应当向你告知公开披露的目的披露信息的类型及可能涉及的信息并征得你的明示同意开发者在使用你的信息前再次以小程序浮窗等方式告知并征得你的明示同意 不会对外公开披露你的信息如必须公开披露时开发者应当向你告知公开披露的目的披露信息的类型及可能涉及的信息并征得你的明示同意开发者在使用你的信息前再次以小程序浮窗等方式告知并征得你的明示同意
@ -36,7 +31,6 @@
邮箱:2500338766@qq.com 邮箱:2500338766@qq.com
更新日期2022/12/20 更新日期2022/12/20
生效日期2022/12/20 生效日期2022/12/20
</text></br> </text></br>
@ -81,8 +75,39 @@
} }
</script> </script>
<style lang="scss"> <style lang="scss" scoped>
.container {
::v-deep .uni-card {
min-height: calc(100vh - 80rpx);
margin: 40rpx !important;
background: $uni-bg-base-color;
border-color: $uni-bg-base-color;
border-radius: 20rpx !important;
}
::v-deep .uni-card__header {
height: 60rpx;
border-bottom-color: $uni-secondary-color;
}
::v-deep .uni-card__header-content-title {
color: $uni-white !important;
font-size: 28rpx !important;
}
::v-deep .uni-body {
color: $uni-secondary-color;
font-size: 24rpx;
}
.bottom{
color: $uni-secondary-color;
font-size: 24rpx;
text-align: right;
margin-top: 60rpx;
}
}
</style> </style>

121
pages-userInfo/setting/setting.vue

@ -1,12 +1,12 @@
<template> <template>
<view class="container"> <view class="container">
<uni-group mode="card"> <view class="foot-item-box" v-for="(item, index) in list" :index="index" :key="index" >
<uni-list> <view class="list-click-item" @click="clickItem(item)">
<uni-list-item title="艺术家合作协议" :show-extra-icon="true" :extra-icon="compoSign" link to="/pages-userInfo/setting/compoSign"></uni-list-item> <uni-icons class="listIconImage" :custom-prefix="item.iconType" :type="item.icon" size="20" :color="iconColor" ></uni-icons>
<uni-list-item title="艺术家隐私协议" :show-extra-icon="true" :extra-icon="secretSign" link to="/pages-userInfo/setting/secretSign"></uni-list-item> <div class="text uni-white">{{item.title}}</div>
<uni-list-item title="注销登录" :show-extra-icon="true" :extra-icon="logout" clickable showArrow @click="logoutUser"></uni-list-item> <uni-icons type="right" size="12" color="#ffffff" />
</uni-list> </view>
</uni-group> </view>
</view> </view>
</template> </template>
@ -17,26 +17,27 @@
export default { export default {
data() { data() {
return { return {
clearCache: { iconColor: '#0b6375',
color:'#0000ff', list: [{
size: '22', url: '/pages-userInfo/setting/compoSign',
type: 'refresh' title: '艺术家合作协议',
}, click: 'link',
compoSign: { iconType: '',
color:'#0000ff', icon: 'compose'
size: '22', }, {
type: 'compose' url: '/pages-userInfo/setting/secretSign',
}, title: '艺术家隐私协议',
secretSign: { click: 'link',
color:'#0000ff', iconType: '',
size: '22', icon: 'eye-slash'
type: 'eye-slash' }, {
}, url: 'logoutUser',
logout: { title: '注销登录',
color:'#0000ff', click: 'click',
size: '22', iconType: '',
type: 'redo' icon: 'redo'
}, }
],
userInfo:{} userInfo:{}
} }
}, },
@ -59,23 +60,6 @@
console.log('have userInfo') console.log('have userInfo')
} }
}, },
// //
// onPullDownRefresh() {
// this.pageNum = 1
// this.inviteLogList = []
// this.getInviteLog();
// uni.stopPullDownRefresh()
// },
// //
// onReachBottom() {
// if (this.inviteLogList.length > this.pageSize*this.pageNum-1) {
// this.flag = false;
// this.pageNum += 1
// this.getInviteLog();
// }else{
// this.flag = true;
// }
// },
methods: { methods: {
// //
logoutUser(){ logoutUser(){
@ -108,20 +92,53 @@
} }
} }
}); });
},
clickItem(item) {
if (item.click === 'link') {
/** 跳转指定页面*/
uni.navigateTo({
url: item.url
});
} else if (item.click === 'click') {
this[item.url]();
}
} }
} }
} }
</script> </script>
<style lang="scss"> <style lang="scss" scoped>
.ivOver{ .container {
width: 100%; width: 670rpx;
height:100rpx; margin: 20rpx auto;
line-height: 100rpx;
text-align: center; .foot-item-box {
background: #fff; width: calc(100% - 40rpx);
font-size: 20rpx; background: #1d2734;
border-radius: 20rpx;
padding: 20rpx;
margin-bottom: 20rpx;
.list-click-item {
display: flex;
align-items: center;
justify-content: space-between;
height: 60rpx;
.listIconImage{
width: 40rpx;
height: 40rpx;
} }
.text {
font-size: 24rpx;
line-height: 40rpx;
width: 500rpx;
}
}
}
}
</style> </style>

239
pages-userInfo/withdraw/withdraw.vue

@ -1,38 +1,46 @@
<template> <template>
<view class="page-bg"> <view class="page-bg">
<view class="main-container"> <view class="main-container">
<view class="tl-panel"> <view class="withdraw-input-box">
<view class="tl-font-28-29">提现金额</view> <view class="withdraw-title">提现金额</view>
<view class="input-box"> <view class="input-box">
¥ <input type="text" placeholder="输入金额" placeholder-class="pch" ¥ <input type="text" placeholder="输入金额" placeholder-class="pch"
class="input-value" @blur="checkAmt()" value="" v-model="amt"/> class="input-value" @blur="checkAmt()" value="" v-model="amt"/>
</view> </view>
<view class="tl-font-28-9b">当前余额为{{userInfo.amt}} </view> <view class="withdraw-amount">当前余额为{{userInfo.amt}} </view>
<view class="tl-font-28-9b">小贴士提现金额不少于1元 </view> <view class="withdraw-amount-tip">小贴士提现金额不少于1元 </view>
</view> </view>
<view class="tl-red tl-title-62" v-if="checkFlag == true">输入金额超过当前余额</view> <view class="error-message" v-if="checkFlag == true">输入金额超过当前余额</view>
<view class="tl-font-28-29 tl-title-60">选择提现至</view> <view class="withdraw-title tl-title-margin">选择提现至</view>
<view class="tl-panel-2 tl-flex-row"> <view class="withdraw-account-list">
<radio-group @change="radioChange"> <radio-group @change="radioChange" :style="'width: 100%'">
<label v-for="(item, index) in creatorAccountList" :key="index"> <label v-for="(item, index) in creatorAccountList" :key="index">
<view class="withdrawBox"> <view class="withdrawBox">
<view v-if="item.type == '0'"> <view class="withdrawBox-title">
<image :src="payType[0].icon" class="tl-img-76"></image> <view class="account-icon" v-if="item.type == '0'">
<uni-icons custom-prefix="iconfont" :type="payType[0].icon" size="20" :color="payType[0].color" ></uni-icons>
</view> </view>
<view v-if="item.type == '1'"> <view class="account-icon" v-if="item.type == '1'">
<image :src="payType[1].icon" class="tl-img-76"></image> <uni-icons custom-prefix="iconfont" :type="payType[1].icon" size="20" :color="payType[1].color" ></uni-icons>
</view> </view>
<view v-if="item.type == '2'"> <view class="account-icon" v-if="item.type == '2'">
<image :src="payType[2].icon" class="tl-img-76"></image> <uni-icons custom-prefix="iconfont" :type="payType[2].icon" size="20" :color="payType[2].color" ></uni-icons>
</view><!-- 0->微信 1->银行卡 2->支付宝 --> </view><!-- 0->微信 1->银行卡 2->支付宝 -->
<view class="tl-font-28-34 tl-name" v-if="item.type == '0'">{{payType[0].title}} {{item.accountNo}}</view> <view class="account-title" v-if="item.type == '0'">
<view class="tl-font-28-34 tl-name" v-if="item.type == '1'">{{payType[1].title}} {{item.accountNo}}</view> {{payType[0].title}} {{item.accountNo}}
<view class="tl-font-28-34 tl-name" v-if="item.type == '2'">{{payType[2].title}} {{item.accountNo}}</view> </view>
<view class="account-title" v-if="item.type == '1'">
{{payType[1].title}} {{item.accountNo}}
</view>
<view class="account-title" v-if="item.type == '2'">
{{payType[2].title}} {{item.accountNo}}
</view>
</view>
<view> <view>
<radio :value="JSON.stringify(item)" color="#F2C827" :checked="item.isUse === '1'" class="radioStyle"/> <radio :value="JSON.stringify(item)" color="#0b6375" :checked="item.isUse === '1'" class="radioStyle"/>
<!-- <uni-data-checkbox v-model="item" :localdata="range" @change="change"></uni-data-checkbox> --> <!-- <uni-data-checkbox v-model="item" :localdata="range" @change="change"></uni-data-checkbox> -->
</view> </view>
</view> </view>
@ -40,7 +48,7 @@
</radio-group> </radio-group>
</view> </view>
<view class="tl-footer"> <view class="tl-footer">
<button class="tl-btn-686 tl-font-28-29" @click="$noMultipleClicks(withdraw)">提现</button> <button class="withdraw-btn" @click="$noMultipleClicks(withdraw)">提现</button>
</view> </view>
</view> </view>
@ -64,18 +72,23 @@
accountNo: '', accountNo: '',
type: '', type: '',
current: 0, current: 0,
payType: [{ payType: [
icon: '/static/wxPay.png', {
icon: 'icon-weixin',
title: '微信', title: '微信',
color: '#15ba11'
}, },
{ {
icon: '/static/wxPay.png', icon: 'icon-yinhangka',
title: '银行卡', title: '银行卡',
color: '#0b6375'
}, },
{ {
icon: '/static/aliPay.png', icon: 'icon-zhifubao',
title: '支付宝', title: '支付宝',
}], color: '#027aff'
}
],
} }
}, },
created() { created() {
@ -269,60 +282,54 @@
} }
</script> </script>
<style lang="scss"> <style lang="scss" scoped>
.page-bg { .page-bg {
width: 100vw;
height: 100vh;
overflow: hidden;
background-size: 750rpx auto;
background-color: #F7F7F7;
}
.main-container { .main-container {
width: 686rpx; width: 670rpx;
margin: 0 auto; margin: 0 auto;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin-top: 36rpx; margin-top: 36rpx;
} }
.tl-panel{
width: 686rpx; }
height: 296rpx; .withdraw-input-box{
padding: 32rpx; width: 590rpx;
background: #FFFFFF; padding: 40rpx;
border-radius: 8rpx; background: $uni-bg-base-color;
border-radius: 10rpx;
} }
.tl-font-28-29{ .withdraw-title{
font-size: 28rpx; font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400; font-weight: 400;
color: #292929; color: $uni-white;
} }
.tl-font-28-9b{ .withdraw-amount{
font-size: 28rpx; font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400; font-weight: 400;
color: #9B9B9B; color: $uni-secondary-color;
margin-top: 18rpx; margin-top: 18rpx;
} }
.tl-font-32-29{ .withdraw-amount-tip{
font-size: 32rpx; font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400; font-weight: 400;
color: #292929; color: $uni-white;
margin-top: 18rpx;
} }
.input-box { .input-box {
height: 100rpx; height: 100rpx;
width: 650rpx; width: 590rpx;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
font-size: 60rpx; font-size: 60rpx;
font-family: PingFang SC;
font-weight: bold; font-weight: bold;
color: #43413C; color: $uni-white;
opacity: 1; opacity: 1;
border-bottom: 2rpx solid #E7E9EE;; border-bottom: 2rpx solid $uni-secondary-color;;
} }
.input-box .input-value { .input-box .input-value {
flex: 1 auto; flex: 1 auto;
@ -337,100 +344,24 @@
flex-wrap: wrap; flex-wrap: wrap;
text-align: center; text-align: center;
} }
.tl-panel-2{ .withdraw-account-list{
width: 686rpx; width: 590rpx;
padding: 32rpx; padding: 40rpx;
background: #FFFFFF; background: $uni-bg-base-color;
border-radius: 8rpx; border-radius: 10rpx;
}
.tl-title-60{
margin: 30rpx 0 20rpx 0;
} }
.tl-title-margin{
.tl-title-62{ margin: 20rpx 0;
margin: 25rpx 0 30rpx 0;
} }
.tl-panel-card{ .error-message{
width: 194rpx; font-size: 26rpx;
height: 136rpx;
line-height: 136rpx;
background: #F7F7F7;
border-radius: 8rpx;
}
.active{
background: #FEF5DD;
border-radius: 8rpx;
font-size: 32rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #F2C827;
}
.tl-footer{
margin-top: 120rpx;
}
.tl-btn-686{
width: 686rpx;
height: 88rpx;
line-height: 88rpx;
background: #185dff;
border-radius: 8rpx;
color:white;
}
.tl-blue{
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #2793F2;
}
.tl-img-76{
width: 76rpx;
height: 76rpx;
border-radius: 38rpx;
}
.tl-red{
font-size: 24rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400; font-weight: 400;
color: #E04646; color: #E04646;
margin: 20rpx 0 0;
} }
/*** 模态框 ***/
.tl-flex-row{
display: flex;
justify-content: space-between;
align-items: center;
}
.tl-line-down{
border-bottom: 2rpx solid #EAEAEA;
margin: 60rpx 0 20rpx 0;
padding-bottom: 30rpx;
}
.tl-line-16{
width: 748rpx;
height: 16rpx;
background: #F7F7F7;
}
.tl-font-60-02{
font-size: 60rpx;
font-family: DINAlternate-Bold, DINAlternate;
font-weight: bold;
color: #020202;
}
.tl-font-24-9b{
font-size: 24rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #9B9B9B;
}
.ml-12{
margin-left: 12rpx;
}
.tl-text{ .tl-text{
width: 450rpx; width: 450rpx;
display: -webkit-box; /*弹性伸缩盒子模型显示*/ display: -webkit-box; /*弹性伸缩盒子模型显示*/
@ -438,13 +369,39 @@
-webkit-line-clamp: 1; /*显示文本行数(这里控制多少行隐藏)*/ -webkit-line-clamp: 1; /*显示文本行数(这里控制多少行隐藏)*/
overflow: hidden; /*溢出隐藏*/ overflow: hidden; /*溢出隐藏*/
} }
.withdrawBox{ .withdrawBox{
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
margin: 40rpx 40rpx 20rpx 10rpx; margin: 20rpx 0;
.withdrawBox-title {
display: flex;
align-items: center;
line-height: 48rpx;
}
.account-icon {
height: 48rpx;
width: 48rpx;
text-align: center;
margin-right: 20rpx;
}
.account-title {
font-size: 26rpx;
color: $uni-white;
} }
.radioStyle{
margin-left: 200rpx;
} }
.tl-footer{
margin-top: 120rpx;
}
.withdraw-btn {
color: $uni-btn-text-color;
}
</style> </style>

69
pages-userInfo/withdraw/withdrawDetail.vue

@ -1,41 +1,40 @@
<template> <template>
<view> <view class="container">
<view class="back-top"></view> <view class="back-top"></view>
<uni-group mode="card" class="card"> <uni-group mode="card" class="card">
<view class="box"> <view class="box">
<text class="title">订单号:</text> <text class="title">订单号:</text>
<text>{{ withdrawDetailInfo.orderId }}</text> <text>{{ withdrawDetailInfo.orderId || '' }}</text>
</view> </view>
<view class="box" v-if="withdrawDetailInfo.channel == '2'"> <view class="box" v-if="withdrawDetailInfo.channel == '2'">
<text class="title">手机号:</text> <text class="title">手机号:</text>
<text>{{withdrawDetailInfo.phone }}</text> <text>{{withdrawDetailInfo.phone || ''}}</text>
</view> </view>
<view class="box" v-if="withdrawDetailInfo.channel == '1'"> <view class="box" v-if="withdrawDetailInfo.channel == '1'">
<text class="title">银行卡:</text> <text class="title">银行卡:</text>
<text>{{withdrawDetailInfo.bankNo }}</text> <text>{{withdrawDetailInfo.bankNo || '' }}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">提现金额:</text> <text class="title">提现金额:</text>
<text style="color: red">{{ withdrawDetailInfo.amt }}</text> <MoneyView :character="'¥'" :size="26" :value="orderDetail.profit || 0" :color="'#0b6375'"/>
</view> </view>
<view class="box"> <view class="box">
<text class="title">渠道:</text> <text class="title">渠道:</text>
<text>{{ setChannel(withdrawDetailInfo.channel) }}</text> <text>{{ setChannel(withdrawDetailInfo.channel) || ''}}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">状态:</text> <text class="title">状态:</text>
<text>{{ setStatus(withdrawDetailInfo.status) }}</text> <text>{{ setStatus(withdrawDetailInfo.status) || ''}}</text>
</view> </view>
<view class="border"></view> <view class="border"></view>
<view class="box"> <view class="box">
<text class="title">提现时间:</text> <text class="title">提现时间:</text>
<text>{{withdrawDetailInfo.createTime}}</text> <text>{{withdrawDetailInfo.createTime || ''}}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">审核理由:</text> <text class="title">审核理由:</text>
<text>{{withdrawDetailInfo.reason}}</text> <text>{{withdrawDetailInfo.reason || ''}}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">到账时间:</text> <text class="title">到账时间:</text>
@ -49,7 +48,11 @@
import { import {
getWithdrawDetails getWithdrawDetails
} from '@/api/userInfo.js' } from '@/api/userInfo.js'
import MoneyView from "@/components/money-view/money-view.vue"
export default { export default {
components: {
MoneyView
},
data() { data() {
return { return {
withdrawDetailInfo: { withdrawDetailInfo: {
@ -133,37 +136,45 @@
} }
</script> </script>
<style> <style lang="scss" scoped>
.back-top { .container {
.back-top {
width: 100%; width: 100%;
position: absolute; position: absolute;
height: 240rpx; height: 240rpx;
background: #416bdc; background: $uni-primary;
} }
.card { .card {
width: 100%; width: 100%;
position: absolute; position: absolute;
} }
.uni-group--card { ::v-deep .uni-group--card {
margin-top: 40rpx !important; margin: 40rpx !important;
} background: $uni-bg-base-color !important;
.title { padding-top: 40rpx;
border-radius: 20rpx !important;
}
.title {
color: $uni-white;
display: block; display: block;
width: 140rpx; width: 140rpx;
margin-right: 20rpx; margin-right: 20rpx;
font-weight: bold; font-size: 26rpx;
} font-weight: 600;
.box { }
.box {
display: flex; display: flex;
font-size: 24rpx;
margin-bottom: 40rpx; margin-bottom: 40rpx;
} color: $uni-secondary-color;
.card view:first-child { line-height: 26rpx;
margin-top: 20rpx; }
}
.border { .border {
width: 100%; width: 100%;
height: 2rpx; height: 2rpx;
background: rgb(229, 229, 229); background: $uni-secondary-color;
margin-bottom: 40rpx; margin-bottom: 40rpx;
}
} }
</style> </style>

123
pages-userInfo/withdraw/withdrawIndex.vue

@ -1,41 +1,51 @@
<template> <template>
<view class="container"> <view class="container">
<view class="head"> <view class="head">
<uni-icons type="medal" size="50"/> <uni-icons custom-prefix="iconfont" :type="'icon-tixian'" size="50" :color="iconColor" ></uni-icons>
<view class="box"> <view class="account-balance-title-box">
<text>钱包余额</text> <text>钱包余额</text>
</view> </view>
<view class="box"> <view class="account-balance-box"> <!-- userInfo.amt -->
<text>{{userInfo.amt}}</text> <MoneyView :character="'¥'" :value="userInfo.amt || 0" :size="60"/>
</view> </view>
<button class="withdrawBtn" size="default" :loading="loadingFlag" @click="withdraw('/pages-userInfo/withdraw/withdraw')" :disabled="checkUpload">发起提现</button> <button class="withdrawBtn" size="default" :loading="loadingFlag" @click="withdraw('/pages-userInfo/withdraw/withdraw')" :disabled="checkUpload">发起提现</button>
</view> </view>
<view class="bottom"> <view class="bottom">
<uni-group mode="card"> <view class="foot-item-box" v-for="(item, index) in list" :index="index" :key="index" >
<uni-list> <view class="list-click-item" @click="clickItem(item)">
<uni-list-item title="管理收款账户" :show-extra-icon="true" :extra-icon="wallet" link to="/pages-userInfo/creatorAccount/creatorAccount"></uni-list-item> <uni-icons class="listIconImage" :custom-prefix="item.iconType" :type="item.icon" size="20" :color="iconColor" ></uni-icons>
<uni-list-item title="提现记录" :show-extra-icon="true" :extra-icon="withlog" link to="/pages-userInfo/withdraw/withdrawLog"></uni-list-item> <div class="text uni-white">{{item.title}}</div>
</uni-list> <uni-icons type="right" size="12" color="#ffffff" />
</uni-group> </view>
</view>
</view> </view>
</view> </view>
</template> </template>
<script> <script>
export default { import MoneyView from "@/components/money-view/money-view.vue";
export default {
components: {
MoneyView
},
data() { data() {
return { return {
iconColor: '#0b6375',
userInfo: {}, userInfo: {},
wallet: { list: [{
color:'#0000ff', url: '/pages-userInfo/creatorAccount/creatorAccount',
size: '22', title: '管理收款账户',
type: 'wallet' click: 'link',
}, iconType: '',
withlog: { icon: 'wallet'
color:'#0000ff', }, {
size: '22', url: '/pages-userInfo/withdraw/withdrawLog',
type: 'compose' title: '提现记录',
click: 'link',
iconType: '',
icon: 'compose'
}, },
],
} }
}, },
@ -71,41 +81,76 @@
uni.navigateTo({ uni.navigateTo({
url: url url: url
}) })
},
clickItem(item) {
if (item.click === 'link') {
/** 跳转指定页面*/
uni.navigateTo({
url: item.url
});
} else if (item.click === 'click') {
this[item.url]();
} }
} }
} }
}
</script> </script>
<style lang="scss"> <style lang="scss" scoped>
.container{ .container{
width: 670rpx;
margin: 0 auto;
.head{ .head{
margin-bottom: 50rpx; margin-bottom: 50rpx;
text-align: center; text-align: center;
.box{
//border:1px red solid; .account-balance-title-box {
padding-bottom: 30rpx; color: $uni-white;
} font-size: 28rpx;
margin-top: 40rpx;
} }
.account-balance-box {
margin-bottom: 40rpx;
} }
.withdrawBtn{ .withdrawBtn{
width: 710rpx; color: $uni-btn-text-color;
}
}
.bottom {
.foot-item-box {
width: calc(100% - 40rpx);
background: #1d2734;
border-radius: 20rpx;
padding: 20rpx;
margin-bottom: 20rpx;
.list-click-item {
display: flex;
align-items: center;
justify-content: space-between;
height: 60rpx; height: 60rpx;
background-color: royalblue;
color: #ffffff; .listIconImage{
font-size: 30rpx; width: 40rpx;
line-height: 62rpx; height: 40rpx;
border-radius: 17rpx;
margin-top:100rpx;
} }
.uni-list-item__icon-img {
border-radius: 16rpx; .text {
font-size: 24rpx;
line-height: 40rpx;
width: 500rpx;
} }
.uni-list-item__content-title { }
font-size: 28rpx;
color: #3b4144; }
overflow: hidden; }
} }
</style> </style>

71
pages-userInfo/withdraw/withdrawLog.vue

@ -20,7 +20,7 @@
<view> <view>
{{ setChannel(item.channel) }} {{ setChannel(item.channel) }}
</view> </view>
<view style="color: #4d6aff"> <view :class="'primary-color'">
{{ setStatus(item.status)}} {{ setStatus(item.status)}}
</view> </view>
</view> </view>
@ -137,41 +137,62 @@
} }
</script> </script>
<style lang="scss"> <style lang="scss" scoped>
.uni-list-item__icon-img { .container {
border-radius: 16rpx; width: 670rpx;
} margin: 20rpx auto;
.ivOver{
width: 100%; ::v-deep .uni-list {
height:100rpx; background: $uni-bg-base-color !important;
line-height: 100rpx; margin-bottom: 20rpx;
text-align: center; border-radius: 24rpx;
background: #fff; overflow: hidden;
font-size: 20rpx; }
}
.box { ::v-deep .uni-list-item {
background: $uni-bg-base-color !important;
}
::v-deep .uni-list--border-top {
display: none !important;
}
::v-deep .uni-list--border-bottom {
display: none !important;
}
::v-deep .uni-list-item__content-title {
color: $uni-white !important;
}
::v-deep .uni-list-item__content-note {
color: $uni-secondary-color !important;
}
}
.box {
display: flex; display: flex;
padding-right: 16rpx; padding-right: 16rpx;
flex: 1; flex: 1;
color: #3b4144; color: $uni-secondary-color;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
overflow: hidden; overflow: hidden;
.primary-color {
color: $uni-primary;
} }
.box-bot { }
.box-bot {
display: flex; display: flex;
margin-top: 10rpx; margin-top: 10rpx;
} }
.box-bot view { .box-bot view {
border-radius: 6rpx; border-radius: 6rpx;
border: 2rpx solid #4d6aff; color: $uni-secondary-color;
border: 2rpx solid $uni-primary;
padding: 4rpx 10rpx; padding: 4rpx 10rpx;
margin-right: 10rpx; margin-right: 10rpx;
font-size: 24rpx; font-size: 24rpx;
} }
.uni-list-item__content-title {
font-size: 28rpx;
color: #3b4144;
overflow: hidden;
}
</style> </style>

47
pages/index/index.vue

@ -27,14 +27,16 @@
</view> </view>
<view class="foot"> <view class="foot">
<view class="foot-title">我的作品</view>
<view class="foot-div"> <view class="foot-div">
<view class="grid-item-box uni-white" v-for="(params, v) in list" :index="v" :key="v" @click="clickCategoryItem(params.typeId, v)"> <view class="grid-item-box uni-white" v-for="(params, v) in list" :index="v" :key="v" @click="clickCategoryItem(params.typeId, v)">
<!-- <uni-icons type="image" :size="30" color="#777" /> --> <!-- <uni-icons type="image" :size="30" color="#777" /> -->
<view class="icom-div"> <view class="icom-div">
<image :src="params.icon" class="listIconImage" mode="aspectFill" /> <!-- <image :src="params.icon" class="listIconImage" mode="aspectFill" />-->
<uni-icons class="listIconImage" custom-prefix="iconfont" :type="params.icon" size="30" :color="iconColor"></uni-icons>
</view> </view>
<text class="text">{{ params.text }}</text> <text class="text uni-white">{{ params.text }}</text>
<text class="text">{{ params.num }}</text> <text class="text uni-secondary-color">{{ params.num }}</text>
</view> </view>
</view> </view>
</view> </view>
@ -50,6 +52,7 @@
export default { export default {
data() { data() {
return { return {
iconColor: '#0b6375',
userInfo:{}, userInfo:{},
banner:[ banner:[
{ {
@ -84,37 +87,37 @@
typeId: 1, typeId: 1,
text: '头像', text: '头像',
num: '0', num: '0',
icon: '/static/headBack.png' icon: 'icon-touxiang'
}, },
{ {
typeId: 2, typeId: 2,
text: 'Gif动图', text: 'Gif动图',
num: '0', num: '0',
icon: '/static/gifBack.png' icon: 'icon-GIF'
}, },
{ {
typeId: 3, typeId: 3,
text: '手机壁纸', text: '手机壁纸',
num: '0', num: '0',
icon: '/static/phoneBack.png' icon: 'icon-shouji'
}, },
{ {
typeId: 4, typeId: 4,
text: '背景图', text: '背景图',
num: '0', num: '0',
icon: '/static/friendBack.png' icon: 'icon-pengyouquan'
}, },
{ {
typeId: 5, typeId: 5,
text: '表情包', text: '表情包',
num: '0', num: '0',
icon: '/static/emoBack.png' icon: 'icon-xiaolian'
}, },
{ {
typeId: 6, typeId: 6,
text: 'iwatch', text: 'iwatch',
num: '0', num: '0',
icon: '/static/iwatchBack.png' icon: 'icon-watch'
} }
] ]
}; };
@ -278,8 +281,8 @@
.container { .container {
min-height: 100vh; min-height: 100vh;
background: #141b29; background: $uni-bg-color;
border-top: 2rpx solid #141b29; border-top: 2rpx solid $uni-bg-color;
position: relative; position: relative;
.top { .top {
@ -297,7 +300,7 @@
width: 670rpx; width: 670rpx;
min-height: calc(20vh - 30rpx); min-height: calc(20vh - 30rpx);
margin: 0 auto; margin: 0 auto;
background: #1d2734; background: $uni-bg-base-color;
border-radius: 20rpx; border-radius: 20rpx;
display: flex; display: flex;
@ -327,20 +330,26 @@
} }
.foot { .foot {
//position: absolute; width: 670rpx;
//top: calc(70vh - 40rpx); margin: 0 auto;
//left: 0; border-radius: 20rpx;
//right: 0; overflow: hidden;
min-height: calc(30vh - 30rpx); min-height: calc(30vh - 30rpx);
margin-top: calc(20vh - 40rpx); margin-top: calc(20vh - 40rpx);
.foot-title {
height: 28rpx;
font-size: 32rpx;
line-height: 32rpx;
color: $uni-white;
background: $uni-primary;
padding: 20rpx 40rpx;
}
.foot-div { .foot-div {
width: 670rpx;
height: 100%; height: 100%;
padding-top: 40rpx; padding-top: 40rpx;
margin: 0 auto;
background: #1d2734; background: #1d2734;
border-radius: 20rpx;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: space-between; justify-content: space-between;

2
pages/index/material/imgDetail.vue

@ -269,6 +269,7 @@
.img-view { .img-view {
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
background: $uni-bg-base-color;
display: flex; display: flex;
align-items: center; align-items: center;
z-index: 1; z-index: 1;
@ -337,6 +338,7 @@
} }
.popup-modal { .popup-modal {
border-radius: 20rpx 20rpx 0 0;
.segmented-control { .segmented-control {
width: 654rpx; width: 654rpx;

4
pages/index/upload/upload.vue

@ -432,9 +432,9 @@
width: 654rpx; width: 654rpx;
height: 100rpx; height: 100rpx;
line-height: 100rpx; line-height: 100rpx;
background: linear-gradient(180.00deg, $uni-primary 0%, $uni-primary 100%); background: linear-gradient(180.00deg, $uni-white 0%, $uni-white 100%);
margin: 60rpx auto; margin: 60rpx auto;
color: $uni-white; color: $uni-btn-text-color;
border-radius: 20rpx; border-radius: 20rpx;
font-size: 28rpx; font-size: 28rpx;
} }

12
pages/login/login.vue

@ -209,11 +209,11 @@
} }
.l-username { .l-username {
background: #1d2734; background: $uni-bg-base-color;
} }
.l-password { .l-password {
background: #1d2734; background: $uni-bg-base-color;
} }
} }
@ -224,7 +224,7 @@
background: linear-gradient(180.00deg, rgba(255, 255, 255, 1) 0%,rgba(255, 255, 255, 1) 100%); background: linear-gradient(180.00deg, rgba(255, 255, 255, 1) 0%,rgba(255, 255, 255, 1) 100%);
border-radius: 24rpx; border-radius: 24rpx;
margin-top: 52rpx; margin-top: 52rpx;
color: #494951; color: $uni-btn-text-color;
} }
.foget-password { .foget-password {
text-align: right; text-align: right;
@ -241,16 +241,16 @@
.login-body { .login-body {
::v-deep input { ::v-deep input {
height: 96rpx; height: 96rpx;
background: #1d2734 !important; background: $uni-bg-base-color !important;
font-size: 36rpx; font-size: 36rpx;
color: rgb(150, 167, 175); color: $uni-secondary-color;
border-radius: 0 24rpx 24rpx 0; border-radius: 0 24rpx 24rpx 0;
} }
} }
.login-body { .login-body {
::v-deep .uni-easyinput__content { ::v-deep .uni-easyinput__content {
background: #1d2734 !important; background: $uni-bg-base-color !important;
border-radius: 0 24rpx 24rpx 0; border-radius: 0 24rpx 24rpx 0;
} }
} }

20
pages/profit/profit.vue

@ -361,15 +361,15 @@ export default {
.container { .container {
font-family: Franklin Gothic Medium, Arial Narrow, Arial, sans-serif; font-family: Franklin Gothic Medium, Arial Narrow, Arial, sans-serif;
min-height: 100vh; min-height: 100vh;
background: #141b29; background: $uni-bg-color;
color: #FFFFFF !important; color: $uni-white !important;
} }
.top { .top {
width: 750rpx; width: 750rpx;
height: 30vh; height: 30vh;
background: #0b6375; background: $uni-primary;
position: relative; position: relative;
.left-background-img { .left-background-img {
@ -410,7 +410,7 @@ export default {
width: 100%; width: 100%;
line-height: 90rpx; line-height: 90rpx;
display: flex; display: flex;
justify-content: space-between; //justify-content: space-between;
.income-hidden-but { .income-hidden-but {
margin-left: 30rpx; margin-left: 30rpx;
@ -431,7 +431,7 @@ export default {
.meddle { .meddle {
width: 670rpx; width: 670rpx;
margin: 40rpx auto; margin: 40rpx auto;
background: #1d2734; background: $uni-bg-base-color;
border-radius: 20rpx; border-radius: 20rpx;
overflow: hidden; overflow: hidden;
@ -441,7 +441,7 @@ export default {
height: 28rpx; height: 28rpx;
font-size: 32rpx; font-size: 32rpx;
line-height: 32rpx; line-height: 32rpx;
background: #0a6375; background: $uni-primary;
padding: 20rpx 40rpx; padding: 20rpx 40rpx;
} }
@ -503,7 +503,7 @@ export default {
} }
.active-color { .active-color {
background: #0a6375; background: $uni-primary;
} }
} }
@ -522,7 +522,7 @@ export default {
width: 20rpx; width: 20rpx;
height: 20rpx; height: 20rpx;
border-radius: 100%; border-radius: 100%;
background: #0a6375; background: $uni-primary;
margin-right: 20rpx; margin-right: 20rpx;
} }
@ -534,14 +534,14 @@ export default {
.adver-mid { .adver-mid {
font-size: 24rpx; font-size: 24rpx;
color: #909399; color: $uni-secondary-color;
} }
} }
.detail-categories-item { .detail-categories-item {
width: calc(100% - 40rpx); width: calc(100% - 40rpx);
background: #1d2734; background: $uni-bg-base-color;
border-radius: 20rpx; border-radius: 20rpx;
padding: 20rpx; padding: 20rpx;
margin-bottom: 20rpx; margin-bottom: 20rpx;

84
pages/profit/profitEndDetails.vue

@ -10,8 +10,7 @@
</view> </view>
</view> </view>
<view class="content"> <view class="content">
<view v-if="typeId === 0"> <uni-list v-if="typeId === 0"
<uni-list
border-full border-full
v-for="(item, index) in endProfitAdList" v-for="(item, index) in endProfitAdList"
:key="index" :key="index"
@ -38,7 +37,7 @@
<view> <view>
{{ setPlatform(item.platform) }} {{ setPlatform(item.platform) }}
</view> </view>
<view style="color: #4d6aff"> <view :class="item.confirmStatus != 0 ? 'primary-color' : ''">
{{ item.confirmStatus == 0 ? "待确认" : "已确认" }} {{ item.confirmStatus == 0 ? "待确认" : "已确认" }}
</view> </view>
</view> </view>
@ -47,9 +46,7 @@
</uni-list-item> </uni-list-item>
</uni-list> </uni-list>
<view class="ivOver" v-if="flagAd">-----已经到底啦-----</view> <view class="ivOver" v-if="flagAd">-----已经到底啦-----</view>
</view> <uni-list v-if="typeId === 1"
<view v-if="typeId === 1">
<uni-list
border-full border-full
v-for="(item, index) in endProfitInviteList" v-for="(item, index) in endProfitInviteList"
:key="index" :key="index"
@ -76,7 +73,7 @@
<view> <view>
{{ setPlatform(item.platform) }} {{ setPlatform(item.platform) }}
</view> </view>
<view style="color: #4d6aff"> <view :class="item.confirmStatus != 0 ? 'primary-color' : ''">
{{ item.confirmStatus == 0 ? "待确认" : "已确认" }} {{ item.confirmStatus == 0 ? "待确认" : "已确认" }}
</view> </view>
</view> </view>
@ -87,7 +84,6 @@
<view class="ivOver" v-if="flagInvite">-----已经到底啦-----</view> <view class="ivOver" v-if="flagInvite">-----已经到底啦-----</view>
</view> </view>
</view> </view>
</view>
</template> </template>
<script> <script>
@ -97,7 +93,6 @@ export default {
return { return {
items: ["广告", "邀请"], items: ["广告", "邀请"],
typeId: 0, typeId: 0,
activeColor: "#007aff",
styleType: "text", styleType: "text",
endProfitAdList: [], endProfitAdList: [],
endProfitInviteList: [], endProfitInviteList: [],
@ -313,42 +308,65 @@ page {
.content { .content {
padding-top: 88rpx; padding-top: 88rpx;
width: 670rpx;
margin: 0 auto;
::v-deep .uni-list {
background: $uni-bg-base-color !important;
margin-bottom: 20rpx;
border-radius: 24rpx;
overflow: hidden;
} }
.uni-list-item__icon-img {
border-radius: 8px; ::v-deep .uni-list-item {
} background: $uni-bg-base-color !important;
.ivOver { }
width: 100%;
height: 50px; ::v-deep .uni-list--border-top {
line-height: 50px; display: none !important;
text-align: center; }
background: #fff; ::v-deep .uni-list--border-bottom {
font-size: 20rpx; display: none !important;
} }
::v-deep .uni-list-item__container {
padding: 20rpx !important;
}
::v-deep .uni-list-item__content-title {
color: $uni-white !important;
}
::v-deep .uni-list-item__content-note {
color: $uni-secondary-color !important;
}
}
.box { .box {
display: flex; display: flex;
padding-right: 8px; padding-right: 16rpx;
flex: 1; flex: 1;
color: #3b4144; color: $uni-secondary-color;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
overflow: hidden; overflow: hidden;
.primary-color {
color: $uni-primary;
}
} }
.box-bot { .box-bot {
display: flex; display: flex;
margin-top: 5px; margin-top: 10rpx;
} }
.box-bot view { .box-bot view {
border-radius: 3px; border-radius: 6rpx;
border: 1px solid #4d6aff; color: $uni-secondary-color;
padding: 2px 5px; border: 2rpx solid $uni-primary;
margin-right: 5px; padding: 4rpx 10rpx;
font-size: 12px; margin-right: 10rpx;
} font-size: 24rpx;
.uni-list-item__content-title {
font-size: 14px;
color: #3b4144;
overflow: hidden;
} }
</style> </style>

75
pages/profit/profitEndOrder.vue

@ -1,31 +1,31 @@
<template> <template>
<view> <view class="container">
<view class="back-top"></view> <view class="back-top"></view>
<uni-group mode="card" class="card"> <uni-group mode="card" class="card">
<view class="box"> <view class="box">
<text class="title">结算单号:</text> <text class="title">结算单号:</text>
<text>{{ orderDetail.orderNo }}</text> <text>{{ orderDetail.orderNo || '' }}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">结算平台:</text> <text class="title">结算平台:</text>
<text>{{ setPlatform(orderDetail.platform) }}</text> <text>{{ setPlatform(orderDetail.platform) || '' }}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">应用:</text> <text class="title">应用:</text>
<text>{{ setAppType(orderDetail.appType) }}</text> <text>{{ setAppType(orderDetail.appType) || '' }}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">收益类型:</text> <text class="title">收益类型:</text>
<text>{{ setType(orderDetail.type) }}</text> <text>{{ setType(orderDetail.type) || '' }}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">结算收入:</text> <text class="title">结算收入:</text>
<text style="color: red">¥{{ orderDetail.profit }}</text> <MoneyView :character="'¥'" :size="26" :value="orderDetail.profit || 0" :color="'#0b6375'"/>
</view> </view>
<view class="box"> <view class="box">
<text class="title">转入时间:</text> <text class="title">转入时间:</text>
<text>{{ orderDetail.walletTime }}</text> <text>{{ orderDetail.walletTime || '' }}</text>
</view> </view>
</uni-group> </uni-group>
</view> </view>
@ -33,7 +33,11 @@
<script> <script>
import { queryFrontEndAmtDetails } from "@/api/profit.js"; import { queryFrontEndAmtDetails } from "@/api/profit.js";
import MoneyView from "@/components/money-view/money-view.vue"
export default { export default {
components: {
MoneyView
},
data() { data() {
return { return {
orderDetail: { orderDetail: {
@ -117,31 +121,48 @@ export default {
}; };
</script> </script>
<style> <style lang="scss" scoped>
.back-top { .container {
.back-top {
width: 100%; width: 100%;
position: absolute; position: absolute;
height: 120px; height: 240rpx;
background: #416bdc; background: $uni-primary;
} }
.card { .card {
width: 100%; width: 100%;
position: absolute; position: absolute;
} }
.uni-group--card { ::v-deep .uni-group--card {
margin-top: 20px !important; margin: 40rpx !important;
} background: $uni-bg-base-color !important;
.title { padding-top: 40rpx;
border-radius: 20rpx !important;
}
.title {
color: $uni-white;
display: block; display: block;
width: 70px; width: 140rpx;
margin-right: 10px; margin-right: 20rpx;
font-weight: bold; font-size: 26rpx;
} font-weight: 600;
.box { }
.box {
display: flex; display: flex;
margin-bottom: 20px; font-size: 24rpx;
} margin-bottom: 40rpx;
.card view:first-child { color: $uni-secondary-color;
margin-top: 10px; line-height: 26rpx;
}
.border {
width: 100%;
height: 2rpx;
background: $uni-secondary-color;
margin-bottom: 40rpx;
}
} }
</style> </style>

82
pages/profit/profitInDetails.vue

@ -10,8 +10,7 @@
</view> </view>
</view> </view>
<view class="content"> <view class="content">
<view v-if="typeId === 0"> <uni-list v-if="typeId === 0"
<uni-list
border-full border-full
v-for="(item, index) in inProfitAdList" v-for="(item, index) in inProfitAdList"
:key="index" :key="index"
@ -38,7 +37,7 @@
<view> <view>
{{ setPlatform(item.platform) }} {{ setPlatform(item.platform) }}
</view> </view>
<view style="color: #4d6aff"> <view :class="item.confirmStatus != 0 ? 'primary-color' : ''">
{{ item.confirmStatus == 0 ? "待确认" : "已确认" }} {{ item.confirmStatus == 0 ? "待确认" : "已确认" }}
</view> </view>
</view> </view>
@ -47,9 +46,7 @@
</uni-list-item> </uni-list-item>
</uni-list> </uni-list>
<view class="ivOver" v-if="flagAd">-----已经到底啦-----</view> <view class="ivOver" v-if="flagAd">-----已经到底啦-----</view>
</view> <uni-list v-if="typeId === 1"
<view v-if="typeId === 1">
<uni-list
border-full border-full
v-for="(item, index) in inProfitInviteList" v-for="(item, index) in inProfitInviteList"
:key="index" :key="index"
@ -76,7 +73,7 @@
<view> <view>
{{ setPlatform(item.platform) }} {{ setPlatform(item.platform) }}
</view> </view>
<view style="color: #4d6aff"> <view :class="item.confirmStatus != 0 ? 'primary-color' : ''">
{{ item.confirmStatus == 0 ? "待确认" : "已确认" }} {{ item.confirmStatus == 0 ? "待确认" : "已确认" }}
</view> </view>
</view> </view>
@ -87,7 +84,6 @@
<view class="ivOver" v-if="flagInvite">-----已经到底啦-----</view> <view class="ivOver" v-if="flagInvite">-----已经到底啦-----</view>
</view> </view>
</view> </view>
</view>
</template> </template>
<script> <script>
@ -313,42 +309,64 @@ page {
.content { .content {
padding-top: 88rpx; padding-top: 88rpx;
width: 670rpx;
margin: 0 auto;
::v-deep .uni-list {
background: $uni-bg-base-color !important;
margin-bottom: 20rpx;
border-radius: 24rpx;
overflow: hidden;
}
::v-deep .uni-list-item {
background: $uni-bg-base-color !important;
}
::v-deep .uni-list--border-top {
display: none !important;
}
::v-deep .uni-list--border-bottom {
display: none !important;
}
::v-deep .uni-list-item__container {
padding: 20rpx !important;
}
::v-deep .uni-list-item__content-title {
color: $uni-white !important;
}
::v-deep .uni-list-item__content-note {
color: $uni-secondary-color !important;
}
} }
.uni-list-item__icon-img {
border-radius: 8px;
}
.ivOver {
width: 100%;
height: 50px;
line-height: 50px;
text-align: center;
background: #fff;
font-size: 20rpx;
}
.box { .box {
display: flex; display: flex;
padding-right: 8px; padding-right: 16rpx;
flex: 1; flex: 1;
color: #3b4144; color: $uni-secondary-color;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
overflow: hidden; overflow: hidden;
.primary-color {
color: $uni-primary;
}
} }
.box-bot { .box-bot {
display: flex; display: flex;
margin-top: 5px; margin-top: 10rpx;
} }
.box-bot view { .box-bot view {
border-radius: 3px; border-radius: 6rpx;
border: 1px solid #4d6aff; color: $uni-secondary-color;
padding: 2px 5px; border: 2rpx solid $uni-primary;
margin-right: 5px; padding: 4rpx 10rpx;
font-size: 12px; margin-right: 10rpx;
} font-size: 24rpx;
.uni-list-item__content-title {
font-size: 14px;
color: #3b4144;
overflow: hidden;
} }
</style> </style>

81
pages/profit/profitInOrder.vue

@ -1,39 +1,39 @@
<template> <template>
<view> <view class="container">
<view class="back-top"></view> <view class="back-top"></view>
<uni-group mode="card" class="card"> <uni-group mode="card" class="card">
<view class="box"> <view class="box">
<text class="title">结算单号:</text> <text class="title">结算单号:</text>
<text>{{ orderDetail.orderNo }}</text> <text>{{ orderDetail.orderNo || ''}}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">结算平台:</text> <text class="title">结算平台:</text>
<text>{{ setPlatform(orderDetail.platform) }}</text> <text>{{ setPlatform(orderDetail.platform) || ''}}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">应用:</text> <text class="title">应用:</text>
<text>{{ setAppType(orderDetail.appType) }}</text> <text>{{ setAppType(orderDetail.appType) || ''}}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">收益类型:</text> <text class="title">收益类型:</text>
<text>{{ setType(orderDetail.type) }}</text> <text>{{ setType(orderDetail.type) || ''}}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">结算时间:</text> <text class="title">结算时间:</text>
<text>{{ orderDetail.createTime }}</text> <text>{{ orderDetail.createTime || ''}}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">结算收入:</text> <text class="title">结算收入:</text>
<text style="color: red">¥{{ orderDetail.profit }}</text> <MoneyView :character="'¥'" :size="26" :value="orderDetail.profit || 0" :color="'#0b6375'"/>
</view> </view>
<view class="box"> <view class="box">
<text class="title">下载次数:</text> <text class="title">下载次数:</text>
<text>{{ orderDetail.downloadNum }}</text> <text>{{ orderDetail.downloadNum || ''}}</text>
</view> </view>
<view class="border"></view> <view class="border"></view>
<view class="box"> <view class="box">
<text class="title">确认类型:</text> <text class="title">确认类型:</text>
<text>{{ setConfirmType(orderDetail.confirmType) }}</text> <text>{{ setConfirmType(orderDetail.confirmType) || ''}}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">确认时间:</text> <text class="title">确认时间:</text>
@ -52,7 +52,11 @@ import {
queryFrontInAmtDetails, queryFrontInAmtDetails,
handleUpdateConfirmType, handleUpdateConfirmType,
} from "@/api/profit.js"; } from "@/api/profit.js";
import MoneyView from "@/components/money-view/money-view.vue"
export default { export default {
components: {
MoneyView
},
data() { data() {
return { return {
orderDetail: { orderDetail: {
@ -173,38 +177,45 @@ export default {
}; };
</script> </script>
<style> <style lang="scss" scoped>
.back-top { .container {
.back-top {
width: 100%; width: 100%;
position: absolute; position: absolute;
height: 120px; height: 240rpx;
background: #416bdc; background: $uni-primary;
} }
.card { .card {
width: 100%; width: 100%;
position: absolute; position: absolute;
} }
.uni-group--card { ::v-deep .uni-group--card {
margin-top: 20px !important; margin: 40rpx !important;
} background: $uni-bg-base-color !important;
.title { padding-top: 40rpx;
border-radius: 20rpx !important;
}
.title {
color: $uni-white;
display: block; display: block;
width: 70px; width: 140rpx;
margin-right: 10px; margin-right: 20rpx;
font-weight: bold; font-size: 26rpx;
} font-weight: 600;
.box { }
.box {
display: flex; display: flex;
margin-bottom: 20px; font-size: 24rpx;
} margin-bottom: 40rpx;
.card view:first-child { color: $uni-secondary-color;
margin-top: 10px; line-height: 26rpx;
} }
.border {
.border {
width: 100%; width: 100%;
height: 1px; height: 2rpx;
background: rgb(229, 229, 229); background: $uni-secondary-color;
margin-bottom: 20px; margin-bottom: 40rpx;
}
} }
</style> </style>

73
pages/profit/profitPreDetails.vue

@ -35,7 +35,7 @@
<view> <view>
{{ setPlatform(item.platform) }} {{ setPlatform(item.platform) }}
</view> </view>
<view style="color: #4d6aff"> <view :class="item.confirmStatus != 0 ? 'primary-color' : ''">
{{ item.confirmStatus == 0 ? "待确认" : "已确认" }} {{ item.confirmStatus == 0 ? "待确认" : "已确认" }}
</view> </view>
</view> </view>
@ -70,7 +70,7 @@
<view> <view>
{{ setPlatform(item.platform) }} {{ setPlatform(item.platform) }}
</view> </view>
<view style="color: #4d6aff"> <view :class="item.confirmStatus != 0 ? 'primary-color' : ''">
{{ item.confirmStatus == 0 ? "待确认" : "已确认" }} {{ item.confirmStatus == 0 ? "待确认" : "已确认" }}
</view> </view>
</view> </view>
@ -298,43 +298,64 @@ page {
.content { .content {
padding-top: 88rpx; padding-top: 88rpx;
width: 670rpx;
margin: 0 auto;
} ::v-deep .uni-list {
background: $uni-bg-base-color !important;
margin-bottom: 20rpx;
border-radius: 24rpx;
overflow: hidden;
}
.uni-list-item__icon-img { ::v-deep .uni-list-item {
border-radius: 8px; background: $uni-bg-base-color !important;
} }
.ivOver {
width: 100%; ::v-deep .uni-list--border-top {
height: 50px; display: none !important;
line-height: 50px; }
text-align: center; ::v-deep .uni-list--border-bottom {
background: #fff; display: none !important;
font-size: 20rpx; }
::v-deep .uni-list-item__container {
padding: 20rpx !important;
}
::v-deep .uni-list-item__content-title {
color: $uni-white !important;
}
::v-deep .uni-list-item__content-note {
color: $uni-secondary-color !important;
}
} }
.box { .box {
display: flex; display: flex;
padding-right: 8px; padding-right: 16rpx;
flex: 1; flex: 1;
color: #3b4144; color: $uni-secondary-color;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
overflow: hidden; overflow: hidden;
.primary-color {
color: $uni-primary;
}
} }
.box-bot { .box-bot {
display: flex; display: flex;
margin-top: 5px; margin-top: 10rpx;
} }
.box-bot view { .box-bot view {
border-radius: 3px; border-radius: 6rpx;
border: 1px solid #4d6aff; color: $uni-secondary-color;
padding: 2px 5px; border: 2rpx solid $uni-primary;
margin-right: 5px; padding: 4rpx 10rpx;
font-size: 12px; margin-right: 10rpx;
} font-size: 24rpx;
.uni-list-item__content-title {
font-size: 14px;
color: #3b4144;
overflow: hidden;
} }
</style> </style>

22
pages/userInfo/userInfo.vue

@ -27,15 +27,16 @@
<view class="middle-item-box" v-for="(item, index) in middleList" :index="index" :key="index" :class="item.class"> <view class="middle-item-box" v-for="(item, index) in middleList" :index="index" :key="index" :class="item.class">
<view class="middle-btn-item" @click="change(item)" > <view class="middle-btn-item" @click="change(item)" >
<div class="text uni-white">{{item.title}}</div> <div class="text uni-white">{{item.title}}</div>
<image :src="item.img" class="listIconImage" :mode="'aspectFill'" /> <!-- <image :src="item.img" class="listIconImage" :mode="'aspectFill'" />-->
<uni-icons class="listIconImage" custom-prefix="iconfont" :type="item.icon" size="70" :color="iconColor" ></uni-icons>
</view> </view>
</view> </view>
</view> </view>
<view class="foot"> <view class="foot">
<view class="foot-item-box" v-for="(item, index) in list" :index="index" :key="index" > <view class="foot-item-box" v-for="(item, index) in list" :index="index" :key="index" >
<view class="list-click-item" @click="change(item)"> <view class="list-click-item" @click="change(item)">
<!-- <uni-icons type="image" :size="30" color="#777" /> --> <uni-icons class="listIconImage" custom-prefix="iconfont" :type="item.icon" size="20" :color="iconColor" ></uni-icons>
<image :src="item.img" class="listIconImage" :mode="'aspectFill'" /> <!-- <image :src="item.img" class="listIconImage" :mode="'aspectFill'" />-->
<div class="text uni-white">{{item.title}}</div> <div class="text uni-white">{{item.title}}</div>
<uni-icons type="right" size="12" color="#ffffff" /> <uni-icons type="right" size="12" color="#ffffff" />
</view> </view>
@ -51,35 +52,36 @@
export default { export default {
data() { data() {
return { return {
iconColor: '#0b6375',
middleList: [ middleList: [
{ {
url: '/pages-userInfo/extends/extends', url: '/pages-userInfo/extends/extends',
title: '邀请他人', title: '邀请他人',
img: '/static/iconInvite.png', icon: 'icon-yaoqingtuiguang',
class: 'meddle-invite' class: 'meddle-invite'
}, { }, {
url: '/pages-userInfo/withdraw/withdrawIndex', url: '/pages-userInfo/withdraw/withdrawIndex',
title: '提现记录', title: '提现记录',
img: '/static/iconWithdraw.png', icon: 'icon-tixianjilu',
class: 'meddle-withdraw' class: 'meddle-withdraw'
} }
], ],
list: [{ list: [{
url: '/pages-userInfo/about/about', url: '/pages-userInfo/about/about',
title: '常见问题', title: '常见问题',
img: '/static/iconAbout.png' icon: 'icon-wenti'
}, { }, {
url: '/pages-userInfo/contact/contact', url: '/pages-userInfo/contact/contact',
title: '联系我们', title: '联系我们',
img: '/static/iconContactUs.png' icon: 'icon-zhifeiji'
}, { }, {
url: '/pages-userInfo/notice/notice', url: '/pages-userInfo/notice/notice',
title: '通知公告', title: '通知公告',
img: '/static/iconNotice.png' icon: 'icon-tongzhigonggao'
},{ },{
url: '/pages-userInfo/setting/setting', url: '/pages-userInfo/setting/setting',
title: '系统设置', title: '系统设置',
img: '/static/iconInviteLog.png' icon: 'icon-xitongshezhi'
}], }],
pageUrl: '', pageUrl: '',
userInfo: { userInfo: {
@ -154,7 +156,7 @@ page {
.container { .container {
font-family: Franklin Gothic Medium, Arial Narrow, Arial, sans-serif; font-family: Franklin Gothic Medium, Arial Narrow, Arial, sans-serif;
min-height: 100vh; min-height: 100vh;
background: #141b29; background: $uni-bg-color;
} }

BIN
static/active.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

BIN
static/advertIcon.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 36 KiB

BIN
static/aliPay.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 223 KiB

BIN
static/collect-select.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

BIN
static/collect.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

BIN
static/collectLength.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

20
static/customicons.css

@ -1,20 +0,0 @@
@font-face {
font-family: "customicons"; /* Project id 2878519 */
src:url('/static/customicons.ttf') format('truetype');
}
.customicons {
font-family: "customicons" !important;
}
.youxi:before {
content: "\e60e";
}
.wenjian:before {
content: "\e60f";
}
.zhuanfa:before {
content: "\e610";
}

BIN
static/customicons.ttf

Binary file not shown.

BIN
static/download-select.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

BIN
static/download.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

BIN
static/emoBack.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

BIN
static/friendBack.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

BIN
static/gifBack.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

BIN
static/headBack.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

BIN
static/hot-not.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

BIN
static/hot-yes.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

97
static/icon/iconfont.css

@ -0,0 +1,97 @@
@font-face {
font-family: "iconfont"; /* Project id 3930567 */
src: url('/static/icon/iconfont.ttf?t=1677942061552') format('truetype');
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-yinhangka:before {
content: "\e63b";
}
.icon-yinlian:before {
content: "\e61f";
}
.icon-tixian:before {
content: "\e603";
}
.icon-zhifubao:before {
content: "\e634";
}
.icon-weixin:before {
content: "\e63a";
}
.icon-shouji:before {
content: "\e8b9";
}
.icon-touxiang:before {
content: "\e69a";
}
.icon-xiaolian:before {
content: "\e64f";
}
.icon-pengyouquan:before {
content: "\e682";
}
.icon-GIF:before {
content: "\e686";
}
.icon-watch:before {
content: "\e699";
}
.icon-tixianjilu:before {
content: "\e6bb";
}
.icon-yaoqingtuiguang:before {
content: "\e601";
}
.icon-wenti:before {
content: "\e600";
}
.icon-dengpao:before {
content: "\e6cf";
}
.icon-zhifeiji:before {
content: "\e6a0";
}
.icon-xitongshezhi:before {
content: "\e667";
}
.icon-tongzhigonggao:before {
content: "\e602";
}
.icon-renminbi:before {
content: "\e621";
}
.icon-yonghu:before {
content: "\e624";
}
.icon-shouye:before {
content: "\e639";
}

BIN
static/icon/iconfont.ttf

Binary file not shown.

BIN
static/iconAbout.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

BIN
static/iconContactUs.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

BIN
static/iconInvite.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

BIN
static/iconInviteLog.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.5 KiB

BIN
static/iconNotice.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

BIN
static/iconWithdraw.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

2
static/img/share.svg

@ -1,2 +0,0 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1652699648832" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4781" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M833.493333 842.666667H201.173333A43.413333 43.413333 0 0 1 160 797.333333v-485.333333A43.413333 43.413333 0 0 1 201.173333 266.666667h91.84a10.666667 10.666667 0 0 1 0 21.333333h-91.84A22.293333 22.293333 0 0 0 181.333333 312v485.333333A22.293333 22.293333 0 0 0 201.173333 821.333333h632.32A22.293333 22.293333 0 0 0 853.333333 797.333333V508.48a10.666667 10.666667 0 0 1 21.333334 0v288.853333A43.413333 43.413333 0 0 1 833.493333 842.666667z" fill="#ffffff" p-id="4782"></path><path d="M330.666667 640a10.666667 10.666667 0 0 1-10.666667-10.666667 362.666667 362.666667 0 0 1 362.666667-362.666666h141.12L709.333333 201.28a10.666667 10.666667 0 1 1 10.666667-18.56l149.333333 85.333333A10.666667 10.666667 0 0 1 864 288H682.666667a341.333333 341.333333 0 0 0-341.333334 341.333333 10.666667 10.666667 0 0 1-10.666666 10.666667z" fill="#ffffff" p-id="4783"></path></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

2
static/img/slide-top.svg

@ -1,2 +0,0 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1652526355166" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8351" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M533.333333 512L341.333333 704l29.866667 29.866667 162.133333-162.133334 162.133334 162.133334 29.866666-29.866667-192-192z m0-256L341.333333 448l29.866667 29.866667 162.133333-162.133334 162.133334 162.133334 29.866666-29.866667L533.333333 256z" fill="#444444" p-id="8352"></path></svg>

Before

Width:  |  Height:  |  Size: 979 B

BIN
static/img/start.gif

Binary file not shown.

Before

Width:  |  Height:  |  Size: 966 KiB

BIN
static/imgLength.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

BIN
static/index-default.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
static/index-select.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

BIN
static/inviteIcon.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 763 KiB

After

Width:  |  Height:  |  Size: 30 KiB

BIN
static/iwatchBack.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 997 B

BIN
static/jiantou-right.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

BIN
static/like-select.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

BIN
static/like.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

BIN
static/likeLength.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

BIN
static/logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
static/mine-default.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

BIN
static/mine-select.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

BIN
static/phoneBack.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

BIN
static/right.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

BIN
static/share.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

BIN
static/theme-default.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

BIN
static/theme-select.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

BIN
static/wxPay.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

2
uni.scss

@ -30,6 +30,8 @@ $uni-base-color: #6a6a6a; // 常规文字
$uni-secondary-color: #909399; // 次要文字 $uni-secondary-color: #909399; // 次要文字
$uni-extra-color: #c7c7c7; // 辅助说明 $uni-extra-color: #c7c7c7; // 辅助说明
$uni-btn-text-color: #494951;
// 边框颜色 // 边框颜色
$uni-border-1: #F0F0F0; $uni-border-1: #F0F0F0;
$uni-border-2: #EDEDED; $uni-border-2: #EDEDED;

Loading…
Cancel
Save