123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!--pages/invoice/editSale/editSale.wxml-->
- <view class="page-edit">
- <view class="planer-box">
- <view class="planer-header">
- <span class="name">销售方信息</span>
- </view>
- <view class="planer-content">
- <view class="form-box">
- <view class="form-list">
- <view class="form-label">销售方姓名</view>
- <input class="input-text" bindchange="changeInput" 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" 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" id="formData.identityNumber" value="{{formData.identityNumber}}" placeholder="请输入" type="text" />
- </view>
- </view>
- <view class="user-card-box">
- <view class="card-img-box big">
- <view wx:if="{{upFileInfo}}" class="img-wrap">
- <image mode="scaleToFill" src="{{upFileInfo.url}}"></image>
- <view bindtap="removeFile" class="close"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-close.png"></image></view>
- </view>
- <view wx:if="{{!upFileInfo}}" bindtap="chooseFile" 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>
- <view class="card-info-text">
- <view class="text">请上传含有销售方身份证正反面的扫描件, 并分别在身份证正反面上签名</view>
- <view class="info">支持.pdf .jpg文件,10M以内</view>
- </view>
- </view>
- <view bindtap="showSimple" class="look-sample">查看样本</view>
- </view>
- <view bindtap="saveData" class="default-btn primary">确认</view>
- </view>
- </view>
- </view>
- <!--查看样本-->
- <view wx:if="{{isShowSimple}}" class="pop-box">
- <view class="pop-inner">
- <view class="img-simple">
- <image mode="widthFix" src="https://resource.artouchstone.com/miniapp/artist/images/invoice/card-simple.png"></image>
- </view>
- <view bindtap="hideSimple" class="pop-close"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/close.png"></image></view>
- </view>
- </view>
|