You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.3 KiB
62 lines
1.3 KiB
<template>
|
|
<view class="pop_detail" style="height:80%">
|
|
<job-top :dataContent="dataContent"></job-top>
|
|
<u-line></u-line>
|
|
<scroll-view style="height:400px ">
|
|
<slot>
|
|
<!-- 每个任务的详情 -->
|
|
</slot>
|
|
<job-request-info :dataContent="dataContent"></job-request-info>
|
|
<u-line></u-line>
|
|
<job-person-info :dataContent="dataContent"></job-person-info>
|
|
<u-line></u-line>
|
|
<job-setting-info :dataContent="dataContent"></job-setting-info>
|
|
</scroll-view>
|
|
|
|
<view class="uni-flex u-row-center ">
|
|
<view class="close_button" @click="closePopup">
|
|
关闭</view>
|
|
<!-- button 滚动不好使 -->
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import jobTop from '@/mycomponents/job/jobTop.vue'
|
|
import jobBottom from '@/mycomponents/job/jobBottom.vue'
|
|
import jobRequestInfo from '@/mycomponents/job/jobRequestInfo.vue'
|
|
import jobPersonInfo from '@/mycomponents/job/jobPersonInfo.vue'
|
|
import jobSettingInfo from '@/mycomponents/job/jobSettingInfo.vue'
|
|
export default {
|
|
emits: ['onClose'],
|
|
components: {
|
|
jobTop,
|
|
jobBottom,
|
|
jobPersonInfo,
|
|
jobSettingInfo,
|
|
jobRequestInfo
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
|
|
mounted() {},
|
|
props: {
|
|
dataContent: {
|
|
type: Object,
|
|
default: {}
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
closePopup() {
|
|
this.$emit('onClose')
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
|
|
</style>
|
|
|