Compare commits

..

No commits in common. "583ea5a5369bd662a63eaaf004702d047bfa02fe" and "7dcc94c9375a682b7d5a9ece0cd4132638fb5c2c" have entirely different histories.

3 changed files with 5 additions and 12 deletions

View File

@ -27,7 +27,7 @@ export function createApp() {
const systemInfo = uni.getStorageSync('systemInfo') || {}
app.config.globalProperties.$system = systemInfo.platform == 'ios' ? 'iOS' : 'Android'
app.config.globalProperties.$systemInfo = systemInfo
uni.setStorageSync('version', '1.0.3.sp14')
uni.setStorageSync('version', '1.0.3.sp13')
app.config.globalProperties.$version = uni.getStorageSync('version')
app.use(globalMethods);

View File

@ -35,7 +35,7 @@
</view>
<view class="vipList">
<template v-for="(item, index) in data.benefitList" :key="index">
<view class="item" v-if="data.goods.features=='common'||(data.goods.features!='common'&&index<10)">
<view class="item" v-if="data.goods.features=='common'||(data.goods.features!='common'&&index<8)">
<image :src="item.url"></image>
<text>{{ item.name }}</text>
</view>
@ -495,7 +495,7 @@ onLoad(async () => {
}else if (themeConfig?.theme == '0405') {
data.banner = '/static/image/recharge/qmj/bannar.png'
data.benefitList.forEach(item=>{
item.url=item.url.replace('/static/image/recharge/','/static/image/recharge/qmj/')
item.url=item.url.replace('/static/image/recharge/','/static/image/recharge/qmj')
})
}else if (themeConfig?.theme == '0401') {
data.banner = '/static/image/recharge/yrj/bannar.png'
@ -1677,7 +1677,7 @@ function shouldBeTrue(obj) {
background-color: #F7F7F7;
border-radius: 16px 16px 0 0;
width: 100vw;
margin-top:-70px;
margin-top:-90px;
// background: linear-gradient(to bottom, #FFFFFF, #F7F7F7);
}
@ -2525,11 +2525,4 @@ function shouldBeTrue(obj) {
}
}
}
@font-face {
font-family: 'AlipayNumber'; //
src: url('/static/font/AlipayNumber.otf');
}
.wx-font-regular {
font-family: 'AlipayNumber' !important;
}
</style>