feat: 接口对接完成

This commit is contained in:
anonymous
2025-01-03 16:44:05 +08:00
parent 0889d068a8
commit 2d19bbce4c
37 changed files with 1220 additions and 398 deletions
+17 -6
View File
@@ -8,16 +8,27 @@
</route>
<template>
<view class="pt-15 pb-50 min-h-screen">
<view class="text-center text-16 font-bold">国际钱包</view>
<view class="pt-15 pb-50 min-h-screen" v-if="introductionDetail">
<view class="text-center text-16 font-bold">{{ introductionDetail.name }}</view>
<image
class="w-345 h-170 rounded-10 mt-15 mx-auto block"
src="@/static/images/page-sub/introduction.png"
:src="introductionDetail.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家东方创业申达股份龙头股份香港联泰控股
<view class="text-gray-500 mx-16 text-14 mt-15 break-all">
{{ introductionDetail.content }}
</view>
</view>
</template>
<script setup lang="ts">
import { getIntroductionAPI } from '@/service'
const { list: introductionList } = useListPageRequest((params) =>
getIntroductionAPI({ type: 3, ...params }),
)
const introductionDetail = computed(() => {
return introductionList.value[0]
})
</script>