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.
75 lines
1.7 KiB
75 lines
1.7 KiB
12 months ago
|
<template>
|
||
|
<view class="uni-flex u-col-center" style="padding-top: 15rpx;
|
||
|
padding-bottom: 15rpx;
|
||
|
padding-left: 10rpx;
|
||
|
padding-right: 10rpx;
|
||
|
font-size:32rpx;background-color: #fff;">
|
||
|
<text style="font-size: 35rpx;">{{title}} </text>
|
||
|
<view class="uni-flex u-col-center" @click="showLocation">
|
||
|
<text style="color:#3FBAFF;font-size: 35rpx;" v-if="locationCode==''&&isShowEdit==true">  请扫描</text>
|
||
|
<text style="color:#3FBAFF; font-size: 35rpx;">  {{locationCode}}</text>
|
||
|
<image v-if="isShowEdit" style="width: 45rpx;height: 45rpx;" src="/static/icons/icons_edit.svg"
|
||
|
></image>
|
||
|
</view>
|
||
|
<win-scan-location ref="scanLocationCode" :title="title" @getLocation='getLocation'
|
||
|
:locationTypeList="locationTypeList"></win-scan-location>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import winScanLocation from "@/mycomponents/scan/winScanLocation.vue"
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
winScanLocation
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
defaultlocationCode: ""
|
||
|
}
|
||
|
},
|
||
|
props: {
|
||
|
title: {
|
||
|
type: String,
|
||
|
default: "需求库位"
|
||
|
},
|
||
|
locationCode: {
|
||
|
type: String,
|
||
|
default: ""
|
||
|
},
|
||
|
isShowEdit: {
|
||
|
type: Boolean,
|
||
|
default: true
|
||
|
},
|
||
|
locationTypeList: {
|
||
|
type: Array,
|
||
|
default: []
|
||
|
}
|
||
|
},
|
||
|
|
||
|
watch: {
|
||
|
// locationCode: {
|
||
|
// handler(newName, oldName) {
|
||
|
// if (this.locationCode != "") {
|
||
|
// this.defaultlocationCode = this.locationCode;
|
||
|
// }
|
||
|
// },
|
||
|
// immediate: true,
|
||
|
// deep: true
|
||
|
// }
|
||
|
},
|
||
|
methods: {
|
||
|
showLocation() {
|
||
|
this.$refs.scanLocationCode.openScanPopup();
|
||
|
},
|
||
|
//扫描源库位
|
||
|
getLocation(location, code) {
|
||
|
this.$emit("getLocation", location, code)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|