Sanakey
2021-06-04 355a84d740a2a9dfa1d67cb2d2e11843d42809ac
提交 | 用户 | age
b6cc28 1 <view class="container has-footer">
S 2   <van-cell-group class="my-cell-group">
3     <van-field
4         class="my-cell"
5         value="{{ promotionsTitle }}"
6         name="promotionsTitle"
7         label="活动标题"
355a84 8         placeholder="建议标题文字在3-14字之间"
b6cc28 9         bind:blur="checkPromotionsTitle"
S 10         error-message="{{promotionsTitleError}}"
11     />
12   </van-cell-group>
13   <van-cell-group class="my-cell-group">
27d5ae 14     <van-cell class="my-cell" border="{{false}}" title="报名图片"></van-cell>
282d69 15     <my-file-uploader id="file-uploader" img-list="{{coverImageList}}" url="{{fileUploadUrl+'&isCoverImage=true'}}" file-delete-url="/shopping/panicBuying.do?m=deleteAttachment"></my-file-uploader>
S 16
b6cc28 17   </van-cell-group>
S 18
19   <van-cell-group class="my-cell-group">
20     <van-field
21         class="my-cell"
22         value="{{ originalPrice }}"
23         name="originalPrice"
27d5ae 24         label="报名费用"
f46177 25         type="digit"
27d5ae 26         placeholder="请输入报名费用"
b6cc28 27         bind:blur="checkOriginalPrice"
S 28         error-message="{{originalPriceError}}"
29     >
30       <view class="icon" slot="right-icon">
31         元
32       </view>
33     </van-field>
34
282d69 35     <my-time-quantum id="time-quantum" start-time="{{startTime}}" end-time="{{endTime}}" bind:selectedStartTime="selectedStartTime" bind:selectedEndTime="selectedEndTime"></my-time-quantum>
27d5ae 36
b6cc28 37   </van-cell-group>
S 38
f46177 39   <view class="desc font-size-12 padding-lr"><text class="iconfont icon-gantanhao-xianxingyuankuang theme-font-color"></text> 客户报名之后,金额将扣除平台手续费{{feeRateForPay||0}}%后,打入后台账户,请手动提现。</view>
S 40
355a84 41   <my-seller-edit id="seller-edit" seller-list="{{sellerList}}" from="{{fromPage}}"></my-seller-edit>
b6cc28 42   <van-cell-group class="my-cell-group">
d38be7 43     <van-cell border="{{false}}" title="请输入活动描述规则"></van-cell>
b6cc28 44     <van-field
282d69 45         value="{{ promotionDescription }}"
27d5ae 46         class="field-text-left"
b6cc28 47         type="textarea"
d38be7 48         placeholder="点击输入活动描述,文字描述200字以内"
27d5ae 49         autosize="{{autosize}}"
S 50         bind:blur="checkPromotionDescription"
51         error-message="{{promotionDescriptionError}}"
b6cc28 52         border="{{ false }}"
S 53         maxlength="{{200}}"
54         show-word-limit
55     />
282d69 56
S 57     <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>
b6cc28 58   </van-cell-group>
S 59 </view>
8724a4 60 <view class="fixed-footer fixed-footer-button {{!status?'flex-row':''}} space-around">
282d69 61   <van-button plain class="btn-padding" wx:if="{{!status}}" type="warning" data-status="0" bind:click="onSave">保存</van-button>
8724a4 62   <view class="{{!status?'':'padding'}}">
S 63     <van-button class="theme-button btn-padding" block="{{!!status}}" type="warning" data-status="1" bind:click="onSubmit">发布</van-button>
64   </view>
b6cc28 65 </view>
355a84 66
S 67 <my-seller-verify-dialog is-show="{{isShowDialog}}" seller-unchecked-names="{{sellerUnCheckedNames}}"></my-seller-verify-dialog>