Compare commits

..

2 Commits

Author SHA1 Message Date
小李 583ea5a536 Merge branch 'Branch_1' of https://git.u8t.cn/tangxinyue/alipay-emulator into Branch_1 2026-03-28 10:52:30 +08:00
小李 b17e6c0147 字体其他 2026-03-28 10:52:21 +08:00
3 changed files with 12 additions and 5 deletions

View File

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

View File

@ -35,7 +35,7 @@
</view> </view>
<view class="vipList"> <view class="vipList">
<template v-for="(item, index) in data.benefitList" :key="index"> <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> <image :src="item.url"></image>
<text>{{ item.name }}</text> <text>{{ item.name }}</text>
</view> </view>
@ -495,7 +495,7 @@ onLoad(async () => {
}else if (themeConfig?.theme == '0405') { }else if (themeConfig?.theme == '0405') {
data.banner = '/static/image/recharge/qmj/bannar.png' data.banner = '/static/image/recharge/qmj/bannar.png'
data.benefitList.forEach(item=>{ 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') { }else if (themeConfig?.theme == '0401') {
data.banner = '/static/image/recharge/yrj/bannar.png' data.banner = '/static/image/recharge/yrj/bannar.png'
@ -1677,7 +1677,7 @@ function shouldBeTrue(obj) {
background-color: #F7F7F7; background-color: #F7F7F7;
border-radius: 16px 16px 0 0; border-radius: 16px 16px 0 0;
width: 100vw; width: 100vw;
margin-top:-90px; margin-top:-70px;
// background: linear-gradient(to bottom, #FFFFFF, #F7F7F7); // 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> </style>