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.
38 lines
518 B
38 lines
518 B
2 years ago
|
<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();
|
||
|
}
|
||
|
},
|
||
|
methods: {},
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|