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.
27 lines
771 B
27 lines
771 B
<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>
|
|
</job-com-main-card>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import jobComMainCard from '@/mycomponents/job/jobComMainCard.vue'
|
|
import jobComMainDetailCard from '@/mycomponents/job/jobComMainDetailCard.vue'
|
|
|
|
const props = defineProps({
|
|
dataContent: {
|
|
type: Object,
|
|
default: {}
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss"></style>
|
|
|