Files
pad-hl-hcx-new/pages/management/hcxcheck.vue

28 lines
372 B
Vue
Raw Normal View History

2023-03-22 17:02:16 +08:00
<template>
2023-03-22 18:57:35 +08:00
<view class="content">
<nav-bar title="缓存线盘点"></nav-bar>
<view class="status-wrap">
</view>
<view class="material-wrap"></view>
2023-03-22 17:02:16 +08:00
</view>
</template>
<script>
2023-03-22 18:57:35 +08:00
import NavBar from '@/components/NavBar.vue'
2023-03-22 17:02:16 +08:00
export default {
2023-03-22 18:57:35 +08:00
components: {
NavBar
},
2023-03-22 17:02:16 +08:00
data() {
return {
};
}
}
</script>
<style lang="stylus">
</style>