41 lines
2.1 KiB
Plaintext
41 lines
2.1 KiB
Plaintext
<!--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">
|
|
<text>{{detailBean.institutionName}}</text>
|
|
</view>
|
|
<view class="line-gray margin-top-sm" style="width:100%;height:20rpx;"></view>
|
|
<view class="flex margin-top-sm" style="width:100%">
|
|
<view class="text-lg text-black">
|
|
<text class="cuIcon-people text-darkblue"></text>
|
|
负责人:{{detailBean.institutionPrincipal}}</view>
|
|
</view>
|
|
<view class="flex margin-top-sm" style="width:100%">
|
|
<view class="text-lg text-black">
|
|
<text class="cuIcon-mobile text-darkblue"></text>
|
|
联系方式:{{detailBean.institutionContact}}</view>
|
|
</view>
|
|
<view class="flex margin-top-sm" style="width:100%">
|
|
<view class="text-lg text-black">
|
|
<text class="cuIcon-time text-darkblue"></text>
|
|
成立日期:{{detailBean.institutionFoundingTime}}</view>
|
|
</view>
|
|
<view class="flex margin-top-sm" style="width:100%">
|
|
<view class="text-lg text-black">
|
|
<text class="cuIcon-location text-darkblue"></text>地址:{{detailBean.institutionAddress}}</view>
|
|
</view>
|
|
<view class="text-df text-black margin-top">
|
|
<rich-text nodes="{{detailBean.institutionDesc}}" space="nbsp"></rich-text>
|
|
</view>
|
|
<view class="flex margin-top flex-direction">
|
|
<view class="margin-top-sm" wx:for="{{detailBean.showPhoto}}" wx:for-item="img" wx:key="index">
|
|
<image src="{{img}}" mode="widthFix"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view> |