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.
48 lines
825 B
48 lines
825 B
<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();
|
|
}else if(e.index === 1){
|
|
window.location.reload();
|
|
}
|
|
},
|
|
methods: {
|
|
showMessage(message) {
|
|
this.$refs.comMessage.showMessage(message);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '../../common/pdabasic.css';
|
|
</style>
|
|
|