1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!-- 表单 -->
- <My_GeneralTemplate padBot="20rpx">
- <view class="store_message">
- <My_GreyRectangleForm title="品牌名" required>
- <van-field disabled="{{isDisabled}}" model:value="{{ fbrand }}" data-name="fbrand" bind:focus='inputFocus' bindblur='inputBlur' error="{{errTips.fbrand}}" input-class="input-class" placeholder="点击填写" border="{{ false }}" />
- </My_GreyRectangleForm>
- <My_GreyRectangleForm title="品牌LOGO" required>
- <My_UploadFiles id="UploadFiles" fisadministrator="{{isDisabled}}" fileList="{{attinfos}}" previewSize="57px" upType="Logo" maxCount='1' Tips="请上传logo图片" bindimageChange="imageChange"></My_UploadFiles>
- </My_GreyRectangleForm>
- <My_GreyRectangleForm title="品牌展示图片" required>
- <My_UploadFiles id="UploadFiles" fisadministrator="{{isDisabled}}" fileList="{{coverAttinfos}}" previewSize="57px" upType="LogoCover" maxCount='1' Tips="请上传logo图片" bindimageChange="coverImageChange"></My_UploadFiles>
- </My_GreyRectangleForm>
- <My_GreyRectangleForm title="经营类目" required>
- <view class="manage u-line-1 {{showSaleprodclass==''?'ismanage':''}}" style="opacity: {{isDisabled?'0.3':'1'}};" bindtap="showPop">{{showSaleprodclass==''?'点击选择':showSaleprodclass}}</view>
- </My_GreyRectangleForm>
- <My_GreyRectangleForm title="联系人" required>
- <van-field disabled="{{isDisabled}}" model:value="{{ fcontact }}" data-name="fcontact" bind:focus='inputFocus' bindblur='inputBlur' error="{{errTips.fcontact}}" input-class="input-class" placeholder="点击填写" border="{{ false }}" />
- </My_GreyRectangleForm>
- <My_GreyRectangleForm title="联系方式" required>
- <van-field disabled="{{isDisabled}}" model:value="{{ fphonenumber }}" data-name="fphonenumber" bind:focus='inputFocus' bindblur='inputBlur' error="{{errTips.fphonenumber}}" input-class="input-class" placeholder="点击填写" border="{{ false }}" />
- </My_GreyRectangleForm>
- <My_GreyRectangleForm title="注册公司名" required>
- <van-field disabled="{{isDisabled}}" model:value="{{ fagentname }}" data-name="fagentname" bind:focus='inputFocus' bindblur='inputBlur' error="{{errTips.fagentname}}" input-class="input-class" placeholder="点击填写" border="{{ false }}" />
- </My_GreyRectangleForm>
- <import src="/wxParse/wxParse" />
- <My_GreyRectangleForm title="公司介绍" required>
- <view style="width: 400rpx; text-align: right; color: #4BBECF; text-decoration: underline;" catchtap="toRichText">
- 编辑/预览
- </view>
- </My_GreyRectangleForm>
- <My_GreyRectangleForm title="地址" required>
- <van-field autosize type="textarea" disabled="{{isDisabled}}" model:value="{{ faddress }}" data-name="faddress" bind:focus='inputFocus' bindblur='inputBlur' error="{{errTips.faddress}}" input-class="input-class" placeholder="点击填写" border="{{ false }}" />
- </My_GreyRectangleForm>
- <My_GreyRectangleForm title="统一社会代码">
- <van-field disabled="{{isDisabled}}" model:value="{{ fdutyparagraph }}" input-class="input-class" placeholder="点击填写" border="{{ false }}" />
- </My_GreyRectangleForm>
- </view>
- </My_GeneralTemplate>
- <!-- 弹出层 -->
- <van-action-sheet show="{{ popups }}" bind:close="showPop">
- <My_Checkbox title="经营类目" saleprodclass="{{saleprodclass}}" bind:saleprodChange="saleprodChange"></My_Checkbox>
- </van-action-sheet>
- <!-- 提交按钮 -->
- <view wx:if="{{!isDisabled}}" class="submit_but">
- <van-button bindtap="submit" custom-class="custom-class" round color="linear-gradient(180deg, #82E0E9 0%, #4BBECF 100%);">{{butText}}</van-button>
- </view>
|