Compare commits
2 Commits
6242e47490
...
9172ced172
| Author | SHA1 | Date |
|---|---|---|
|
|
9172ced172 | |
|
|
8c96536d11 |
2
main.js
2
main.js
|
|
@ -29,7 +29,7 @@ export function createApp() {
|
|||
app.config.globalProperties.$system = plus.os.name;
|
||||
// #endif
|
||||
app.config.globalProperties.$systemInfo = systemInfo
|
||||
uni.setStorageSync('version', '1.0.6.sp21')
|
||||
uni.setStorageSync('version', '1.0.6.sp22')
|
||||
app.config.globalProperties.$version = uni.getStorageSync('version')
|
||||
app.use(globalMethods);
|
||||
return {
|
||||
|
|
|
|||
|
|
@ -873,7 +873,14 @@
|
|||
.button-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 30rpx 0;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 86px;
|
||||
width: 100vw;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding-bottom: constant(safe-area-inset-bottom); // 兼容 IOS<11.2
|
||||
padding-bottom: env(safe-area-inset-bottom); // 兼容 IOS>11.2
|
||||
}
|
||||
|
||||
.btn-save-image {
|
||||
|
|
|
|||
Loading…
Reference in New Issue