This commit is contained in:
2024-07-02 11:26:14 +08:00
parent a174c3e4d5
commit 41d03fb4ce
15 changed files with 1603 additions and 1334 deletions

View File

@@ -4,16 +4,16 @@
<public-module></public-module>
<z-nav-bar
:title="options.navTitle"
class="common-nav"
bgColor=""
fontColor="#333"
bgColor="#5F8F7F"
fontColor="#fff"
></z-nav-bar>
<view
class="contentBox commonPageContentBox"
:style="`height: calc(100% - ${
(50 + statusBarHeight) * 2
}rpx) !important;`"
:style="`height: calc(100vh - ${
(50 + statusBarHeight)
}px) !important;`"
>
<common-list
:isNoIcon="true"

View File

@@ -1823,6 +1823,7 @@ export default {
}
/deep/.section {
padding-top: 0 !important;
background: linear-gradient(108deg, #f0fbf4 0%, #d1e8da 100%) !important;
}
/deep/.section_box {

View File

@@ -12,8 +12,9 @@
</u-sticky> -->
<common-anchor-link
:defaultShowTabs="true"
v-if="currentCateIndex == 1"
baseHeight="60"
baseHeight="80"
ref="commonAnchorLink"
:allDataList="allDataList"
:allTabList="allTabList"
@@ -25,6 +26,7 @@
}"
>
<template slot="tabs" slot-scope="slotProps">
<common-sticky
label="title"
itemStyle="width:33%;padding-left: 15px; padding-right: 15px; height: 68rpx;"
@@ -32,23 +34,27 @@
:currentCateIndex="currentCateIndex"
@handleselectCate="handleselectCate"
></common-sticky>
<u-alert
:style="{ display: slotProps.showTabs ? 'none' : 'block' }"
style="width: 100%; z-index: 10"
type="warning"
:title="`尊贵的${
vip.type == 1 ? '超级' : vip.type == 2 ? '吴门医述' : '众妙之门'
}VIP会员,您的有效期到 ${
vip.endTime ? vip.endTime.split(' ')[0] : ''
}`"
:show-icon="true"
v-if="vip.type != 0 && currentCateIndex != 2"
>
</u-alert>
</template>
<template slot="otherContent" slot-scope="slotProps">
<view style="padding-top: 80px" v-if="!$store.state.loadingShow">
<u-alert
style="width: 100%; z-index: 10"
type="warning"
:title="`尊贵的${
vip.type == 1 ? '超级' : vip.type == 2 ? '吴门医述' : '众妙之门'
}VIP会员,您的有效期到 ${
vip.endTime ? vip.endTime.split(' ')[0] : ''
}`"
:show-icon="true"
v-if="vip.type != 0 && currentCateIndex != 2"
>
</u-alert
></view>
</template>
<template slot="label" slot-scope="slotProps">
<view class="content_title PM_font">{{ slotProps.title }}</view>
<view class="content_title">{{ slotProps.title }}</view>
</template>
<template slot="contentList" slot-scope="slotProps">
@@ -928,4 +934,7 @@ export default {
text-align: center;
font-size: 30px;
}
/deep/.section:nth-child(1) {
padding-top: 0 !important;
}
</style>