字体其他
This commit is contained in:
parent
01500366f2
commit
b17e6c0147
2
main.js
2
main.js
|
|
@ -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.sp13')
|
||||
uni.setStorageSync('version', '1.0.3.sp14')
|
||||
app.config.globalProperties.$version = uni.getStorageSync('version')
|
||||
|
||||
app.use(globalMethods);
|
||||
|
|
|
|||
|
|
@ -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<8)">
|
||||
<view class="item" v-if="data.goods.features=='common'||(data.goods.features!='common'&&index<10)">
|
||||
<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:-90px;
|
||||
margin-top:-70px;
|
||||
// background: linear-gradient(to bottom, #FFFFFF, #F7F7F7);
|
||||
}
|
||||
|
||||
|
|
@ -2525,4 +2525,11 @@ function shouldBeTrue(obj) {
|
|||
}
|
||||
}
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'AlipayNumber'; //字体名称
|
||||
src: url('/static/font/AlipayNumber.otf');
|
||||
}
|
||||
.wx-font-regular {
|
||||
font-family: 'AlipayNumber' !important;
|
||||
}
|
||||
</style>
|
||||
Loading…
Reference in New Issue