优化通话
This commit is contained in:
parent
1d87a13e69
commit
4cb094c272
2
main.js
2
main.js
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue