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.
 
 
 
 
 
 

39 lines
576 B

<template>
<view>
<dy-putaway type="transfer"></dy-putaway>
</view>
</template>
<script>
import {
goHome
} from '@/common/basic.js';
import dyPutaway from '@/pages/putaway/dyPutaway.vue'
export default {
name: 'rapTransfer',
components: {
dyPutaway
},
data() {
return {};
},
props: {
datacontent: {
type: Object,
value: null
}
},
//返回首页
onNavigationBarButtonTap(e) {
if (e.index === 0) {
goHome();
}else if(e.index === 1){
window.location.reload();
}
},
methods: {},
}
</script>
<style>
</style>