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.

24 lines
696 B

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