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.
49 lines
1.1 KiB
49 lines
1.1 KiB
<template>
|
|
<job-com-main-card :dataContent="dataContent">
|
|
|
|
<jobComMainDetailCard :dataContent="dataContent"></jobComMainDetailCard>
|
|
|
|
<view class="task_item" style="margin-left: 15px;">
|
|
<view class="task_text">
|
|
<view class="card_view">
|
|
<text class="card_packing_code ">生产线</text>
|
|
<text class="card_content ">{{dataContent.productionLineCode}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class='split_line' v-show="dataContent.acceptUserName"></view>
|
|
<jobAccept :dataContent="dataContent" v-show="dataContent.acceptUserName"></jobAccept>
|
|
|
|
</job-com-main-card>
|
|
</template>
|
|
|
|
<script>
|
|
import jobComMainCard from '@/mycomponents/job/jobComMainCard.vue'
|
|
import jobComMainDetailCard from '@/mycomponents/job/jobComMainDetailCard.vue'
|
|
import jobAccept from '@/mycomponents/job/jobAccept.vue'
|
|
export default {
|
|
components: {
|
|
jobComMainCard,
|
|
jobComMainDetailCard,
|
|
jobAccept
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
|
|
props: {
|
|
dataContent: {
|
|
type: Object,
|
|
default: {}
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style>
|