123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <div class="exhibition-file">
- <p class="title">
- <span class=" iconfont icon-fujian"></span>
- {{exhibitionFile.title}}</p>
- <div>
- <lookFile :exhibitionFile="exhibitionFile"/>
- </div>
- </div>
- </template>
- <script>
- import lookFile from "./lookFile";
- export default {
- name: "exhibition-file",
- props: ['exhibitionFile'],
- data() {return{}},
- components:{lookFile}
- }
- </script>
- <style scoped lang="less">
- .exhibition-file {
- border: 1px solid #eeeeee;
- background: #FFFFFF;
- margin-bottom: 10px;
- .title {
- border-bottom: 1px solid #eee;
- padding: 10px 0;
- font-weight: 600;
- text-indent: 10px;
- }
- }
- </style>
|