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.
67 lines
1.2 KiB
67 lines
1.2 KiB
<template>
|
|
<view class="header_job_top">
|
|
<view class="cen_card">
|
|
<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>{{productionLineCode}}</view>
|
|
</view>
|
|
<view class="cell_info">
|
|
<view class="text_lightblue">工位</view>
|
|
<view>{{ workStationCode }}</view>
|
|
</view>
|
|
<view class="cell_info">
|
|
<view class="text_lightblue">原材料库位</view>
|
|
<view>{{ rawLocationCode }}</view>
|
|
</view>
|
|
<!-- <view class="cell_info">
|
|
<view class="text_lightblue">成品库位</view>
|
|
<view>{{ fgLocationCode }}</view>
|
|
</view> -->
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
watch: {},
|
|
|
|
props: {
|
|
workshopCode: {
|
|
type: String,
|
|
default: ""
|
|
},
|
|
productionLineCode: {
|
|
type: String,
|
|
default: ""
|
|
},
|
|
workStationCode: {
|
|
type: String,
|
|
default: ""
|
|
},
|
|
rawLocationCode: {
|
|
type: String,
|
|
default: ""
|
|
},
|
|
fgLocationCode: {
|
|
type: String,
|
|
default: ""
|
|
},
|
|
},
|
|
|
|
methods: {}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|
|
|