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.
 
 
 
 

39 lines
991 B

<template>
<view class="cen_card" style="padding-top: 10rpx; padding-bottom: 10rpx">
<view class="cell_box uni-flex uni-row">
<view class="cell_info">
<view class="text_lightblue">车间</view>
<view>{{ workShopCode }}</view>
</view>
<view class="cell_info">
<view class="text_lightblue">生产线</view>
<view>{{ dataContent.productionLineCode }}</view>
</view>
<view class="cell_info">
<view class="text_lightblue">工位</view>
<view>{{ dataContent.workStationCode }}</view>
</view>
<view class="cell_info">
<view class="text_lightblue">原材料库</view>
<view>{{ dataContent.toLocationCode }}</view>
</view>
</view>
</view>
</template>
<script setup lang="ts">
const props = defineProps({
workShopCode: {
type: String,
default: ''
},
dataContent: {
type: Object,
default: {}
}
})
</script>
<style lang="scss"></style>
<style></style>