123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <div class='floor-function'>
- <div class="floor-item">
- <div class="floor-item-title">
- <span class="floor-item-text">F3</span>
- <a class="floor-item-goMap">查看平面图</a>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'FloorFunc',
- props: {},
- data() {
- return {}
- },
- components: {},
- beforeMount() {},
- mounted() {},
- methods: {},
- }
- </script>
- <style lang='less' scoped>
- .floor-function {
- width: 100%;
- height: calc(100% - 50px);
- background-color: #FFFFFF;
- box-sizing: border-box;
- .floor-item-title {
- padding: 0 10px;
- height: 44px;
- line-height: 44px;
- background: rgba(2, 91, 170, 0.1);
- color: #025BAA;
- .floor-item-text {
- font-size: 16px;
- font-weight: 600;
- display: inline-block;
- height: 44px;
- line-height: 44px;
- }
- .floor-item-goMap {
- height: 44px;
- line-height: 44px;
- font-size: 14px;
- float: right;
- }
- }
- }
- </style>
|