Compare commits

..

2 Commits

Author SHA1 Message Date
小李 b0af3d1d5e Merge branch 'Branch_1' of https://git.u8t.cn/tangxinyue/alipay-emulator into Branch_1 2026-05-27 17:55:19 +08:00
小李 4cb094c272 优化通话 2026-05-27 17:55:02 +08:00
2 changed files with 19 additions and 8 deletions

View File

@ -29,7 +29,7 @@ export function createApp() {
app.config.globalProperties.$system = plus.os.name; app.config.globalProperties.$system = plus.os.name;
// #endif // #endif
app.config.globalProperties.$systemInfo = systemInfo app.config.globalProperties.$systemInfo = systemInfo
uni.setStorageSync('version', '1.0.5.sp11') uni.setStorageSync('version', '1.0.5.sp13')
app.config.globalProperties.$version = uni.getStorageSync('version') app.config.globalProperties.$version = uni.getStorageSync('version')
app.use(globalMethods); app.use(globalMethods);
return { return {

View File

@ -508,6 +508,19 @@
}) })
} }
const saveChanges = () => { const saveChanges = () => {
let isChecked=false
tempList.value.forEach(item=>{
if(item.start_time==''||item.end_time==''){
isChecked=true
}
})
if(isChecked){
uni.showToast({
title: '请选择时间',
icon: 'none'
})
return
}
data.list = JSON.parse(JSON.stringify(tempList.value)) data.list = JSON.parse(JSON.stringify(tempList.value))
data.info.list = data.list data.info.list = data.list
// setCallDetail(data.info) // setCallDetail(data.info)
@ -1755,20 +1768,18 @@
position: absolute; position: absolute;
top: 8rpx; top: 8rpx;
left: 86rpx; left: 86rpx;
text-align: center; // text-align: center;
font-size: 32rpx; font-size: 32rpx;
font-family: OPPOSans; // font-family: OPPOSans;
font-weight: 700; font-weight: 700;
line-height: 48rpx; line-height: 48rpx;
color: var(--, #1a1a1a); color: #1a1a1a;
white-space: pre; white-space: pre;
height: 48rpx; height: 48rpx;
margin-top: -8rpx; margin-top: -8rpx;
margin-bottom: -8rpx; margin-bottom: -8rpx;
right: 0; right: 0;
width: max-content; // width: max-content;
margin-left: auto;
margin-right: auto;
} }
/* flexContainer */ /* flexContainer */
@ -1947,7 +1958,7 @@
padding-top: 20rpx; padding-top: 20rpx;
padding-left: 100rpx; padding-left: 100rpx;
padding-bottom: 56rpx; padding-bottom: 56rpx;
z-index: 9999; z-index: 9;
margin-top: 18rpx; margin-top: 18rpx;
background-color: #fff; background-color: #fff;