diff --git a/certificate/ios/生产证书.p12.zip b/certificate/ios/生产证书.p12.zip new file mode 100755 index 00000000..40d24a5e Binary files /dev/null and b/certificate/ios/生产证书.p12.zip differ diff --git a/src/pages/course/index.vue b/src/pages/course/index.vue index d1772215..5392536b 100644 --- a/src/pages/course/index.vue +++ b/src/pages/course/index.vue @@ -160,7 +160,11 @@ import { onShow } from "@dcloudio/uni-app" const tagsTree = ref([]) const showFilterList = ref(false) + const { + statusBarHeight + } = uni.getWindowInfo() + const pageTopPadding = computed(() => statusBarHeight + 'px') // 点击标签 const chooseTag = (item)=>{ activeTag.value = item.value @@ -327,11 +331,14 @@ import { onShow } from "@dcloudio/uni-app" box-sizing: border-box; display: flex; flex-direction: column; + padding-top: v-bind(pageTopPadding); + // padding-top: var(--status-bar-height); .body-title{ - height: 150rpx; + height: 90rpx; + // background-color: red; text-align: center; font-size: 33rpx; - padding-top: 70rpx; + padding-top: 10rpx; line-height: 46rpx; box-sizing: border-box; font-weight: 500; @@ -341,7 +348,7 @@ import { onShow } from "@dcloudio/uni-app" .arrow-icon{ position: absolute; left:36rpx; - top:80rpx; + top:20rpx; color: #000; } } diff --git a/src/pages/course/study.vue b/src/pages/course/study.vue index 5b4aace1..b8a421be 100644 --- a/src/pages/course/study.vue +++ b/src/pages/course/study.vue @@ -180,17 +180,9 @@ const flagVal = ref('1') const isUploadingVoice = ref(false) const { - // windowWidth, - // windowHeight, - // windowTop, - statusBarHeight, - screenTop, - safeArea, - // screenHeight, - // safeAreaInsets + statusBarHeight } = uni.getWindowInfo() -console.log(safeArea,screenTop,statusBarHeight) const pageTopPadding = computed(() => statusBarHeight + 'px') // 初始化数据 @@ -941,7 +933,7 @@ const chooseRateNow = (item) => { position: absolute; z-index: 3; right: 20rpx; - top: calc(v-bind(pageTopPadding) + 8rpx); + top: calc(v-bind(pageTopPadding) - 12rpx); font-size: 26rpx; width: 140rpx; height: 92rpx; @@ -976,10 +968,10 @@ const chooseRateNow = (item) => { flex-direction: column; padding-top: v-bind(pageTopPadding); .body-title{ - height: 110rpx; + height: 90rpx; text-align: center; font-size: 33rpx; - padding-top: 30rpx; + padding-top: 10rpx; line-height: 46rpx; box-sizing: border-box; font-weight: 500; @@ -989,7 +981,7 @@ const chooseRateNow = (item) => { .arrow-icon{ position: absolute; left:21rpx; - top:25rpx; + top:5rpx; color: #000; padding: 15rpx; // background-color: red; diff --git a/src/pages/courseDetail/index.vue b/src/pages/courseDetail/index.vue index 0cc8cfb2..1f67b719 100644 --- a/src/pages/courseDetail/index.vue +++ b/src/pages/courseDetail/index.vue @@ -1,9 +1,9 @@