fixing bug

This commit is contained in:
2020-09-05 14:26:17 +08:00
parent e1a74972f2
commit b653379d53
8 changed files with 72 additions and 42 deletions

View File

@@ -236,6 +236,13 @@ export default {
};
</script>
<style lang="scss" scoped>
/*坑解决iphoneX等大屏手机底部小黑条挡住tab的解决方法安全区域距离底部边界距离env() 跟 constant() 需要同时存在,而且顺序不能换。*/
/* #ifdef H5 */
body {
padding-bottom: constant(safe-area-inset-bottom);/* 兼容 iOS < 11.2 */
padding-bottom: env(safe-area-inset-bottom); /* 兼容 iOS >= 11.2 */
}
/* #endif */
.merchant {
// min-height: 100vh;
background-color: #ECECEC;