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

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