周排行榜底部踩点
This commit is contained in:
12
pages.json
12
pages.json
@@ -469,12 +469,12 @@
|
||||
"pagePath": "pages/store/index",
|
||||
"text": "DT商城"
|
||||
},
|
||||
// {
|
||||
// "iconPath": "static/tabBar/tabBar_02.png",
|
||||
// "selectedIconPath": "static/tabBar/tabBar_show_02.png",
|
||||
// "pagePath": "pages/chat/index",
|
||||
// "text": "DT圈子"
|
||||
// },
|
||||
{
|
||||
"iconPath": "static/tabBar/tabBar_05.png",
|
||||
"selectedIconPath": "static/tabBar/tabBar_show_05.png",
|
||||
"pagePath": "pages/rank/index",
|
||||
"text": "周排行榜"
|
||||
},
|
||||
{
|
||||
"iconPath": "static/tabBar/tabBar_03.png",
|
||||
"selectedIconPath": "static/tabBar/tabBar_show_03.png",
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<view class="title">我的角色</view>
|
||||
<view class="nickname">{{nickname}}</view>
|
||||
</view>
|
||||
<view class="capacity-block-glf">{{identityText}}:{{base}}GLF/h</view>
|
||||
<view class="capacity-block-glf ">{{identityText}}:{{base}}GLF/h</view>
|
||||
</view>
|
||||
<view class="capacity-block">
|
||||
<view class="capacity-block-title">
|
||||
@@ -15,7 +15,7 @@
|
||||
<view class="capacity-block-glf">{{group.capacity}}GLF/h</view>
|
||||
<!-- <view class="more" @click="onInvitation">邀请更多好友</view> -->
|
||||
</view>
|
||||
<view class="capacity-block-table">
|
||||
<view class="capacity-block-table pt30">
|
||||
<view class="header">
|
||||
<view class="flex-item">家族成员产率</view>
|
||||
</view>
|
||||
@@ -44,18 +44,25 @@
|
||||
</view>
|
||||
<view class="capacity-block">
|
||||
<view class="capacity-block-title">
|
||||
<view class="title">共建产率<text>0GLF/h</text></view>
|
||||
<view class="subtitle">-/-</view>
|
||||
<view class="title">共建产率<text>{{build.capacity}}GLF/h</text></view>
|
||||
<view class="subtitle">{{build.current}}/{{build.max}}</view>
|
||||
</view>
|
||||
<view class="capacity-block-text">产品当前设置共建者每日可以通过看广告获得共建值(暂未开放,敬请期待)</view>
|
||||
<view class="capacity-block-text ">产品当前设置共建者每日可以通过看广告获得共建值</view>
|
||||
</view>
|
||||
<view class="capacity-block">
|
||||
<view class="capacity-block-title">
|
||||
<view class="title">共力值产率<text>0GLF/h</text></view>
|
||||
<view class="subtitle">-/-</view>
|
||||
<view class="title">共力值产率<text>{{together.capacity}}GLF/h</text></view>
|
||||
<view class="subtitle">{{together.current}}/{{together.max}}</view>
|
||||
</view>
|
||||
<view class="capacity-block-text">根据正常用户的使用在平台的使用习惯,购物等行为产生对应共力值(暂未开放,敬请期待)</view>
|
||||
<view class="capacity-block-text ">根据正常用户的使用在平台的使用习惯,购物等行为产生对应共力值(暂未开放,敬请期待)</view>
|
||||
</view>
|
||||
<view class="capacity-block" v-for="(item,index) in other" :keys='index'>
|
||||
<view class="capacity-block-title">
|
||||
<view class="title">{{item.title}}</view>
|
||||
<view class="capacity-block-glf">{{item.capacity}}GLF/h</view>
|
||||
</view>
|
||||
<view class="capacity-block-text " v-if="item.remark">{{item.remark}}</view>
|
||||
</view>
|
||||
<view class="capacity-hint">
|
||||
PS产品设置每100个共力值或共建值可以加速5%的角色产率;
|
||||
</view>
|
||||
@@ -91,13 +98,14 @@
|
||||
novip_count : '-',
|
||||
vip_text : '-',
|
||||
novip_text : '-',
|
||||
}
|
||||
},
|
||||
build:{},
|
||||
together:{},
|
||||
other:{}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
uni.showLoading({
|
||||
title: '加载中...'
|
||||
})
|
||||
uni.showLoading({})
|
||||
glz().then(res => {
|
||||
this.nickname = res.nickname
|
||||
this.identityText = res.identity_text
|
||||
@@ -106,6 +114,9 @@
|
||||
this.group = res.group
|
||||
this.recommend = res.recommend
|
||||
this.partner = res.partner
|
||||
this.build = res.build
|
||||
this.together = res.together
|
||||
this.other = res.other
|
||||
uni.setNavigationBarTitle({
|
||||
title: res.glz + 'GLF'
|
||||
})
|
||||
@@ -158,11 +169,11 @@
|
||||
&-glf{
|
||||
color: $main-color;
|
||||
font-size: 30rpx;
|
||||
// padding-top: 30rpx;
|
||||
}
|
||||
&-title{
|
||||
font-weight: bold;
|
||||
font-size: 34rpx;
|
||||
padding-bottom: 30rpx;
|
||||
line-height: 60rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
@@ -197,10 +208,12 @@
|
||||
font-size: 28rpx;
|
||||
color: gray;
|
||||
line-height: 40rpx;
|
||||
padding-top: 30rpx;
|
||||
}
|
||||
&-table{
|
||||
border:solid 1px $border-color;
|
||||
margin-bottom: 20rpx;
|
||||
padding-top: 30rpx;
|
||||
&:last-child{
|
||||
margin-top: 0;
|
||||
}
|
||||
@@ -229,5 +242,8 @@
|
||||
|
||||
}
|
||||
}
|
||||
.pt30{
|
||||
padding-top: 30rpx;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -48,21 +48,13 @@
|
||||
<image src="../../static/img/house_back.jpg" mode="aspectFill"></image>
|
||||
</view>
|
||||
<view class="life-flex-item both">
|
||||
<!-- <view class="both-item team" @click="onToast('共力文娱暂未开放尽情期待')">
|
||||
<view class="both-item team" @click="onToast('共力文娱暂未开放尽情期待')">
|
||||
<view class="team-content">
|
||||
<view class="team-title">共力文娱</view>
|
||||
<view class="team-subtitle">文娱短视频近期开放</view>
|
||||
</view>
|
||||
<image src="../../static/img/text_back.jpg" mode="aspectFill"></image>
|
||||
</view> -->
|
||||
<view class="both-item team" @click="goRank">
|
||||
<view class="team-content">
|
||||
<view class="team-title">共力排行</view>
|
||||
<view class="team-subtitle">推动全体成员共同富裕!</view>
|
||||
</view>
|
||||
<image src="../../static/img/text_back.jpg" mode="aspectFill"></image>
|
||||
</view>
|
||||
|
||||
<view class="both-item team" @click="onNav({name: 'Team'}, '')">
|
||||
<view class="team-content">
|
||||
<view class="team-title">共力团队</view>
|
||||
@@ -260,11 +252,6 @@
|
||||
icon : 'none'
|
||||
})
|
||||
},
|
||||
goRank(){
|
||||
uni.navigateTo({
|
||||
url:'pages/rank/index',
|
||||
})
|
||||
}
|
||||
},
|
||||
onHide() {
|
||||
try{
|
||||
|
||||
@@ -13,9 +13,9 @@
|
||||
</view>
|
||||
|
||||
<view class="rank_type">
|
||||
<view :class="['rank_type_item',type === '1'?'rank_type_item_active':'']" @click="changeType('1')">周加成榜
|
||||
<view :class="['rank_type_item',type === '1'?'rank_type_item_active':'']" @click="changeType('1')"> 上周加成榜
|
||||
</view>
|
||||
<view :class="['rank_type_item',type === '2'?'rank_type_item_active':'']" @click="changeType('2')">周推荐榜
|
||||
<view :class="['rank_type_item',type === '2'?'rank_type_item_active':'']" @click="changeType('2')">本周推荐榜
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -118,7 +118,6 @@
|
||||
urlRequest = week
|
||||
}
|
||||
urlRequest().then(res => {
|
||||
console.log(res)
|
||||
this.lists = [];
|
||||
this.lists = res.rand;
|
||||
this.page_id = res.page_id;
|
||||
|
||||
BIN
static/.DS_Store
vendored
BIN
static/.DS_Store
vendored
Binary file not shown.
BIN
static/tabBar/tabBar_05.png
Normal file
BIN
static/tabBar/tabBar_05.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.5 KiB |
BIN
static/tabBar/tabBar_show_05.png
Normal file
BIN
static/tabBar/tabBar_show_05.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 631 B |
File diff suppressed because one or more lines are too long
667
unpackage/dist/dev/app-plus/app-service.js
vendored
667
unpackage/dist/dev/app-plus/app-service.js
vendored
File diff suppressed because one or more lines are too long
83
unpackage/dist/dev/app-plus/app-view.js
vendored
83
unpackage/dist/dev/app-plus/app-view.js
vendored
@@ -1738,12 +1738,12 @@ var render = function() {
|
||||
_c(
|
||||
"v-uni-view",
|
||||
{ staticClass: _vm._$g(36, "sc"), attrs: { _i: 36 } },
|
||||
[_vm._v("共力排行")]
|
||||
[_vm._v("共力文娱")]
|
||||
),
|
||||
_c(
|
||||
"v-uni-view",
|
||||
{ staticClass: _vm._$g(37, "sc"), attrs: { _i: 37 } },
|
||||
[_vm._v("推动全体成员共同富裕!")]
|
||||
[_vm._v("文娱短视频近期开放")]
|
||||
)
|
||||
],
|
||||
1
|
||||
@@ -2170,7 +2170,7 @@ if(false) {}
|
||||
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/runtime/api.js */ 10);
|
||||
exports = ___CSS_LOADER_API_IMPORT___(false);
|
||||
// Module
|
||||
exports.push([module.i, "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/* 气泡漂浮 */\n.number-float[data-v-5c2ab254]{\n\t-webkit-animation: 4s octfloat-data-v-5c2ab254 infinite;\n\t animation: 4s octfloat-data-v-5c2ab254 infinite;\n}\n@-webkit-keyframes octfloat-data-v-5c2ab254{\n0%{\n\t\tmargin-top: 0;\n}\n50%{\n\t\tmargin-top: 15rpx;\n}\n100%{\n\t\tmargin-top: 0;\n}\n}\n@keyframes octfloat-data-v-5c2ab254{\n0%{\n\t\tmargin-top: 0;\n}\n50%{\n\t\tmargin-top: 15rpx;\n}\n100%{\n\t\tmargin-top: 0;\n}\n}\n", ""]);
|
||||
exports.push([module.i, "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/* 气泡漂浮 */\n.number-float[data-v-5c2ab254]{\n\t-webkit-animation: 4s octfloat-data-v-5c2ab254 infinite;\n\t animation: 4s octfloat-data-v-5c2ab254 infinite;\n}\n@-webkit-keyframes octfloat-data-v-5c2ab254{\n0%{\n\t\tmargin-top: 0;\n}\n50%{\n\t\tmargin-top: 15rpx;\n}\n100%{\n\t\tmargin-top: 0;\n}\n}\n@keyframes octfloat-data-v-5c2ab254{\n0%{\n\t\tmargin-top: 0;\n}\n50%{\n\t\tmargin-top: 15rpx;\n}\n100%{\n\t\tmargin-top: 0;\n}\n}\n", ""]);
|
||||
// Exports
|
||||
module.exports = exports;
|
||||
|
||||
@@ -24135,14 +24135,16 @@ var render = function() {
|
||||
{ staticClass: _vm._$g(33, "sc"), attrs: { _i: 33 } },
|
||||
[
|
||||
_vm._v("共建产率"),
|
||||
_c("v-uni-text", { attrs: { _i: 34 } }, [_vm._v("0GLF/h")])
|
||||
_c("v-uni-text", { attrs: { _i: 34 } }, [
|
||||
_vm._v(_vm._$g(34, "t0-0") + "GLF/h")
|
||||
])
|
||||
],
|
||||
1
|
||||
),
|
||||
_c(
|
||||
"v-uni-view",
|
||||
{ staticClass: _vm._$g(35, "sc"), attrs: { _i: 35 } },
|
||||
[_vm._v("-/-")]
|
||||
[_vm._v(_vm._$g(35, "t0-0") + "/" + _vm._$g(35, "t0-1"))]
|
||||
)
|
||||
],
|
||||
1
|
||||
@@ -24150,11 +24152,7 @@ var render = function() {
|
||||
_c(
|
||||
"v-uni-view",
|
||||
{ staticClass: _vm._$g(36, "sc"), attrs: { _i: 36 } },
|
||||
[
|
||||
_vm._v(
|
||||
"产品当前设置共建者每日可以通过看广告获得共建值(暂未开放,敬请期待)"
|
||||
)
|
||||
]
|
||||
[_vm._v("产品当前设置共建者每日可以通过看广告获得共建值")]
|
||||
)
|
||||
],
|
||||
1
|
||||
@@ -24172,14 +24170,16 @@ var render = function() {
|
||||
{ staticClass: _vm._$g(39, "sc"), attrs: { _i: 39 } },
|
||||
[
|
||||
_vm._v("共力值产率"),
|
||||
_c("v-uni-text", { attrs: { _i: 40 } }, [_vm._v("0GLF/h")])
|
||||
_c("v-uni-text", { attrs: { _i: 40 } }, [
|
||||
_vm._v(_vm._$g(40, "t0-0") + "GLF/h")
|
||||
])
|
||||
],
|
||||
1
|
||||
),
|
||||
_c(
|
||||
"v-uni-view",
|
||||
{ staticClass: _vm._$g(41, "sc"), attrs: { _i: 41 } },
|
||||
[_vm._v("-/-")]
|
||||
[_vm._v(_vm._$g(41, "t0-0") + "/" + _vm._$g(41, "t0-1"))]
|
||||
)
|
||||
],
|
||||
1
|
||||
@@ -24196,11 +24196,60 @@ var render = function() {
|
||||
],
|
||||
1
|
||||
),
|
||||
_c("v-uni-view", { staticClass: _vm._$g(43, "sc"), attrs: { _i: 43 } }, [
|
||||
_vm._l(_vm._$g(43, "f"), function(item, index, $20, $30) {
|
||||
return _c(
|
||||
"v-uni-view",
|
||||
{
|
||||
key: item,
|
||||
staticClass: _vm._$g("43-" + $30, "sc"),
|
||||
attrs: { keys: _vm._$g("43-" + $30, "a-keys"), _i: "43-" + $30 }
|
||||
},
|
||||
[
|
||||
_c(
|
||||
"v-uni-view",
|
||||
{
|
||||
staticClass: _vm._$g("44-" + $30, "sc"),
|
||||
attrs: { _i: "44-" + $30 }
|
||||
},
|
||||
[
|
||||
_c(
|
||||
"v-uni-view",
|
||||
{
|
||||
staticClass: _vm._$g("45-" + $30, "sc"),
|
||||
attrs: { _i: "45-" + $30 }
|
||||
},
|
||||
[_vm._v(_vm._$g("45-" + $30, "t0-0"))]
|
||||
),
|
||||
_c(
|
||||
"v-uni-view",
|
||||
{
|
||||
staticClass: _vm._$g("46-" + $30, "sc"),
|
||||
attrs: { _i: "46-" + $30 }
|
||||
},
|
||||
[_vm._v(_vm._$g("46-" + $30, "t0-0") + "GLF/h")]
|
||||
)
|
||||
],
|
||||
1
|
||||
),
|
||||
_vm._$g("47-" + $30, "i")
|
||||
? _c(
|
||||
"v-uni-view",
|
||||
{
|
||||
staticClass: _vm._$g("47-" + $30, "sc"),
|
||||
attrs: { _i: "47-" + $30 }
|
||||
},
|
||||
[_vm._v(_vm._$g("47-" + $30, "t0-0"))]
|
||||
)
|
||||
: _vm._e()
|
||||
],
|
||||
1
|
||||
)
|
||||
}),
|
||||
_c("v-uni-view", { staticClass: _vm._$g(48, "sc"), attrs: { _i: 48 } }, [
|
||||
_vm._v("PS产品设置每100个共力值或共建值可以加速5%的角色产率;")
|
||||
])
|
||||
],
|
||||
1
|
||||
2
|
||||
)
|
||||
}
|
||||
var recyclableRender = false
|
||||
@@ -24291,7 +24340,7 @@ if(false) {}
|
||||
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/runtime/api.js */ 10);
|
||||
exports = ___CSS_LOADER_API_IMPORT___(false);
|
||||
// Module
|
||||
exports.push([module.i, "@charset \"UTF-8\";\n/**\n * 这里是uni-app内置的常用样式变量\n *\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\n *\n */\n/**\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\n *\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\n */\n/**\n * Web唐明明\n * 匆匆数载恍如梦,岁月迢迢华发增。\n * 碌碌无为枉半生,一朝惊醒万事空。\n */\n.ios-bottom {\n padding-bottom: env(safe-area-inset-bottom);\n padding-bottom: constant(safe-area-inset-bottom);\n}\n.ios-left {\n padding-left: env(safe-area-inset-left);\n padding-left: constant(safe-area-inset-left);\n}\n.ios-right {\n padding-right: env(safe-area-inset-right);\n padding-right: constant(safe-area-inset-right);\n}\n.ios-top {\n padding-top: var(--status-bar-height);\n}\n.vertical {\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-box-pack: center;\n}\n.nowrap {\n max-width: 100%;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.ellipsis {\n max-width: 100%;\n display: -webkit-box;\n overflow: hidden;\n text-overflow: ellipsis;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 2;\n}\n/* 颜色变量 */\n/* 行为相关颜色 */\n/* 文字基本颜色 */\n/* 背景颜色 */\n/* 边框颜色 */\n/* 尺寸变量 */\n/* 文字尺寸 */\n/* 图片尺寸 */\n/* Border Radius */\n/* 水平间距 */\n/* 垂直间距 */\n/* 透明度 */\n/* 文章场景相关 */\n.capacity {\n background: #F3F6FB;\n min-height: 100vh;\n padding: 30rpx;\n box-sizing: border-box;\n}\n.capacity-hint {\n font-size: 26rpx;\n color: gray;\n line-height: 40rpx;\n padding: 30rpx 0;\n}\n.capacity-title {\n font-size: 38rpx;\n font-weight: bold;\n line-height: 60rpx;\n}\n.capacity-title uni-text {\n margin-left: 10rpx;\n color: #34CE98;\n}\n.capacity-sbutitle {\n font-size: 26rpx;\n line-height: 40rpx;\n}\n.capacity-block {\n background: white;\n margin-top: 30rpx;\n border-radius: 20rpx;\n padding: 30rpx;\n}\n.capacity-block-glf {\n color: #34CE98;\n font-size: 30rpx;\n}\n.capacity-block-title {\n font-weight: bold;\n font-size: 34rpx;\n padding-bottom: 30rpx;\n line-height: 60rpx;\n display: flex;\n justify-content: space-between;\n}\n.capacity-block-title .title uni-text {\n color: #34CE98;\n font-weight: normal;\n padding-left: 10rpx;\n}\n.capacity-block-title .more {\n background: #34CE98;\n color: white;\n font-weight: bold;\n font-size: 28rpx;\n border-radius: 25rpx;\n line-height: 60rpx;\n width: 230rpx;\n text-align: center;\n}\n.capacity-block-title .subtitle {\n font-weight: normal;\n font-size: 24rpx;\n color: #34CE98;\n}\n.capacity-block-title .nickname {\n color: gray;\n font-size: 30rpx;\n}\n.capacity-block-text {\n font-size: 28rpx;\n color: gray;\n line-height: 40rpx;\n}\n.capacity-block-table {\n border: solid 1px #f5f5f5;\n margin-bottom: 20rpx;\n}\n.capacity-block-table:last-child {\n margin-top: 0;\n}\n.capacity-block-table .header {\n background: #f5f5f5;\n line-height: 50rpx;\n padding: 0 15rpx;\n font-size: 26rpx;\n color: gray;\n}\n.capacity-block-table .flex {\n display: flex;\n border-top: solid 1rpx #f5f5f5;\n color: gray;\n}\n.capacity-block-table .flex .flex-item {\n width: 50%;\n box-sizing: border-box;\n line-height: 50rpx;\n padding: 0 15rpx;\n font-size: 24rpx;\n}\n.capacity-block-table .flex .flex-item:first-child {\n border-right: solid 1rpx #f5f5f5;\n}\n", ""]);
|
||||
exports.push([module.i, "@charset \"UTF-8\";\n/**\n * 这里是uni-app内置的常用样式变量\n *\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\n *\n */\n/**\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\n *\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\n */\n/**\n * Web唐明明\n * 匆匆数载恍如梦,岁月迢迢华发增。\n * 碌碌无为枉半生,一朝惊醒万事空。\n */\n.ios-bottom {\n padding-bottom: env(safe-area-inset-bottom);\n padding-bottom: constant(safe-area-inset-bottom);\n}\n.ios-left {\n padding-left: env(safe-area-inset-left);\n padding-left: constant(safe-area-inset-left);\n}\n.ios-right {\n padding-right: env(safe-area-inset-right);\n padding-right: constant(safe-area-inset-right);\n}\n.ios-top {\n padding-top: var(--status-bar-height);\n}\n.vertical {\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-box-pack: center;\n}\n.nowrap {\n max-width: 100%;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.ellipsis {\n max-width: 100%;\n display: -webkit-box;\n overflow: hidden;\n text-overflow: ellipsis;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 2;\n}\n/* 颜色变量 */\n/* 行为相关颜色 */\n/* 文字基本颜色 */\n/* 背景颜色 */\n/* 边框颜色 */\n/* 尺寸变量 */\n/* 文字尺寸 */\n/* 图片尺寸 */\n/* Border Radius */\n/* 水平间距 */\n/* 垂直间距 */\n/* 透明度 */\n/* 文章场景相关 */\n.capacity {\n background: #F3F6FB;\n min-height: 100vh;\n padding: 30rpx;\n box-sizing: border-box;\n}\n.capacity-hint {\n font-size: 26rpx;\n color: gray;\n line-height: 40rpx;\n padding: 30rpx 0;\n}\n.capacity-title {\n font-size: 38rpx;\n font-weight: bold;\n line-height: 60rpx;\n}\n.capacity-title uni-text {\n margin-left: 10rpx;\n color: #34CE98;\n}\n.capacity-sbutitle {\n font-size: 26rpx;\n line-height: 40rpx;\n}\n.capacity-block {\n background: white;\n margin-top: 30rpx;\n border-radius: 20rpx;\n padding: 30rpx;\n}\n.capacity-block-glf {\n color: #34CE98;\n font-size: 30rpx;\n}\n.capacity-block-title {\n font-weight: bold;\n font-size: 34rpx;\n line-height: 60rpx;\n display: flex;\n justify-content: space-between;\n}\n.capacity-block-title .title uni-text {\n color: #34CE98;\n font-weight: normal;\n padding-left: 10rpx;\n}\n.capacity-block-title .more {\n background: #34CE98;\n color: white;\n font-weight: bold;\n font-size: 28rpx;\n border-radius: 25rpx;\n line-height: 60rpx;\n width: 230rpx;\n text-align: center;\n}\n.capacity-block-title .subtitle {\n font-weight: normal;\n font-size: 24rpx;\n color: #34CE98;\n}\n.capacity-block-title .nickname {\n color: gray;\n font-size: 30rpx;\n}\n.capacity-block-text {\n font-size: 28rpx;\n color: gray;\n line-height: 40rpx;\n padding-top: 30rpx;\n}\n.capacity-block-table {\n border: solid 1px #f5f5f5;\n margin-bottom: 20rpx;\n padding-top: 30rpx;\n}\n.capacity-block-table:last-child {\n margin-top: 0;\n}\n.capacity-block-table .header {\n background: #f5f5f5;\n line-height: 50rpx;\n padding: 0 15rpx;\n font-size: 26rpx;\n color: gray;\n}\n.capacity-block-table .flex {\n display: flex;\n border-top: solid 1rpx #f5f5f5;\n color: gray;\n}\n.capacity-block-table .flex .flex-item {\n width: 50%;\n box-sizing: border-box;\n line-height: 50rpx;\n padding: 0 15rpx;\n font-size: 24rpx;\n}\n.capacity-block-table .flex .flex-item:first-child {\n border-right: solid 1rpx #f5f5f5;\n}\n.capacity .pt30 {\n padding-top: 30rpx;\n}\n", ""]);
|
||||
// Exports
|
||||
module.exports = exports;
|
||||
|
||||
@@ -26786,7 +26835,7 @@ var render = function() {
|
||||
}
|
||||
}
|
||||
},
|
||||
[_vm._v("周加成榜")]
|
||||
[_vm._v("上周加成榜")]
|
||||
),
|
||||
_c(
|
||||
"v-uni-view",
|
||||
@@ -26799,7 +26848,7 @@ var render = function() {
|
||||
}
|
||||
}
|
||||
},
|
||||
[_vm._v("周推荐榜")]
|
||||
[_vm._v("本周推荐榜")]
|
||||
)
|
||||
],
|
||||
1
|
||||
|
||||
2
unpackage/dist/dev/app-plus/manifest.json
vendored
2
unpackage/dist/dev/app-plus/manifest.json
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user