50 lines
1.4 KiB
Plaintext
50 lines
1.4 KiB
Plaintext
<!-- 申请开店 -->
|
|
|
|
<view class="apply-shop-container">
|
|
|
|
<t-input value="{{shopInfo.ShopBusinessCategoryGuid}}" label="经营类目" maxlength="10" placeholder="请输入店铺名称" align="right" />
|
|
<t-input value="{{shopInfo.ShopName}}" bindchange="onChangeShopName" label="店铺名称" maxlength="10" placeholder="请输入店铺名称" align="right" />
|
|
<t-textarea
|
|
value="{{shopInfo.ShopIntro}}"
|
|
t-class="external-class"
|
|
label="店铺简介"
|
|
placeholder="设置最大字符个数"
|
|
maxlength="50"
|
|
bindchange="onChangeShopIntro"
|
|
disableDefaultPadding="{{true}}"
|
|
indicator
|
|
/>
|
|
|
|
<view class="wrapper">
|
|
<view class="wrapper-title">店铺Logo</view>
|
|
<t-upload
|
|
mediaType="{{['image']}}"
|
|
max="{{1}}"
|
|
files="{{shopInfo.ShopLogo}}"
|
|
bind:add="handleAddLogo"
|
|
bind:remove="handleRemoveLogo"
|
|
>
|
|
</t-upload>
|
|
</view>
|
|
|
|
<view class="wrapper">
|
|
<view class="wrapper-title">营业执照</view>
|
|
<t-upload
|
|
mediaType="{{['image']}}"
|
|
max="{{1}}"
|
|
files="{{shopInfo.ShopBusinessLicense}}"
|
|
bind:add="handleAddShopBusinessLicense"
|
|
bind:remove="handleRemoveShopBusinessLicense"
|
|
>
|
|
</t-upload>
|
|
</view>
|
|
|
|
<!-- 提交按钮 -->
|
|
<view class="sub-btn-pos-box">
|
|
<view class="sub-btn-box">
|
|
<van-button class="sub-btn" type="info" size="large" round block bind:click="submit">提交</van-button>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|