feat: 对接完接口

This commit is contained in:
anonymous
2025-01-02 11:05:26 +08:00
parent 6d62cc0567
commit bcd940efe3
48 changed files with 1711 additions and 360 deletions
+10 -5
View File
@@ -1,4 +1,4 @@
<route lang="json5">
<route lang="json5" type="page">
{
style: {
navigationBarTitleText: '公司简介',
@@ -6,17 +6,22 @@
}
</route>
<script setup lang="ts">
import { getCompanyInfoAPI } from '@/service'
const { data: companyInfo } = useRequest(() => getCompanyInfoAPI())
</script>
<template>
<view class="pt-15 pb-50 min-h-screen">
<view class="text-center text-16 font-bold">中巴军团</view>
<view class="text-center text-16 font-bold">{{ companyInfo.title }}</view>
<image
class="w-345 h-170 rounded-10 mt-15 mx-auto block"
src="@/static/images/page-sub/introduction.png"
:src="companyInfo.cover_image"
mode="aspectFill"
/>
<view class="text-gray-500 mx-16 text-14 mt-15">
中巴军团集团有限公司由具有160年历史的上海纺织集团和具有70年外贸历史的原东方国际集团联合重组而成是一家拥有先进制造业与现代服务业以时尚产业健康产业和供应链服务为核心主业以科技实业产业地产金融投资为支撑构建一体两翼三支撑总体格局的大型综合性企业集团名列中国企业500强第275位上海企业100强第25位
集团拥有总资产627亿元员工5.8万人海外员工占70%2023年快报营业收入780亿元进出口56.64亿美元出口41.34亿美元进口15.3亿美元集团在海外拥有96家业务机构分布在五大洲27个国家和地区所属企业389家上市公司4家东方创业申达股份龙头股份香港联泰控股
{{ companyInfo.description }}
</view>
</view>
</template>