Files
hht-tongbo/pages/ProductManage/EmptyPipeInStore.vue

33 lines
509 B
Vue
Raw Normal View History

2022-10-10 17:08:52 +08:00
<template>
2022-10-10 19:58:07 +08:00
<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>
2022-10-10 17:08:52 +08:00
</view>
2022-10-10 19:58:07 +08:00
</view>
2022-10-10 17:08:52 +08:00
</template>
<script>
2022-10-10 19:58:07 +08:00
import NavBar from '@/components/NavBar.vue'
2022-10-10 17:08:52 +08:00
export default {
data() {
return {
};
2022-10-10 19:58:07 +08:00
},
components: {
NavBar
},
methods: {
2022-10-10 17:08:52 +08:00
}
}
</script>
<style lang="stylus">
</style>