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.
71 lines
1.7 KiB
71 lines
1.7 KiB
2 years ago
|
<!--发料任务卡片-->
|
||
|
<template>
|
||
|
<view class="choose_main">
|
||
|
<view class="ljh_box">
|
||
|
<view class="tit_ljh">{{ dataContent.itemCode }}</view>
|
||
|
<view class="uni-flex uni-row space-between">
|
||
|
<view class="ljh_left">
|
||
|
<view class="text_lightblue font_xs">{{ dataContent.itemName }}</view>
|
||
|
<view class="text_lightblue font_xs">{{ dataContent.item.Desc2 }}</view>
|
||
|
</view>
|
||
|
<view class="ljh_right">
|
||
|
<text class="tnum">{{dataContent.qty.qty}}</text>
|
||
|
<text class="tunit">{{dataContent.qty.uom}}</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="cen_card margin_xs_bottom">
|
||
|
<view class="label_box uni-flex uni-row">
|
||
|
<view class="label_info" v-if="dataContent.prodLine!=undefined">
|
||
|
<label class="">
|
||
|
<image class="icon_normal" src="@/static/icons_ui/label_scx.svg">
|
||
|
</image>
|
||
|
</label>
|
||
|
<text>{{dataContent.prodLine}}</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="uni-flex uni-row bot_card">
|
||
|
<view class="bot_card_item item_long">
|
||
|
<label class="icon_bg icon_bg_xm">
|
||
|
<image class="icon_normal" src="@/static/icons_ui/icon_xm.svg">
|
||
|
</image>
|
||
|
</label>
|
||
|
<text>{{dataContent.packingCode}}</text>
|
||
|
</view>
|
||
|
<view class="bot_card_item">
|
||
|
</view>
|
||
|
<view class="bot_card_item">
|
||
|
<label class="icon_bg icon_bg_pc">
|
||
|
<image class="icon_normal" src="@/static/icons_ui/icon_pc.svg">
|
||
|
</image>
|
||
|
</label>
|
||
|
<text>{{dataContent.lot}}</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "comTjRecycle",
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
// 此处定义传入的数据
|
||
|
props: {
|
||
|
dataContent: {
|
||
|
type: Object,
|
||
|
value: null
|
||
|
},
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
|
||
|
</style>
|