Sanakey
2021-06-04 355a84d740a2a9dfa1d67cb2d2e11843d42809ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
 
<van-cell-group class="my-cell-group">
  <van-cell class="my-cell" border="{{true}}" title="营销人员" ></van-cell>
  <block wx:for="{{sellerList}}" wx:key="key">
    <van-cell title-width="220rpx" class="my-cell seller" border="{{false}}" title="营销人员姓名" value="{{item.sellerName}}" ></van-cell>
    <van-cell title-width="220rpx" class="my-cell seller" border="{{false}}" title="营销人员电话">
      <my-phone-call phone="{{item.telephone}}">
        <view class="mark">
          {{item.telephone}}
        </view>
      </my-phone-call>
    </van-cell>
  </block>
 
</van-cell-group>
 
<van-cell-group class="my-cell-group last-cell" wx:if="{{detail.description||detail.imagesUrl.length>0}}">
  <van-cell class="my-cell" border="{{true}}" title="规则详情"></van-cell>
  <view class="padding font-size-14">{{detail.description}}</view>
  <my-view-img img-class="margin-bottom-10" img-list="{{detail.imagesUrl}}" is-inline="{{false}}" wx:if="{{detail.imagesUrl.length>0}}"></my-view-img>
<!--  <block wx:for="{{detail.imagesUrl}}" wx:key="key">-->
<!--    <van-image bind:tap="viewImg" data-src="{{item.url}}" fit="widthFix" width="100%" src="{{item.url}}"></van-image>-->
<!--  </block>-->
</van-cell-group>
 
 
<view wx:if="{{hadRelationList.length>0}}">
  <view class="padding-mini">相关活动</view>
  <scroll-view  scroll-x="true" class="normal-scroll">
    <view class="padding-mini flex-row flex-center" style='width:{{hadRelationList.length*500+(10)}}rpx'>
      <navigator url="../detail/detail?doccode={{item.doccode}}" wx:for="{{hadRelationList}}" wx:key="index" class="my-card-container margin-right-10 box-shadow" data-index="{{index}}"  data-doccode="{{item.doccode}}">
        <van-image fit="cover" width="250" height="180" class="img" src="{{item.coverImageUrl}}"></van-image>
        <view class="flex-col">
          <text class="font-size-16 font-bold padding-mini">{{item.formName}} · {{item.title}}</text>
          <view class="padding-mini">
            <text class="price font-size-16">¥{{item.salesPrice}}</text>
            <text class="desc font-size-12" wx:if="{{item.salesPrice!==item.originalPrice}}"> <text class="cost-price"> ¥{{item.originalPrice}}</text></text>
          </view>
          <view class="padding-mini">
            <van-button round block type="warning" class="theme-button">查看详情</van-button>
          </view>
        </view>
      </navigator>
    </view>
  </scroll-view>
</view>