12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <template>
- <div id="company">
- <el-row>
- <el-col :span="24">
- <el-col :span="24" class="top">
- <el-col :span="24" class="english">
- {{ companytop.english }}
- </el-col>
- <el-col :span="24" class="title">
- {{ companytop.title }}
- </el-col>
- </el-col>
- <el-col :span="24" class="info">
- <el-col :span="12" class="companylist" v-for="(item, index) in companylist" :key="index">
- <el-col :span="24">
- <p class="title">{{ item.corpname }}</p>
- </el-col>
- </el-col>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- export default {
- name: 'company',
- props: {
- companytop: null,
- companylist: null,
- },
- components: {},
- data: () => ({}),
- created() {},
- computed: {},
- methods: {},
- };
- </script>
- <style lang="less" scoped>
- p {
- margin: 0;
- padding: 0;
- }
- .top {
- height: 92px;
- text-align: center;
- }
- .top .english {
- text-transform: uppercase;
- color: #5b5e66;
- font-family: 微软雅黑;
- font-size: 42px;
- }
- .top .title {
- color: #415285;
- font-size: 36px;
- font-family: 微软雅黑;
- }
- .companylist {
- padding: 48px 10px 0 0;
- }
- .companylist .title {
- color: #5b5e66;
- font-size: 24px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- </style>
|