|
|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <view class="safe-area-inset-bottom">
|
|
|
+ <view class="safe-area-inset-bottom" :style="vuex_skin">
|
|
|
<!-- #ifdef MP-WEIXIN -->
|
|
|
<back v-if="backShow" :title="title"></back>
|
|
|
<u-navbar v-else title-color="#fff" :border-bottom="false" title="积分明细" back-icon-color="#fff"
|
|
|
@@ -8,8 +8,7 @@
|
|
|
<view class="">
|
|
|
<view class="bg-img flex justify-center align-center"
|
|
|
:class="isH5?'marginTop':''"
|
|
|
- style="background-image: url('https://vote.guosen-fumao.cn/obsfile/6002585ea7d548508d5f6dcce4ed1116-mingxi.png');
|
|
|
- height: 340upx;z-index: 9999999999999;">
|
|
|
+ style="height: 340upx;z-index: 999;">
|
|
|
|
|
|
<view class="text-center" style="margin-top: 150upx;">
|
|
|
<view style="font-size: 26upx;color: #FFFFFF;font-weight: 400;">可用积分</view>
|
|
|
@@ -140,7 +139,7 @@
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style>
|
|
|
+<style lang="scss" scoped>
|
|
|
.container {
|
|
|
background-color: #FFFFFF;
|
|
|
border-radius: 10upx;
|
|
|
@@ -171,4 +170,19 @@
|
|
|
font-family: PingFang-SC-Bold;
|
|
|
color: #111111;
|
|
|
}
|
|
|
+ .bg-img{
|
|
|
+ position: relative;
|
|
|
+ &::after {
|
|
|
+ content: '';
|
|
|
+ width: 140%;
|
|
|
+ height: 200px;
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ z-index: -1;
|
|
|
+ bottom: 0;
|
|
|
+ border-radius: 0 0 50% 50%;
|
|
|
+ background: var(--bgColor);
|
|
|
+ }
|
|
|
+ }
|
|
|
</style>
|