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.
58 lines
911 B
58 lines
911 B
2 years ago
|
<template>
|
||
|
<page-meta root-font-size="16px"></page-meta>
|
||
|
<view class="">
|
||
|
<!-- 区域内调拨(储位内移库) -->
|
||
|
<com-transfer transferType='3101'></com-transfer>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import {
|
||
|
goHome
|
||
|
} from '@/common/basic.js';
|
||
|
|
||
2 years ago
|
import comTransfer from '/pages/inventory/comTransfer.vue'
|
||
2 years ago
|
export default {
|
||
|
name: 'transfer',
|
||
|
components: {
|
||
|
comTransfer
|
||
|
},
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
onLoad() {},
|
||
|
onNavigationBarButtonTap(e) {
|
||
|
if (e.index === 0) {
|
||
|
goHome();
|
||
|
}
|
||
|
},
|
||
|
mounted: function() {
|
||
|
|
||
|
},
|
||
|
filters: {
|
||
|
|
||
|
},
|
||
|
methods: {}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
.input-value {
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
|
||
|
.uni-collapse-item__title-text {
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
|
||
|
.uni-collapse-item--border {
|
||
|
border-bottom-width: 0px;
|
||
|
border-bottom-color: #ebeef5;
|
||
|
}
|
||
|
|
||
|
.uni-collapse-item--border {
|
||
|
border-bottom-width: 1px;
|
||
|
border-bottom-color: #ebeef5;
|
||
|
}
|
||
|
</style>
|