You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
apply-assistant-v3/root/detail/job.vue

25 lines
357 B
Vue

<template>
<view class="_abs">
<rh-job-detail :dataoptions='dataoptions'></rh-job-detail>
</view>
</template>
<script>
export default{
data(){
return {
dataoptions:{}
}
},
onLoad(options) {
this.dataoptions = options
}
}
</script>
<style>
/* #ifdef H5 */
._abs{
max-height: 100vh;
overflow-y: auto;
}
/* #endif */
</style>