| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948 |
- <template>
- <view v-if="couponList.length || productList.length || newcomer_integral">
- <common-wrapper :config="configData">
- <view
- class="newVip2"
- :style="[newVip2Background, newVipBorderRadius]"
- v-if="dataConfig.styleConfig.tabVal"
- >
- <view class="header acea-row row-between row-middle">
- <view class="title-box acea-row row-middle">
- <image
- :src="`${imgHost}/statics/images/newVip1.png`"
- class="image"
- ></image>
- <view class="info">{{ $t(`超值优惠 限时专享`) }}</view>
- </view>
- <view class="more" @click="goNewList"
- >{{ $t(`去逛逛`) }}<text class="iconfont icon-ic_rightarrow"></text
- ></view>
- </view>
- <view class="wrapper">
- <view
- class="coupon"
- v-if="couponList.length && dataConfig.checkboxInfo.type.includes(1)"
- >
- <view class="title">{{ $t(`新人红包`) }}</view>
- <view class="content">
- <scroll-view scroll-x="true">
- <view class="list acea-row">
- <view v-for="item in couponList" :key="item.id" class="item">
- <view class="back" :style="[couponStyle]"></view>
- <view class="money" :style="[moneyStyle]">
- <view v-if="item.coupon_type == 1"
- >{{ $t(`¥`)
- }}<text class="number">{{
- item.coupon_price
- }}</text></view
- >
- <view v-else-if="item.coupon_type == 2"
- ><text class="number">{{
- parseFloat(item.coupon_price) / 10
- }}</text
- >{{ $t(`折`) }}</view
- >
- </view>
- <view
- v-if="item.use_min_price"
- class="info"
- :style="[couponInfoStyle]"
- >{{ $t(`满`) }}{{ item.use_min_price
- }}{{ $t(`可用`) }}</view
- >
- <view v-else class="info" :style="[couponInfoStyle]">{{
- $t(`无门槛券`)
- }}</view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- <view
- class="product"
- v-if="
- productList.length && dataConfig.checkboxInfo.type.includes(2)
- "
- >
- <view class="title">{{ $t(`新人商品专区`) }}</view>
- <view class="content">
- <scroll-view scroll-x="true">
- <view class="list acea-row">
- <view
- class="item"
- v-for="item in productList"
- :key="item.id"
- @click="goDetail(item)"
- >
- <easy-loadimage
- mode="widthFix"
- :image-src="item.image"
- width="144rpx"
- height="144rpx"
- borderRadius="12rpx"
- ></easy-loadimage>
- <view class="money"
- >{{ $t(`¥`)
- }}<text class="number">{{ item.price }}</text></view
- >
- <view class="name line1">{{ item.store_name }}</view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </view>
- <view
- class="bonus acea-row row-middle"
- v-if="dataConfig.checkboxInfo.type.includes(0)"
- >
- <image
- :src="`${imgHost}/statics/images/newVip2.png`"
- class="image"
- ></image>
- <view class="text">
- <view class="info acea-row row-middle">
- {{ $t(`新用户注册领积分`) }}
- <view class="red" :style="[bonusRedStyle]">
- <view class="inner acea-row row-middle">
- <image
- :src="`${imgHost}/statics/images/newVip3.png`"
- class="image"
- ></image>
- +{{ newcomer_integral }}
- </view>
- </view>
- </view>
- <view class="">{{ $t(`新用户注册后即可获得积分`) }}</view>
- </view>
- <view class="button" :style="[buttonStyle]" @click="goNewList">{{
- $t(`去看看`)
- }}</view>
- </view>
- </view>
- <view class="newVip" :style="[newVipBorderRadius]" v-else>
- <view class="header acea-row row-between row-middle">
- <view class="title">{{ $t(`新人专享福利`) }}</view>
- <view class="more" @click="goNewList"
- >{{ $t(`更多优惠`)
- }}<text class="iconfont icon-ic_rightarrow"></text
- ></view>
- </view>
- <view
- class="bonus"
- :style="[bonusStyle]"
- v-if="dataConfig.checkboxInfo.type.includes(0)"
- >
- <view class="inner acea-row row-middle">
- <image
- :src="`${imgHost}/statics/images/newVip3.png`"
- class="image"
- ></image>
- {{ $t(`新用户注册即可`) }}
- <text class="red" :style="[bonusRedStyle]">{{
- $t(`赠送积分`)
- }}</text>
- </view>
- </view>
- <view
- class="coupon"
- v-if="dataConfig.checkboxInfo.type.includes(1) && couponList.length"
- >
- <view class="title">{{ $t(`专属优惠券`) }}</view>
- <view class="content acea-row" :style="[couponContentStyle]">
- <scroll-view scroll-x="true">
- <view class="list acea-row">
- <view
- v-for="item in couponList"
- :key="item.id"
- class="item"
- :style="[couponStyle]"
- >
- <view class="item-top acea-row row-center row-middle">
- <view class="money" :style="[moneyStyle]">
- <view v-if="item.coupon_type == 1"
- >{{ $t(`¥`)
- }}<text class="number">{{
- item.coupon_price
- }}</text></view
- >
- <view v-else-if="item.coupon_type == 2"
- ><text class="number">{{
- parseFloat(item.coupon_price) / 10
- }}</text
- >折</view
- >
- </view>
- </view>
- <view
- class="item-bottom acea-row row-column row-center row-middle"
- >
- <view class="name" :style="[couponTypeStyle]">
- <text v-if="item.coupon_type == 1">{{
- $t(`品类券`)
- }}</text>
- <text v-else-if="item.coupon_type == 2">{{
- $t(`商品券`)
- }}</text>
- <text v-else-if="item.coupon_type == 3">{{
- $t(`品牌券`)
- }}</text>
- <text v-else>{{ $t(`通用券`) }}</text>
- </view>
- <view v-if="item.use_min_price" class="info"
- >{{ $t(`满`) }}{{ item.use_min_price
- }}{{ $t(`可用`) }}</view
- >
- <view v-else class="info">{{ $t(`无门槛券`) }}</view>
- </view>
- </view>
- </view>
- </scroll-view>
- <view class="station" :style="[stationStyle]">
- <view class="money"
- >{{ $t(`¥`) }}<text class="number">{{ totalPrice }}</text></view
- >
- <view class="info">{{ $t(`新人专享优惠券`) }}</view>
- <view class="button" :style="[buttonStyle]" @click="goUser">{{
- $t(`一键领取`)
- }}</view>
- </view>
- </view>
- </view>
- <view
- class="product"
- v-if="productList.length && dataConfig.checkboxInfo.type.includes(2)"
- >
- <view class="title">{{ $t(`新人商品专区`) }}</view>
- <view class="content">
- <scroll-view scroll-x="true">
- <view class="list acea-row">
- <view
- class="item"
- v-for="item in productList"
- :key="item.id"
- @click="goDetail(item)"
- >
- <easy-loadimage
- mode="widthFix"
- :image-src="item.image"
- width="158rpx"
- height="158rpx"
- borderRadius="12rpx"
- ></easy-loadimage>
- <view class="name line1">{{ item.store_name }}</view>
- <view class="money" :style="[productMoneyStyle]"
- >{{ $t(`¥`)
- }}<text class="number">{{ item.price }}</text></view
- >
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </view>
- </common-wrapper>
- </view>
- </template>
- <script>
- import commonWrapper from "./commonWrapper.vue";
- import { newcomerList } from "@/api/api.js";
- import { mapGetters } from "vuex";
- import { HTTP_REQUEST_URL } from "@/config/app";
- export default {
- components: { commonWrapper },
- computed: mapGetters(["isLogin"]),
- props: {
- dataConfig: {
- type: Object,
- default: () => {},
- },
- isSortType: {
- type: String | Number,
- default: 0,
- },
- },
- data() {
- return {
- imgHost: HTTP_REQUEST_URL,
- couponList: [],
- productList: [],
- newcomer_integral: "",
- };
- },
- created() {
- this.getList();
- },
- computed: {
- totalPrice() {
- return this.couponList.reduce((total, item) => {
- return this.$util.$h.Add(total, item.coupon_price);
- }, 0);
- },
- bonusStyle() {
- let styleObject = {};
- if (this.dataConfig.toneConfig.tabVal) {
- styleObject["border-color"] =
- this.dataConfig.integralBgColor.color[0].item;
- styleObject["background"] =
- this.dataConfig.integralBgColor.color[0].item;
- }
- return styleObject;
- },
- bonusRedStyle() {
- let styleObject = {};
- if (this.dataConfig.toneConfig.tabVal) {
- if (this.dataConfig.styleConfig.tabVal) {
- styleObject["background"] =
- this.dataConfig.integralTxtColor.color[0].item;
- styleObject["color"] = this.dataConfig.integralTxtColor.color[0].item;
- } else {
- styleObject["color"] = this.dataConfig.tipsColor.color[0].item;
- }
- }
- return styleObject;
- },
- moneyStyle() {
- let styleObject = {};
- if (this.dataConfig.toneCouponConfig.tabVal) {
- styleObject["color"] = this.dataConfig.couponMoneyColor.color[0].item;
- }
- return styleObject;
- },
- buttonStyle() {
- let styleObject = {};
- if (this.dataConfig.toneConfig.tabVal) {
- if (this.dataConfig.styleConfig.tabVal) {
- styleObject[
- "background"
- ] = `linear-gradient(90deg, ${this.dataConfig.bntColor.color[0].item} 0%, ${this.dataConfig.bntColor.color[1].item} 100%)`;
- }
- }
- if (this.dataConfig.toneCouponConfig.tabVal) {
- if (!this.dataConfig.styleConfig.tabVal) {
- styleObject["color"] = this.dataConfig.bntTxtColor.color[0].item;
- }
- }
- return styleObject;
- },
- couponTypeStyle() {
- let styleObject = {};
- if (this.dataConfig.toneCouponConfig.tabVal) {
- styleObject["color"] = this.dataConfig.couponTypeColor.color[0].item;
- }
- return styleObject;
- },
- couponStyle() {
- let styleObject = {};
- if (this.dataConfig.toneCouponConfig.tabVal) {
- if (this.dataConfig.styleConfig.tabVal) {
- styleObject["margin-right"] = `${
- this.dataConfig.spacingConfig2.val * 2
- }rpx`;
- styleObject["background"] =
- this.dataConfig.couponBgColor2.color[0].item;
- } else {
- styleObject["margin-right"] = `${
- this.dataConfig.spacingConfig.val * 2
- }rpx`;
- }
- }
- return styleObject;
- },
- couponContentStyle() {
- let styleObject = {};
- if (this.dataConfig.toneCouponConfig.tabVal) {
- styleObject[
- "background"
- ] = `linear-gradient(90deg, ${this.dataConfig.couponBgColor.color[0].item} 0%, ${this.dataConfig.couponBgColor.color[1].item} 100%)`;
- }
- return styleObject;
- },
- stationStyle() {
- let styleObject = {};
- if (this.dataConfig.toneCouponConfig.tabVal) {
- styleObject[
- "background"
- ] = `linear-gradient(90deg, ${this.dataConfig.vipBgColor.color[0].item} 0%, ${this.dataConfig.vipBgColor.color[1].item} 100%)`;
- }
- return styleObject;
- },
- productMoneyStyle() {
- let styleObject = {};
- if (this.dataConfig.toneGoodsConfig.tabVal) {
- styleObject["color"] = this.dataConfig.priceColor.color[0].item;
- }
- return styleObject;
- },
- couponInfoStyle() {
- let styleObject = {};
- if (this.dataConfig.toneCouponConfig.tabVal) {
- styleObject[
- "background"
- ] = `linear-gradient(90deg, ${this.dataConfig.bntBgColor.color[1].item} 0%, ${this.dataConfig.bntBgColor.color[0].item} 100%)`;
- }
- return styleObject;
- },
- // 组件背景
- newVip2Background() {
- return {
- background: `linear-gradient(90deg, ${this.dataConfig.moduleColor.color[0].item} 0%, ${this.dataConfig.moduleColor.color[1].item} 99%)`,
- };
- },
- // 背景圆角
- newVipBorderRadius() {
- let borderRadius = `${this.dataConfig.fillet.val * 2}rpx`;
- if (this.dataConfig.fillet.type) {
- borderRadius = `${this.dataConfig.fillet.valList[0].val * 2}rpx ${
- this.dataConfig.fillet.valList[1].val * 2
- }rpx ${this.dataConfig.fillet.valList[3].val * 2}rpx ${
- this.dataConfig.fillet.valList[2].val * 2
- }rpx`;
- }
- return {
- "border-radius": borderRadius,
- };
- },
- // 底部背景
- newVipWrapStyle() {
- return {
- "margin-top": `${this.dataConfig.mbConfig.val * 2}rpx`,
- background: this.dataConfig.bottomBgColor.color[0].item,
- };
- },
- },
- watch: {
- isLogin: {
- handler: function (newV, oldV) {
- if (newV) {
- this.getList();
- }
- },
- deep: true,
- },
- },
- methods: {
- goDetail(item) {
- uni.navigateTo({
- url: `/pages/activity/goods_details/index?id=${item.id}&type=7`,
- });
- },
- goNewList() {
- uni.navigateTo({
- url: `/pages/activity/new_customer/index`,
- });
- },
- goUser() {
- uni.switchTab({
- url: `/pages/users/user_coupon/index`,
- });
- },
- getList() {
- let limit = this.$config.LIMIT;
- newcomerList({
- page: 1,
- limit: limit,
- })
- .then((res) => {
- let newcomer_integral = res.data.newcomer_integral;
- this.couponList = res.data.newcomer_coupon;
- this.productList = res.data.newcomer_products;
- if (Array.isArray(newcomer_integral)) {
- this.newcomer_integral = 0;
- } else {
- this.newcomer_integral = newcomer_integral;
- }
- })
- .catch((err) => {
- return this.$util.Tips({
- title: err.msg,
- });
- });
- },
- },
- };
- </script>
- <style lang="scss">
- .newVip {
- padding: 0 20rpx 40rpx;
- border-radius: 16rpx;
- background: #ffffff;
- .header {
- height: 96rpx;
- .title {
- font-weight: bold;
- font-size: 32rpx;
- color: #333333;
- }
- .more {
- font-size: 24rpx;
- color: #999999;
- }
- .iconfont {
- font-size: 24rpx;
- }
- }
- .bonus {
- border: 1rpx solid var(--view-theme);
- border-radius: 17rpx;
- background: var(--view-theme);
- .inner {
- height: 80rpx;
- padding: 0 32rpx;
- border-radius: 16rpx;
- background: rgba(255, 255, 255, 0.8);
- font-size: 26rpx;
- color: #333333;
- }
- .image {
- width: 48rpx;
- height: 48rpx;
- margin-right: 16rpx;
- }
- .red {
- color: var(--view-theme);
- }
- }
- .coupon {
- .title {
- padding: 28rpx 0 20rpx;
- font-weight: bold;
- font-size: 28rpx;
- line-height: 40rpx;
- color: #333333;
- }
- .content {
- position: relative;
- padding: 12rpx 190rpx 12rpx 12rpx;
- border-radius: 24rpx;
- background: linear-gradient(
- 270deg,
- var(--view-theme) 0%,
- var(--view-gradient) 100%
- );
- }
- .list {
- flex-wrap: nowrap;
- }
- .item {
- flex-shrink: 0;
- position: relative;
- width: 144rpx;
- height: 188rpx;
- border-radius: 12rpx;
- margin-top: 0;
- margin-right: 8rpx;
- background: radial-gradient(
- circle at left center,
- transparent 6rpx,
- #ffffff 6rpx
- )
- top left,
- radial-gradient(circle at right center, transparent 6rpx, #ffffff 6rpx)
- top right;
- background-repeat: no-repeat;
- background-size: 78rpx 188rpx;
- &::before {
- content: "";
- position: absolute;
- top: 94rpx;
- right: 10rpx;
- left: 10rpx;
- border-top: 1rpx dashed #d8d8d8;
- }
- .item-top,
- .item-bottom {
- height: 94rpx;
- }
- .money {
- font-weight: 500;
- font-size: 28rpx;
- color: var(--view-theme);
- }
- .number {
- font-family: SemiBold;
- font-size: 40rpx;
- }
- .name {
- font-weight: 500;
- font-size: 22rpx;
- line-height: 30rpx;
- color: var(--view-theme);
- }
- .info {
- margin-top: 4rpx;
- font-size: 18rpx;
- line-height: 26rpx;
- color: #666666;
- }
- }
- .station {
- position: absolute;
- top: 0;
- right: 0;
- width: 190rpx;
- height: 100%;
- padding-top: 40rpx;
- border-radius: 0 24rpx 24rpx 0;
- background: linear-gradient(
- 270deg,
- var(--view-theme) 0%,
- var(--view-gradient) 100%
- );
- &::before {
- content: "";
- position: absolute;
- top: 0;
- left: -20rpx;
- width: 20rpx;
- height: 210rpx;
- background: linear-gradient(
- 270deg,
- rgba(0, 0, 0, 0.2) 0%,
- rgba(255, 255, 255, 0) 100%
- );
- }
- .money {
- text-align: center;
- font-weight: 500;
- font-size: 28rpx;
- color: #ffffff;
- }
- .number {
- font-family: SemiBold;
- font-size: 40rpx;
- }
- .info {
- margin-top: 18rpx;
- text-align: center;
- font-size: 20rpx;
- line-height: 28rpx;
- color: #ffffff;
- }
- .button {
- width: 136rpx;
- height: 52rpx;
- border-radius: 26rpx;
- margin: 12rpx auto 0;
- background: #ffffff;
- text-align: center;
- font-weight: 500;
- font-size: 22rpx;
- line-height: 52rpx;
- color: var(--view-theme);
- }
- }
- }
- .product {
- .title {
- padding: 28rpx 0 20rpx;
- font-weight: bold;
- font-size: 28rpx;
- line-height: 40rpx;
- color: #333333;
- }
- .list {
- flex-wrap: nowrap;
- }
- .item {
- width: 158rpx;
- margin-top: 0;
- margin-right: 12rpx;
- }
- .name {
- margin-top: 12rpx;
- text-align: center;
- font-size: 24rpx;
- line-height: 34rpx;
- color: #333333;
- }
- .money {
- margin-top: 8rpx;
- text-align: center;
- font-weight: 600;
- font-size: 22rpx;
- color: var(--view-theme);
- }
- .number {
- font-family: SemiBold;
- font-size: 32rpx;
- }
- }
- }
- .newVip2 {
- padding: 0 24rpx 32rpx;
- border-radius: 24rpx;
- background: linear-gradient(270deg, #ff7931 0%, #e93323 100%);
- .header {
- height: 92rpx;
- .info {
- position: relative;
- padding-left: 12rpx;
- margin-left: 16rpx;
- font-size: 24rpx;
- color: #ffffff;
- &::before {
- content: "";
- position: absolute;
- top: 50%;
- left: 0;
- width: 1rpx;
- height: 20rpx;
- background-color: #ffffff;
- transform: translateY(-50%);
- }
- }
- .more {
- font-size: 24rpx;
- color: #ffffff;
- }
- .iconfont {
- font-size: 24rpx;
- }
- .image {
- width: 156rpx;
- height: 28rpx;
- }
- }
- .wrapper {
- border-radius: 16rpx;
- background: #ffffff;
- }
- .coupon {
- padding-bottom: 20rpx;
- .title {
- padding: 24rpx 20rpx 20rpx;
- font-weight: bold;
- font-size: 28rpx;
- line-height: 40rpx;
- color: #333333;
- }
- .list {
- flex-wrap: nowrap;
- padding-left: 20rpx;
- }
- .item {
- flex-shrink: 0;
- position: relative;
- width: 152rpx;
- height: 168rpx;
- margin-top: 0;
- margin-right: 24rpx;
- }
- .back {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 152rpx;
- height: 148rpx;
- border-radius: 20rpx;
- background: var(--view-theme);
- }
- .money {
- position: absolute;
- bottom: 12rpx;
- left: 6rpx;
- width: 140rpx;
- height: 156rpx;
- padding-top: 36rpx;
- border: 2rpx solid #fceae9;
- border-radius: 20rpx;
- background: #ffffff;
- text-align: center;
- font-weight: 500;
- font-size: 28rpx;
- color: var(--view-theme);
- .number {
- font-family: SemiBold;
- font-size: 40rpx;
- }
- }
- .info {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 152rpx;
- height: 78rpx;
- padding-top: 34rpx;
- border-radius: 0 0 20rpx 20rpx;
- background: linear-gradient(
- 90deg,
- var(--view-theme) 0%,
- var(--view-gradient) 100%
- );
- text-align: center;
- font-size: 20rpx;
- line-height: 28rpx;
- color: #ffffff;
- &::before {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 152rpx;
- height: 20rpx;
- border: 8rpx solid #fceae9;
- border-bottom-right-radius: 76rpx 20rpx;
- border-bottom-left-radius: 76rpx 20rpx;
- border-top-color: transparent;
- box-sizing: border-box;
- background: #ffffff;
- }
- }
- }
- .product {
- padding-bottom: 20rpx;
- .title {
- padding: 20rpx 20rpx 20rpx;
- font-weight: bold;
- font-size: 28rpx;
- line-height: 40rpx;
- color: #333333;
- }
- .list {
- padding: 0 20rpx;
- }
- .item {
- width: 144rpx;
- margin-top: 0;
- margin-right: 15rpx;
- }
- .money {
- margin-top: 18rpx;
- text-align: center;
- font-weight: 500;
- font-size: 32rpx;
- color: #333333;
- }
- .number {
- font-family: SemiBold;
- }
- .name {
- margin-top: 6rpx;
- text-align: center;
- font-size: 24rpx;
- line-height: 34rpx;
- color: #333333;
- }
- }
- .bonus {
- padding: 26rpx 26rpx 26rpx 20rpx;
- border-radius: 16rpx;
- margin-top: 20rpx;
- background: #ffffff;
- .image {
- width: 88rpx;
- height: 88rpx;
- }
- .text {
- flex: 1;
- padding-left: 20rpx;
- font-size: 24rpx;
- color: #999999;
- }
- .info {
- margin-bottom: 10rpx;
- font-weight: bold;
- font-size: 30rpx;
- line-height: 42rpx;
- color: #333333;
- }
- .red {
- border-radius: 16rpx;
- margin-left: 8rpx;
- background: var(--view-theme);
- font-weight: 400;
- font-size: 20rpx;
- line-height: 32rpx;
- color: var(--view-theme);
- .image {
- width: 24rpx;
- height: 24rpx;
- }
- .inner {
- height: 32rpx;
- padding: 0 7rpx;
- border-radius: 16rpx;
- background: rgba(255, 255, 255, 0.9);
- }
- }
- .button {
- width: 114rpx;
- height: 52rpx;
- border-radius: 26rpx;
- background: linear-gradient(
- 90deg,
- var(--view-theme) 0%,
- var(--view-gradient) 100%
- );
- text-align: center;
- font-weight: 500;
- font-size: 22rpx;
- line-height: 52rpx;
- color: #ffffff;
- }
- }
- }
- </style>
|