纸通宝小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

73 lines
3.9 KiB

<!--pages/home/authory/index.wxml-->
<cu-custom bgColor="bg-white" isBack="{{true}}">
<view slot="content">企业认证</view>
</cu-custom>
<view class="cu-bar bg-white" style="min-height:90rpx">
<view class="action" style="color:#333333"><text class="text-red must">*</text>请拍摄/上传营业执照</view>
</view>
<view class="cu-list menu no-card sm-border">
<view class="cu-item" style="width:100%;padding-bottom:30rpx">
<view class="image-reader-item" bindtap="chooseImage" data-index="0" wx:if="{{!imgList[0]}}">
<!-- <text class="cuIcon-cameraadd md-icon" style="font-size:50rpx" wx:if="{{!flag}}"></text>
<text class="md-hint" wx:if="{{!flag}}">身份证正面</text> -->
<image style="width:100%;height:400rpx" mode="aspectFill" src="https://pic.downk.cc/item/5f34a45714195aa5942df93b.png"></image>
</view>
<view class="image-reader-item" bindtap="viewImage" data-url="{{imgList[0]}}" wx:else>
<image style="width:100%;height: 400rpx" src="{{imgList[0]}}" mode="aspectFill"></image>
<view class="delete" catchtap="deleteImg" data-index="0" wx:if="{{!flag}}">
<text class="cuIcon-close {{pathList[0].status===-1?'text-red':'text-white'}}"></text>
</view>
</view>
</view>
<view class="cu-item">
<view class="flex content cu-item" style="font-size:28rpx">
<view style="min-width:200rpx"><text class="text-red must">*</text>公司名称:</view>
<input maxlength="8" value="{{form.realName}}" class="inputs" disabled="{{disabled}}" placeholder="请输入公司名称" bindinput="bindForm"></input>
</view>
</view>
<view class="cu-item">
<view class="flex content cu-item" style="font-size:28rpx">
<view style="min-width:200rpx"><text class="text-red must">*</text>信用代码:</view>
<input value="{{form.certificateNo}}" class="inputs" disabled="{{disabled}}" placeholder="请输社会入统一信用代码" bindinput="bindForm"></input>
</view>
</view>
<view class="cu-item">
<view class="flex content cu-item" style="font-size:28rpx">
<view style="min-width:200rpx">工厂占地面积:</view>
<input id="packageFactoryArea" maxlength="8" value="{{form.realName}}" style="width:65%" placeholder="请输入工厂占地面积(㎡)" bindinput="bindForm"></input>
</view>
</view>
<view class="cu-item">
<view class="flex content cu-item" style="font-size:28rpx">
<view style="min-width:200rpx">工厂人数:</view>
<input id="numberOfEmployee" maxlength="8" value="{{form.realName}}" style="width:65%" placeholder="请输入工厂人数" bindinput="bindForm"></input>
</view>
</view>
<view class="cu-item">
<view class="flex content cu-item" style="font-size:28rpx">
<view style="min-width:200rpx">工厂打包机数:</view>
<input id="numberOfPackageMachine" maxlength="8" value="{{form.realName}}" style="width:65%" placeholder="请输入工厂打包机数" bindinput="bindForm"></input>
</view>
</view>
<view id="shipmentPerMonth" class="cu-item" bindtap="showPicker">
<view class="flex content cu-item" style="font-size:28rpx">
<view style="min-width:200rpx">月出货量:</view>
<input maxlength="8" value="{{form.shipmentPerMonth}}" disabled style="width:65%" placeholder="请选择月出货量" bindinput="bindForm"></input>
</view>
<text class="cuIcon-right text-gray"></text>
</view>
<view id="experienceTag" class="cu-item" bindtap="showPicker">
<view class="flex content cu-item" style="font-size:28rpx">
<view style="min-width:200rpx">从业经验:</view>
<input maxlength="8" value="{{form.experienceTag}}" disabled style="width:65%" placeholder="请选择从业年限" bindinput="bindForm"></input>
</view>
<text class="cuIcon-right text-gray"></text>
</view>
</view>
<view class="flex flex-direction" style="padding: 32rpx">
<wux-button block type="positive" bind:click="submitForm">提交认证</wux-button>
</view>
<picker-view id="picker-view" bindcustomevent="onPickerChange"></picker-view>