Sanakey
2021-04-30 8724a444c8a1d09dc8f9efd005e8443aad8df1ab
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
<view class="container has-footer">
  <van-cell-group class="my-cell-group">
    <van-field
        class="my-cell"
        value="{{ promotionsTitle }}"
        name="promotionsTitle"
        label="活动标题"
        placeholder="建议标题文字10字以内"
        bind:blur="checkPromotionsTitle"
        error-message="{{promotionsTitleError}}"
    />
  </van-cell-group>
  <van-cell-group class="my-cell-group">
    <van-cell class="my-cell" border="{{false}}" title="报名图片"></van-cell>
    <my-file-uploader id="file-uploader" img-list="{{coverImageList}}" url="{{fileUploadUrl+'&isCoverImage=true'}}" file-delete-url="/shopping/panicBuying.do?m=deleteAttachment"></my-file-uploader>
 
  </van-cell-group>
 
  <van-cell-group class="my-cell-group">
    <van-field
        class="my-cell"
        value="{{ originalPrice }}"
        name="originalPrice"
        label="报名费用"
        placeholder="请输入报名费用"
        bind:blur="checkOriginalPrice"
        error-message="{{originalPriceError}}"
    >
      <view class="icon" slot="right-icon">
        元
      </view>
    </van-field>
 
    <my-time-quantum id="time-quantum" start-time="{{startTime}}" end-time="{{endTime}}" bind:selectedStartTime="selectedStartTime" bind:selectedEndTime="selectedEndTime"></my-time-quantum>
 
  </van-cell-group>
 
  <my-seller-edit id="seller-edit" seller-list="{{sellerList}}"></my-seller-edit>
  <van-cell-group class="my-cell-group">
    <van-cell border="{{false}}" title="请输入活动描述规则" label="建议以图片描述为主,文字描述200字以内"></van-cell>
    <van-field
        value="{{ promotionDescription }}"
        class="field-text-left"
        type="textarea"
        placeholder="点击输入活动描述"
        autosize="{{autosize}}"
        bind:blur="checkPromotionDescription"
        error-message="{{promotionDescriptionError}}"
        border="{{ false }}"
        maxlength="{{200}}"
        show-word-limit
    />
 
    <my-file-uploader id="file-uploader-multiple" img-list="{{imagesList}}" url="{{fileUploadUrl+'&isCoverImage=false'}}" multiple="{{true}}" file-delete-url="/shopping/panicBuying.do?m=deleteAttachment"></my-file-uploader>
  </van-cell-group>
</view>
<view class="fixed-footer fixed-footer-button {{!status?'flex-row':''}} space-around">
  <van-button plain class="btn-padding" wx:if="{{!status}}" type="warning" data-status="0" bind:click="onSave">保存</van-button>
  <view class="{{!status?'':'padding'}}">
    <van-button class="theme-button btn-padding" block="{{!!status}}" type="warning" data-status="1" bind:click="onSubmit">发布</van-button>
  </view>
</view>