| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 | <!-- 表单 --><My_GeneralTemplate padBot="20rpx">    <view class="store_message">        <My_GreyRectangleForm title="品牌名">            <van-field disabled="{{isDisabled}}" value="{{ fbrand }}" bind:input='eliminate' data-name="fbrand" input-class="input-class" placeholder="点击填写" border="{{ false }}" />        </My_GreyRectangleForm>        <My_GreyRectangleForm title="品牌LOGO">            <My_UploadFiles id="UploadFiles" fisadministrator="{{isDisabled}}" fileList="{{attinfos}}" previewSize="57px" upType="Logo" maxCount='1' bindimageChange="imageChange"></My_UploadFiles>        </My_GreyRectangleForm>        <My_GreyRectangleForm title="品牌展示图片">            <My_UploadFiles id="UploadFiles" fisadministrator="{{isDisabled}}" fileList="{{coverAttinfos}}" previewSize="57px" upType="LogoCover" maxCount='1' bindimageChange="coverImageChange"></My_UploadFiles>        </My_GreyRectangleForm>        <My_GreyRectangleForm title="经营类目">            <view class="manage u-line-1 {{showSaleprodclass==''?'ismanage':''}}" style="opacity: {{isDisabled?'0.3':'1'}};" bindtap="showPop">{{showSaleprodclass==''?'点击选择':showSaleprodclass}}</view>        </My_GreyRectangleForm>        <My_GreyRectangleForm title="联系人">            <van-field disabled="{{isDisabled}}" value="{{ fcontact }}" bind:input='eliminate' data-name="fcontact" input-class="input-class" placeholder="点击填写" border="{{ false }}" />        </My_GreyRectangleForm>        <My_GreyRectangleForm title="联系方式">            <van-field disabled="{{isDisabled}}" model:value="{{ fphonenumber }}" data-name="fphonenumber" input-class="input-class" placeholder="点击填写" border="{{ false }}" />        </My_GreyRectangleForm>        <My_GreyRectangleForm title="注册公司名">            <van-field disabled="{{isDisabled}}" value="{{ fagentname }}" bind:input='eliminate' data-name="fagentname" input-class="input-class" placeholder="点击填写" border="{{ false }}" />        </My_GreyRectangleForm>        <import src="/wxParse/wxParse" />        <My_GreyRectangleForm title="公司介绍">            <view style="width: 400rpx; text-align: right; color:{{errTips.fintroduction?'#EF2855':'#4BBECF'}} ; text-decoration: underline;" catchtap="toRichText">                编辑/预览            </view>        </My_GreyRectangleForm>        <My_GreyRectangleForm title="地址">            <van-field disabled="{{isDisabled}}" value="{{ faddress }}" bind:input='eliminate' data-name="faddress" input-class="input-class" placeholder="点击填写" border="{{ false }}" />        </My_GreyRectangleForm>        <My_GreyRectangleForm title="统一社会代码">            <van-field disabled="{{isDisabled}}" value="{{ fdutyparagraph }}" data-name="fdutyparagraph" bind:input='eliminate' 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>
 |