33 lines
509 B
Vue
33 lines
509 B
Vue
<template>
|
|
<view>
|
|
<nav-bar title="空管入库"></nav-bar>
|
|
<view class="content">
|
|
<view class="container"></view>
|
|
<view class="submit-bar">
|
|
<button class="submit-button btn-disabled">入库确认</button>
|
|
<button class="submit-button">查询</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
components: {
|
|
NavBar
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
|
|
</style>
|