Browse Source

修改样式

wms3.0_pda
聂喜婷 1 year ago
parent
commit
55890ccf57
  1. 5
      common/style/new_style.css
  2. 14
      mycomponents/recommend/recommend.vue
  3. 4
      pages/purchaseReceipt/job/receiptDetail.vue

5
common/style/new_style.css

@ -2027,15 +2027,14 @@ button::after {
.card_itemCode {
font-size: 36rpx;
font-weight: 500;
/* font-weight: 500; */
padding: 10rpx;
}
.card_itemName {
color: #909399;
font-size: 30rpx;
padding: 0rpx 10rpx;
padding: 0rpx 20rpx;
}
/* .std_pack {

14
mycomponents/recommend/recommend.vue

@ -4,14 +4,10 @@
<view>
<pack v-if="isShowPack" :packingCode="detail.packingNumber"></pack>
<batch v-if="isShowBatch" :batch="detail.batch"></batch>
<location
title="来源库位"
:locationCode="detail.fromLocationCode">
<location title="来源库位" :locationCode="detail.fromLocationCode">
</location>
<view class="">
<location v-if="isShowToLocation"
title="目标库位"
:locationCode="detail.toLocationCode">
<location v-if="isShowToLocation" title="目标库位" :locationCode="detail.toLocationCode">
</location>
</view>
@ -23,10 +19,12 @@
:handleQty="Number(detail.handleQty)" :isShowStdPack="false">
</compare-qty>
<view class="" style="font-size: 40rpx;">
<u-button @click="copy" size="mini" type="primary">复制箱码</u-button>
<!-- <u-button @click="copy" size="mini" >复制采购标签</u-button> -->
<text style="font-size: 10rpx;color: #2979ff;" @click="copy">复制采购标签</text>
</view>
<view class="" style="font-size: 40rpx;">
<u-button @click="copyPro" size="mini" type="primary">复制制品</u-button>
<!-- <u-button @click="copyPro" size="mini" type="primary" >复制制造标签</u-button> -->
<text style="font-size: 10rpx;color: #2979ff;" @click="copyPro">复制制品标签</text>
</view>
</view>
</view>

4
pages/purchaseReceipt/job/receiptDetail.vue

@ -35,7 +35,6 @@
</template>
<script>
import {
purchaseReceiptJobSubmit,
getPurchaseReceiptJobDetail,
@ -47,6 +46,7 @@
goHome,
getCurrDateTime,
getPackingNumberAndBatch,
updateTitle
} from '@/common/basic.js';
import {
@ -107,6 +107,7 @@
} else {
this.getDetail();
}
}
},
//
@ -180,6 +181,7 @@
} else {
that.showMessage('列表数据为0');
}
updateTitle(that.jobContent.number);
}
}).catch(error => {
uni.hideLoading()

Loading…
Cancel
Save