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