| | |
| | | </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> |
| | |
| | | } |
| | | |
| | | .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; |
| | | |
| | | } |
| | | |