| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <div class="article">
- <header-top>
- <span slot="Bigtitle">文件详情</span>
- </header-top>
- <div class="context">
- <article-main></article-main>
- </div>
- </div>
- </template>
- <script>
- // 引入的组件
- import HeaderTop from "../../components/header/header.vue";
- import ArticleMain from "./children/articlemain.vue";
- import { getpoicefile } from "../../network/poicefile";
- export default {
- name: "article",
- components: {
- HeaderTop,
- ArticleMain,
- },
- data() {
- return {};
- },
- created() {
- getpoicefile(0,1);
- },
- methods: {
- getpoicefile() {
- getpoicefile().then((res) => {
- console.log(res);
- });
- },
-
- },
- };
- </script>
- <style scoped>
- /deep/.search {
- display: none;
- }
- .context {
- width: 90%;
- margin: 0 auto;
- }
- </style>
|