2022-10-10 17:08:52 +08:00
|
|
|
<template>
|
|
|
|
|
<view>
|
2022-10-11 17:03:44 +08:00
|
|
|
<nav-bar title="子卷套管"></nav-bar>
|
2022-10-10 17:08:52 +08:00
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-10-11 17:03:44 +08:00
|
|
|
import NavBar from '@/components/NavBar.vue'
|
2022-10-10 17:08:52 +08:00
|
|
|
export default {
|
2022-10-11 17:03:44 +08:00
|
|
|
components: {
|
|
|
|
|
NavBar
|
|
|
|
|
},
|
2022-10-10 17:08:52 +08:00
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="stylus">
|
|
|
|
|
|
|
|
|
|
</style>
|