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.
80 lines
1.9 KiB
80 lines
1.9 KiB
12 months ago
|
<template>
|
||
|
<view class="">
|
||
|
<uni-popup ref="popup">
|
||
|
<request-common-info :dataContent="dataContent" @onClose="closePopup">
|
||
|
<view class="">
|
||
|
<view class="uni-flex uni-column">
|
||
|
<view class="item">
|
||
|
<text class="item_title">从仓库代码 : </text>
|
||
|
<text class="text_wrap">{{dataContent.fromWarehouseCode}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">到仓库代码 : </text>
|
||
|
<text class="text_wrap">{{dataContent.toWarehouseCode}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">从库位类型范围 : </text>
|
||
|
<text class="text_wrap">{{dataContent.fromLocationTypes}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">到库位类型范围 : </text>
|
||
|
<text class="text_wrap">{{dataContent.toLocationTypes}} </text>
|
||
|
</view>
|
||
|
|
||
|
<view class="item">
|
||
|
<text class="item_title">从库区代码范围 : </text>
|
||
|
<text class="text_wrap">{{dataContent.fromAreaCodes}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">到库区代码范围 : </text>
|
||
|
<text class="text_wrap">{{dataContent.toAreaCodes}} </text>
|
||
|
</view>
|
||
|
|
||
|
<view class="item">
|
||
|
<text class="item_title">供应商代码 : </text>
|
||
|
<text class="text_wrap">{{dataContent.supplierCode}} </text>
|
||
|
</view>
|
||
|
|
||
|
</view>
|
||
|
</view>
|
||
|
<u-line></u-line>
|
||
|
</request-common-info>
|
||
|
</uni-popup>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import requestCommonInfo from '@/mycomponents/request/requestCommonInfo.vue'
|
||
|
export default {
|
||
|
components: {
|
||
|
requestCommonInfo,
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
dataContent: {
|
||
|
type: Object,
|
||
|
default: {}
|
||
|
},
|
||
|
}
|
||
|
},
|
||
|
|
||
|
mounted() {},
|
||
|
props: {},
|
||
|
|
||
|
methods: {
|
||
|
openPopup(val) {
|
||
|
this.dataContent = val;
|
||
|
this.$refs.popup.open('bottom')
|
||
|
},
|
||
|
closePopup() {
|
||
|
this.$refs.popup.close()
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
|
||
|
</style>
|