Sanakey
2021-03-27 27d5ae4d3ff5d2eae2e700e451d1755c3c0a5128
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<view class="container">
  <view class="header text-center">
    <view class="title font-bold">
      广州索菲亚BOSS直播邀您抢福利
    </view>
    <view class="status font-size-12">活动已结束</view>
  </view>
  <my-card-container padding="0">
    <view class="statistics text-center">
      <van-row>
        <van-col span="8">
          <view class="digital font-size-12">{{promotionsData.read}}</view>
          <view class="desc font-size-12 margin-top-10">阅读数</view>
          <view class="trend margin-top-10">+{{promotionsData.readChange}}</view>
        </van-col>
        <van-col span="8">
          <view class="digital font-size-12">{{promotionsData.share}}</view>
          <view class="desc font-size-12 margin-top-10">转发数</view>
          <view class="trend margin-top-10">+{{promotionsData.shareChange}}</view>
        </van-col>
        <van-col span="8">
          <view class="digital font-size-12">{{promotionsData.deal}}</view>
          <view class="desc font-size-12 margin-top-10">成交数</view>
          <view class="trend margin-top-10">{{promotionsData.dealChange}}</view>
        </van-col>
      </van-row>
    </view>
    <view class="panel text-center">
      <van-row>
        <van-col class="" span="12">
          <view class="panel-cell flex-row flex-center">
            <van-icon name="play-circle-o" />
            <text class="text">继续活动</text>
          </view>
        </van-col>
        <van-col class="" span="12">
          <view class="panel-cell border-left flex-row flex-center">
            <van-icon name="stop-circle-o" />
            <text class="text">停止活动</text>
          </view>
        </van-col>
      </van-row>
    </view>
  </my-card-container>
</view>
<view class="margin">
  <van-row class="text-center">
    <van-col span="12">
      <my-tag class="my-tag">
        <navigator url="../promotionsRelation/promotionsRelation" class="tag-btn">
          <text class="iconfont icon-guanlian"></text>
          <text class="navigator">活动关联</text>
        </navigator>
      </my-tag>
    </van-col>
    <van-col span="12">
      <my-tag class="my-tag">
        <!--    功能号:秒杀 710802 , 报名邀约 710803 ,团购 710804-->
        <navigator wx-if="{{formId==710802}}" class="tag-btn" url="../flashSaleCreate/flashSaleCreate?doccode={{doccode}}">
          <text class="iconfont icon-bianjiedit26"></text>
          <text class="navigator">活动编辑</text>
        </navigator>
        <navigator wx-if="{{formId==710803}}" class="tag-btn" url="../signUpCreate/signUpCreate?doccode={{doccode}}">
          <text class="iconfont icon-bianjiedit26"></text>
          <text class="navigator">活动编辑</text>
        </navigator>
        <navigator wx-if="{{formId==710804}}" class="tag-btn" url="../groupBuyingCreate/groupBuyingCreate?doccode={{doccode}}">
          <text class="iconfont icon-bianjiedit26"></text>
          <text class="navigator">活动编辑</text>
        </navigator>
      </my-tag>
    </van-col>
  </van-row>
</view>
 
<view class="container">
  <my-card-container padding="0">
    <view class="card-container">
      <view class="header">
        <view class="title font-bold">成交记录</view>
        <view class="btn font-size-12" bind:tap="orderExport">
          <text class="iconfont icon-xiazai"></text> 订单导出
        </view>
      </view>
      <view class="content">
        <van-cell-group border="{{false}}">
          <van-cell center wx:for="{{arrayList}}" wx:key="key" title-width="400rpx" border="{{index!==arrayList.length-1?true:false}}">
            <view slot="icon">
              <van-image round width="80rpx" height="80rpx" class="van-image"
                         src="{{item.avatar}}"/>
            </view>
            <view class="slot-title" slot="title">
              <view class="van-cell-text no-wrap">{{item.title}}</view>
              <view class="van-cell-desc">
                {{item.date}}
              </view>
            </view>
            <view class="font-bold">
              {{item.people}}元
            </view>
          </van-cell>
        </van-cell-group>
      </view>
    </view>
  </my-card-container>
</view>