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.
23 lines
696 B
23 lines
696 B
<template>
|
|
<job-com-main-card :dataContent="dataContent">
|
|
<jobComMainDetailCard :dataContent="dataContent"></jobComMainDetailCard>
|
|
<view class="">
|
|
<text style="font-size: 32rpx; margin-left: 35rpx">生产线</text>
|
|
<text style="font-size: 35rpx; margin-left: 10rpx; font-weight: bold">{{ dataContent.productionLineCode }}</text>
|
|
</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>
|
|
|