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
959 B
58 lines
959 B
<template>
|
|
<page-meta root-font-size="16px"></page-meta>
|
|
<view class="">
|
|
<comTransfer :byLocation='false'></comTransfer>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
goHome
|
|
} from '@/common/basic.js';
|
|
|
|
import comTransfer from '@/pages/inventory/comTransfer.vue'
|
|
export default {
|
|
name: 'transferNoLoacation',
|
|
components: {
|
|
comTransfer
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
onLoad() {},
|
|
onNavigationBarButtonTap(e) {
|
|
if (e.index === 0) {
|
|
goHome();
|
|
}else if(e.index === 1){
|
|
window.location.reload();
|
|
}
|
|
},
|
|
mounted: function() {
|
|
|
|
},
|
|
filters: {
|
|
|
|
},
|
|
methods: {}
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
/deep/ .input-value {
|
|
font-size: 16px;
|
|
}
|
|
|
|
/deep/ .uni-collapse-item__title-text {
|
|
font-size: 16px;
|
|
}
|
|
|
|
/deep/ .uni-collapse-item--border {
|
|
border-bottom-width: 0px;
|
|
border-bottom-color: #ebeef5;
|
|
}
|
|
|
|
/deep/ .uni-collapse-item--border {
|
|
border-bottom-width: 1px;
|
|
border-bottom-color: #ebeef5;
|
|
}
|
|
</style>
|
|
|