123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!--pages/invoice/authentication/authentication.wxml-->
- <view class="page-auth">
- <view class="auth-user">
- <view class="icon">
- <image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-company-round.png"></image>
- </view>
- </view>
- <view class="form-box">
- <view class="form-list">
- <view class="form-label">公司名称</view>
- <input class="input-text" bindchange="changeInput" bindblur="validateHanlder" id="formData.name" value="{{formData.name}}" placeholder="请输入公司名称" type="text" />
- </view>
- <view class="form-list">
- <view class="form-label">公司统一社会信用代码</view>
- <input class="input-text" bindchange="changeInput" bindblur="validateHanlder" id="formData.businessLicenseNo" value="{{formData.businessLicenseNo}}" placeholder="请输入" type="text" />
- </view>
- <view class="form-list">
- <view class="form-label">公司电话</view>
- <input class="input-text" bindchange="changeInput" bindblur="validateHanlder" id="formData.phoneNumber" value="{{formData.phoneNumber}}" placeholder="请输入公司电话" type="text" />
- </view>
- <view class="form-list">
- <view class="form-label">公司地址</view>
- <input class="input-text" bindchange="changeInput" bindblur="validateHanlder" id="formData.address" value="{{formData.address}}" placeholder="请输入公司地址" type="text" />
- </view>
- </view>
- <view class="user-card-box">
- <view class="card-img-box">
- <view wx:if="{{businessLicenseFileInfo}}" class="img-wrap">
- <image mode="scaleToFill" src="{{businessLicenseFileInfo.url}}"></image>
- <view bindtap="removeChooseFile" class="close"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-close.png"></image></view>
- </view>
- <view bindtap="chooseFile" wx:if="{{!businessLicenseFileInfo}}" class="item-info">
- <view class="icon">
- <image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-add-file.png"></image>
- </view>
- <view class="text">点击上传营业执照</view>
- <view class="info">支持.pdf .jpg文件,10M以内</view>
- </view>
- </view>
- </view>
- <view bindtap="saveData" class="default-btn {{isValidate?'primary':''}}">提交</view>
- </view>
|