|
@@ -1,5 +1,8 @@
|
|
|
<template>
|
|
|
<view>
|
|
|
+ <!-- 顶部占位区域 -->
|
|
|
+ <view :style="{ height: statusBarHeight + 'px' }"></view>
|
|
|
+
|
|
|
<!-- 表单 -->
|
|
|
<view class="list flex justify-center">
|
|
|
<view class="list-box">
|
|
@@ -103,6 +106,7 @@
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
+ statusBarHeight: 0,
|
|
|
monyShow: false,
|
|
|
monyList: [], //薪资列表
|
|
|
resumesCompensation: '', //薪资
|
|
@@ -118,6 +122,11 @@
|
|
|
isDefault: 0,
|
|
|
};
|
|
|
},
|
|
|
+ onLoad() {
|
|
|
+ // 获取状态栏高度
|
|
|
+ const systemInfo = uni.getSystemInfoSync()
|
|
|
+ this.statusBarHeight = systemInfo.statusBarHeight || 0
|
|
|
+ },
|
|
|
onShow() {
|
|
|
let that = this
|
|
|
//选择的岗位
|