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.
47 lines
767 B
47 lines
767 B
2 years ago
|
<template>
|
||
|
<page-meta root-font-size="18px"></page-meta>
|
||
|
<com-putaway :isByLocation='true'></com-putaway>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import comPutaway from '@/pages/task/putaway.vue'
|
||
|
import comMessage from '@/mycomponents/common/comMessage.vue'
|
||
|
import {
|
||
|
goHome
|
||
|
} from '@/common/basic.js';
|
||
|
export default {
|
||
|
name: 'putawayByLocation',
|
||
|
components: {
|
||
|
comPutaway,
|
||
|
comMessage
|
||
|
},
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
props: {
|
||
|
|
||
|
},
|
||
|
onShow() {
|
||
|
|
||
|
},
|
||
|
onPullDownRefresh() {
|
||
|
|
||
|
},
|
||
|
//返回首页
|
||
|
onNavigationBarButtonTap(e) {
|
||
|
if (e.index === 0) {
|
||
|
goHome();
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
showMessage(message) {
|
||
|
this.$refs.comMessage.showMessage(message);
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
@import '../../common/pdabasic.css';
|
||
|
</style>
|