| | |
| | | * @Author: shuishen 1109946754@qq.com |
| | | * @Date: 2023-03-13 14:54:26 |
| | | * @LastEditors: shuishen 1109946754@qq.com |
| | | * @LastEditTime: 2023-03-13 15:00:55 |
| | | * @FilePath: \forest-fire\src\views\statistics\components\box\dataContent.vue |
| | | * @LastEditTime: 2024-11-27 15:40:42 |
| | | * @FilePath: \bigScreen\src\views\companyInfo\components\box\fireSource.vue |
| | | * @Description: |
| | | * |
| | | * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved. |
| | |
| | | :preview-src-list="[data.companyInfo.imageUrls]" :initial-index="4" fit="cover"> |
| | | <template #error> |
| | | <div class="image-slot"> |
| | | <el-icon><icon-picture /></el-icon> |
| | | <el-icon><Picture /></el-icon> |
| | | </div> |
| | | </template> |
| | | </el-image> |
| | |
| | | </div> |
| | | |
| | | <div class="company-info"> |
| | | <div class="" style="text-align: center;margin-top: 10px;">基本信息</div> |
| | | <div class="company-info-item" v-for="item in companyInfoList" :key="item.id"> |
| | | <el-row> |
| | | <el-col :span="8"> |
| | | <el-col :span="6"> |
| | | <div class="company-info-title">{{ item.title }}</div> |
| | | </el-col> |
| | | <el-col :span="16"> |
| | | <el-col :span="18"> |
| | | <div class="company-info-content">{{ item.content }}</div> |
| | | </el-col> |
| | | </el-row> |
| | |
| | | <div class="" style="text-align: center;margin-top: 10px;">救援队伍</div> |
| | | <div class="company-info-item" v-for="item in rescueTeamList" :key="item.id"> |
| | | <el-row> |
| | | <el-col :span="8"> |
| | | <el-col :span="6"> |
| | | <div class="company-info-title">{{ item.title }}</div> |
| | | </el-col> |
| | | <el-col :span="16"> |
| | | <el-col :span="18"> |
| | | <div class="company-info-content">{{ item.content }}</div> |
| | | </el-col> |
| | | </el-row> |
| | |
| | | </template> |
| | | |
| | | <script setup> |
| | | import { Picture } from '@element-plus/icons-vue' |
| | | |
| | | import publicContent from './publicContent.vue' |
| | | import { getAssetsFile } from 'utils/utils' |
| | | import { getfirmInfoDetail } from '@/api/indParkInfo' |
| | |
| | | } |
| | | |
| | | .company-info-item { |
| | | margin-top: 13px; |
| | | // margin-top: 13px; |
| | | } |
| | | |
| | | .company-info-title { |
| | | font-weight: bold; |
| | | // font-weight: bold; |
| | | margin: 4px 0; |
| | | } |
| | | |
| | | .company-info-content { |
| | | font-size: 13px; |
| | | // font-size: 13px; |
| | | margin: 4px 0; |
| | | |
| | | } |
| | | |