niexiting
12 months ago
8 changed files with 115 additions and 88 deletions
@ -0,0 +1,57 @@ |
|||||
|
<template> |
||||
|
<view class="cen_card" style="padding: 20rpx;"> |
||||
|
<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> |
||||
|
<u-line /> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
components: { |
||||
|
|
||||
|
}, |
||||
|
data() { |
||||
|
return {}; |
||||
|
}, |
||||
|
|
||||
|
props: { |
||||
|
workShopCode: { |
||||
|
type: String, |
||||
|
default: '' |
||||
|
}, |
||||
|
dataContent: { |
||||
|
type: Object, |
||||
|
default: {} |
||||
|
}, |
||||
|
}, |
||||
|
|
||||
|
methods: { |
||||
|
|
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss"> |
||||
|
|
||||
|
</style> |
||||
|
|
||||
|
|
||||
|
<style> |
||||
|
</style> |
Loading…
Reference in new issue