Niext
11 months ago
1 changed files with 67 additions and 0 deletions
@ -0,0 +1,67 @@ |
|||||
|
<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> |
Loading…
Reference in new issue