Browse Source

YT-2206

intex_online20250327
王宇飞 2 weeks ago
parent
commit
4ca55630eb
  1. 8
      src/common/style/new_style.css
  2. 6
      src/mycomponents/balance/batch.vue
  3. 57
      src/mycomponents/item/itemTime.vue
  4. 20
      src/mycomponents/job/jobComMainDetailCardTime.vue
  5. 2
      src/pages/repleinsh/coms/comRepleishDetailCardTime.vue

8
src/common/style/new_style.css

@ -2041,7 +2041,13 @@ button::after {
word-wrap: break-word;
word-break: break-all;
}
.card_itemName_time{
color: #3315EB;
font-size: 40rpx;
font-weight: bold;
word-wrap: break-word;
word-break: break-all;
}
.card_itemName {
color: #909399;
font-size: 30rpx;

6
src/mycomponents/balance/batch.vue

@ -1,6 +1,6 @@
<template>
<view class="card_view ">
<text class="card_batch ">批次</text>
<text class="card_batch ">{{title}}</text>
<text class="card_content ">{{batch}}</text>
</view>
</template>
@ -11,6 +11,10 @@
return {}
},
props: {
title: {
type: String,
default: '批次'
},
batch: {
type: String,
default: ""

57
src/mycomponents/item/itemTime.vue

@ -0,0 +1,57 @@
<template>
<view>
<view class="uni-flex u-col-center space-between ">
<view >
<view class="card_itemCode" :class="openPopup(dataContent)">
{{dataContent.itemCode}}
</view>
<view class="card_itemName_time" style="word-break:break-all;overflow:hidden;white-space:normal;display: flex;align-items: center;" :class="isSpecial ? 'special':''">
<view style="max-width:280rpx;overflow: hidden;white-space: nowrap;">{{dataContent.itemName}}</view>
<view style="padding-left: 8rpx;padding-right: 8rpx;" v-if="dataContent.itemCode && dataContent.itemDesc1">|</view>
<view style="max-width: 200rpx;overflow: hidden;white-space: nowrap;" v-if="dataContent.itemCode && dataContent.itemDesc1">{{dataContent.itemDesc1}}</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
components: {
},
data() {
return {
};
},
//
props: {
dataContent: {
type: Object,
default: {}
},
isSpecial: {
type: Boolean,
default: false
},
},
watch: {
},
methods: {
openPopup(val) {
// console.log(JSON.stringify(val));
},
},
}
</script>
<style>
.special{
color: blue!important;
font-size: 40rpx;
font-weight: bold;
}
</style>

20
src/mycomponents/job/jobComMainDetailCardTime.vue

@ -3,12 +3,14 @@
<view class="task_text" style="border-top: 1px solid #dedede;padding-top: 20rpx;margin-top: 20rpx;" >
<view class="uni-flex uni-row space-between uni-inline-item" style=" margin-left: 10px;">
<view style="flex: 1;">
<item :dataContent="dataContent" :isSpecial='isSpecial'></item>
<itemTime :dataContent="dataContent" :isSpecial='isSpecial'></itemTime>
</view>
</view>
<div class="u-p-l-10">
<to-location v-if="isShowToLocation" title="目标库位" :locationCode="dataContent.toLocationCode||dataContent.locationCode">
<to-location title="目标库位" :locationCode="dataContent.toLocationCode||dataContent.locationCode">
</to-location>
<location title="生产线代码" :locationCode="dataContent.productionLineCode"></location>
<batch title="生产线区分" :batch="dataContent.productionLine"></batch>
<job-repleinsh-time-qty :dataContent="dataContent"></job-repleinsh-time-qty>
</div>
@ -28,6 +30,7 @@
import itemCompareQty from '@/mycomponents/item/itemCompareQty.vue'
import level from '@/mycomponents/balance/level.vue'
import item from '@/mycomponents/item/item.vue'
import itemTime from '@/mycomponents/item/itemTime.vue'
import jobRepleinshTimeQty from '@/mycomponents/job/jobRepleinshTimeQty.vue'
export default {
@ -39,6 +42,7 @@
intoDeliNo,
jobRepleinshTimeQty,
item,
itemTime,
itemCompareQty,
level,
goodsShelves,
@ -62,22 +66,10 @@
type: Boolean,
default: true
},
isShowBatch: {
type: Boolean,
default: true
},
isShowBatchDeliNo: {
type: Boolean,
default: false
},
isShowFromLocation: {
type: Boolean,
default: true
},
isShowToLocation: {
type: Boolean,
default: true
},
isShowDeliverType: {
type: Boolean,
default: false

2
src/pages/repleinsh/coms/comRepleishDetailCardTime.vue

@ -9,7 +9,7 @@
<view class="card_itemCode" :class="openPopup(dataContent)">
{{dataContent.itemCode}}
</view>
<view class="card_itemName" style="word-break:break-all;overflow:hidden;white-space:normal;display: flex;align-items: center;" :class="isSpecial ? 'special':''">
<view class="card_itemName_time" style="word-break:break-all;overflow:hidden;white-space:normal;display: flex;align-items: center;" :class="isSpecial ? 'special':''">
<view style="max-width:280rpx;overflow: hidden;white-space: nowrap;">{{dataContent.itemName}}</view>
<view style="padding-left: 8rpx;padding-right: 8rpx;" v-if="dataContent.itemCode && dataContent.itemDesc1">|</view>
<view style="max-width: 200rpx;overflow: hidden;white-space: nowrap;" v-if="dataContent.itemCode && dataContent.itemDesc1">{{dataContent.itemDesc1}}</view>

Loading…
Cancel
Save