28 lines
372 B
Vue
28 lines
372 B
Vue
<template>
|
|
<view class="content">
|
|
<nav-bar title="缓存线盘点"></nav-bar>
|
|
<view class="status-wrap">
|
|
|
|
</view>
|
|
<view class="material-wrap"></view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
export default {
|
|
components: {
|
|
NavBar
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
|
|
</style>
|