You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
789 B
18 lines
789 B
<!--package/expertSystem/expertSystem.wxml-->
|
|
<view class="page">
|
|
<view class="card flex flex-start" wx:for="{{list}}" wx:key="*this">
|
|
<!-- <view class="img" style="background-color: beige;"></view> -->
|
|
<image class="img" src="{{item.img}}" mode="aspectFit" />
|
|
<view class="right">
|
|
<view class="right-top flex flex-between">
|
|
<view class="name">{{item.name}}</view>
|
|
<button class="btn" size="mini" type="primary" bindtap="toCall" data-phone="{{item.phone}}">立即咨询</button>
|
|
</view>
|
|
<view class="right-bottom">
|
|
<view class="info">职务:{{item.job}}</view>
|
|
<view class="info">电话:{{item.phone}}</view>
|
|
<view class="info">专业领域:{{item.expertise}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|