2021-04-29 10:08:41 +08:00
|
|
|
<!--pages/institutions/institutionsdetail.wxml-->
|
|
|
|
<cu-custom bgColor="bg-darkblue" isBack="{{true}}" isRelaunch="{{false}}">
|
|
|
|
<view slot="content" style="color:#FFFFFF;">培训机构详情</view>
|
|
|
|
</cu-custom>
|
|
|
|
<scroll-view style="width:100%;">
|
|
|
|
<view class="content-view">
|
|
|
|
<view class="content-detail">
|
|
|
|
<view class="notice-title text-xl text-bold">
|
2022-06-08 16:49:02 +08:00
|
|
|
{{detailBean.institutionName}}
|
2021-04-29 10:08:41 +08:00
|
|
|
</view>
|
2021-07-23 11:18:54 +08:00
|
|
|
<view class="flex margin-top-sm" style="width:100%">
|
|
|
|
<view class="text-lg text-black">
|
2022-06-08 16:49:02 +08:00
|
|
|
<text>负责人:</text>
|
|
|
|
{{detailBean.institutionPrincipal}}
|
|
|
|
</view>
|
2021-07-23 11:18:54 +08:00
|
|
|
</view>
|
|
|
|
<view class="flex margin-top-sm" style="width:100%">
|
|
|
|
<view class="text-lg text-black">
|
2022-06-08 16:49:02 +08:00
|
|
|
<text>联系方式:</text>
|
|
|
|
{{detailBean.institutionContact}}
|
|
|
|
</view>
|
2021-07-23 11:18:54 +08:00
|
|
|
</view>
|
|
|
|
<view class="flex margin-top-sm" style="width:100%">
|
|
|
|
<view class="text-lg text-black">
|
2022-06-08 16:49:02 +08:00
|
|
|
<text>成立日期:</text>
|
|
|
|
{{detailBean.institutionFoundingTime}}</view>
|
2021-07-23 11:18:54 +08:00
|
|
|
</view>
|
|
|
|
<view class="flex margin-top-sm" style="width:100%">
|
|
|
|
<view class="text-lg text-black">
|
2022-06-08 16:49:02 +08:00
|
|
|
<text>地址:</text>
|
|
|
|
{{detailBean.institutionAddress}}
|
|
|
|
</view>
|
2021-07-23 11:18:54 +08:00
|
|
|
</view>
|
|
|
|
<view class="text-df text-black margin-top">
|
|
|
|
<rich-text nodes="{{detailBean.institutionDesc}}" space="nbsp"></rich-text>
|
|
|
|
</view>
|
2022-06-08 16:49:02 +08:00
|
|
|
<view class="flex margin-top flex-direction" wx:if="{{detailBean.showPhoto && detailBean.showPhoto.length > 0}}">
|
|
|
|
<view class="margin-top-sm" wx:for="{{detailBean.showPhoto}}" wx:for-item="img" wx:key="index" >
|
2021-07-23 11:18:54 +08:00
|
|
|
<image src="{{img}}" mode="widthFix"></image>
|
|
|
|
</view>
|
2021-04-29 10:08:41 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</scroll-view>
|