12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!--plugin/components/enterpriseUpload/enterpriseUpload.wxml-->
- <view class="Upload Upload_enterprise">
- <view class="Upload_enterprise__content">
- <view>
- <view class="cu-form-new-group" style="padding: 0 !important;">
- <view class="flex-sub">
- <view style="width:298rpx;height:176rpx;" class="bg-img position-father" bindtap="viewImage" data-type="{{leftPath}}" wx:if="{{leftPath}}">
- <image src="{{leftPath}}" mode="aspectFit" style="width:298rpx;height:176rpx;"></image>
- <view class="cu-tag bg-brown position-right" catchtap="delImg" data-type="left">
- <image src="../../static/delete.png" style="width:40rpx;height:40rpx;"></image>
- </view>
- </view>
- <view wx:if="{{!showOne && !leftPath}}" bindtap="chooseImage" data-side="1">
- <view class="solids image-show" style="width:298rpx;height:176rpx;position: relative;">
- <image src="../../static/handleCar/uploadEnterprise_z@2x.png" style="width:298rpx;height:176rpx;"></image>
- </view>
- </view>
- </view>
- </view>
- <view class="id-tip">营业执照(正本)</view>
- </view>
- <view wx:if="!showOne">
- <view class="cu-form-new-group">
- <view class="flex-sub">
- <view style="width:298rpx;height:176rpx;" class="bg-img position-father" wx:if="{{rightPath}}" bindtap="viewImage" data-type="{{rightPath}}">
- <image src="{{rightPath}}" mode="aspectFit" style="width:298rpx;height:176rpx;"></image>
- <view class="cu-tag bg-brown position-right" catchtap="delImg" data-type="right">
- <image src="../../static/delete.png" style="width:40rpx;height:40rpx;"></image>
- </view>
- </view>
- <view wx:if="{{!showOne && !rightPath}}" bindtap="chooseImage" data-side="2">
- <view class="solids image-show" style="width:298rpx;height:176rpx;">
- <image src="../../static/handleCar/uploadEnterprise_f@2x.png" style="width:298rpx;height:176rpx;position: relative;"></image>
- </view>
- </view>
- </view>
- </view>
- <view class="id-tip">介绍信</view>
- </view>
- </view>
- <compress id="compress" bind:result="compressRes"></compress>
- <loading isShow="{{isLoading}}" />
- </view>
|