ypzycp/pages/examinee/expert/detail/detail.axml

56 lines
1.9 KiB
Plaintext
Raw Normal View History

2022-01-17 18:27:44 +08:00
<view class="body detail-body01">
<view class="content">
<view class="detail">
<view class="detail-describe">
2022-01-21 18:30:06 +08:00
<view class="describe-img" hidden="{{expertDetail.avatar == ''}}">
<image mode="scaleToFill" src="{{expertDetail.avatar}}" />
2022-01-17 18:27:44 +08:00
</view>
<view class="describe-txt">
<view>
咨询理念
</view>
2022-01-20 18:07:08 +08:00
<text>{{expertDetail.slogan}}</text>
2022-01-17 18:27:44 +08:00
</view>
</view>
<view class="detail-txt">
<view>个人简介</view>
2022-01-21 18:30:06 +08:00
<text>{{expertDetail.summary}}</text>
</view>
2022-01-17 18:27:44 +08:00
<view class="detail-region">
<view>
服务区域
</view>
<text>
2022-01-21 18:30:06 +08:00
{{expertDetail.service_area_text}}
2022-01-17 18:27:44 +08:00
</text>
</view>
2022-01-21 18:30:06 +08:00
<view class="detail-case" hidden="{{expertDetail.mainCaseList == ''}}">
2022-01-17 18:27:44 +08:00
<view class="case-title">
咨询案例
</view>
2022-01-21 18:30:06 +08:00
<view class="case-item" a:for="{{expertDetail.mainCaseList}}" a:for-index="index" a:for-item="item">
2022-01-17 18:27:44 +08:00
<view class="case-img">
2022-01-21 18:30:06 +08:00
<image mode="scaleToFill" src="http://aspiration.scdxtc.cn{{item.cover}}" />
2022-01-17 18:27:44 +08:00
</view>
<view class="case-txt">
<text>
2022-01-21 18:30:06 +08:00
案例{{index+1}}{{item.title}}
录取结果:{{item.result_remarks}}
专业定位:{{item.location_remarks}}
其它说明:{{item.other_remarks}}
客户反馈:{{item.account_remarks}}
2022-01-17 18:27:44 +08:00
</text>
</view>
</view>
</view>
</view>
</view>
2022-01-24 15:36:08 +08:00
<view class="detail-bottom" a:if="{{consult_amount == 0}}">
<button type="primary" class="on-click" onTap="noClick">
<navigator open-type="navigate">向TA提问</navigator>
</button>
</view>
<view class="detail-bottom" a:if="{{consult_amount == 1}}">
2022-01-21 18:30:06 +08:00
<navigator open-type="navigate" url="/pages/examinee/expert/ask/ask?id={{expertDetail.id}}">向TA提问</navigator>
2022-01-17 18:27:44 +08:00
</view>
</view>