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.
79 lines
4.4 KiB
79 lines
4.4 KiB
<!--pages/home/authory/index.wxml-->
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">企业认证</view>
|
|
</cu-custom>
|
|
<view class="text-sg text-gray" style="padding: 12rpx 32rpx;">公司信息</view>
|
|
<view class="cu-list menu no-card sm-border">
|
|
<!-- <view class="cu-item">
|
|
<view class="flex content cu-item" style="font-size:28rpx;padding: 32rpx 0rpx">
|
|
<view style="min-width:200rpx"><text class="text-red must">*</text>营业执照:</view>
|
|
<view style="height: 180rpx;border: 1rpx solid #f3f3f3;flex: 1;justify-content: flex-start;">
|
|
<wux-uploader count="1" column="3" fileList="{{fileList}}" bindcustomevent="onImageChange"></wux-uploader>
|
|
<view class="md-hint" style="margin-left: 24rpx;">点击上传</view>
|
|
</view>
|
|
</view>
|
|
</view> -->
|
|
<view class="bg-white" style="display:block">
|
|
<view class="flex text-sg" style="padding: 18rpx 30rpx 0rpx 30rpx"><text class="text-red" style="font-size: 28px">*</text>请拍摄/上传营业执照:</view>
|
|
<wux-uploader count="1" column="4" fileList="{{fileList}}" bindcustomevent="onImageChange"></wux-uploader>
|
|
<view style="padding: 0rpx 30rpx"><view style="border-top: 1rpx solid #f3f3f3;"></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 id="name" value="{{form.name}}" class="inputs" 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 id="uniformSocialCreditCode" value="{{form.uniformSocialCreditCode}}" class="inputs" 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 id="legalPersonName" value="{{form.legalPersonName}}" class="inputs" placeholder="请输法人姓名" bindinput="bindForm"></input>
|
|
</view>
|
|
</view>
|
|
<view class="cu-item margin-top">
|
|
<view class="flex content cu-item" style="font-size:28rpx">
|
|
<view style="min-width:200rpx">工厂占地面积:</view>
|
|
<input id="packageFactoryArea" maxlength="8" type="digit" value="{{form.packageFactoryArea}}" 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" type="number" value="{{form.numberOfEmployee}}" 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" type="number" value="{{form.numberOfPackageMachine}}" style="width:65%" placeholder="请输入工厂打包机数" bindinput="bindForm"></input>
|
|
</view>
|
|
</view>
|
|
<view id="shipmentPerMonth" class="cu-item margin-top" 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="请选择月出货量"></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="请选择从业年限"></input>
|
|
</view>
|
|
<text class="cuIcon-right text-gray"></text>
|
|
</view>
|
|
</view>
|
|
<view style="height:{{136 + safeBottom}}rpx;"></view>
|
|
<view class="cu-bar bg-white foot" style="height:{{120 + safeBottom}}rpx;padding: 32rpx 32rpx {{safeBottom + 32}}rpx 32rpx;">
|
|
<view style="width:100%">
|
|
<wux-button block type="positive" bind:click="submitForm" disabled="{{requesting}}">提交认证</wux-button>
|
|
</view>
|
|
</view>
|
|
|
|
<picker-view id="picker-view" bindcustomevent="onPickerChange"></picker-view>
|