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.
80 lines
3.3 KiB
80 lines
3.3 KiB
<!--pages/release/perfectCompanyInfo/index.wxml--> |
|
<view class="perfect-companyInfo-page"> |
|
<view class="title acea-row row-middle"> 企业简介 </view> |
|
<view class="form-box"> |
|
<form catchsubmit="submit"> |
|
<view class="form-item"> |
|
<view class="label-box acea-row row-between-wrapper"> |
|
<view>企业地址<text class="red">*</text></view> |
|
<!-- <view class="chose">去选择地址</view> --> |
|
<button bindtap="showMap" class="chose">去选择地址</button> |
|
</view> |
|
<view class="inp-box"> |
|
<input type="text" placeholder="企业详细地址" name="enterpriseAddress" value="{{form.enterpriseAddress}}" /> |
|
</view> |
|
</view> |
|
<view class="form-item"> |
|
<view class="label-box acea-row row-between-wrapper"> |
|
<view>企业logo<text class="red">*</text></view> |
|
</view> |
|
<view class="upload-box"> |
|
<image src="../../../images/upload.png" wx:if="{{form.enterpriseLogo == ''}}" bindtap="uploadImg" data-type="logo"></image> |
|
<image src="{{form.enterpriseLogo}}" wx:else bindtap="uploadImg" data-type="logo" mode="aspectFill"></image> |
|
</view> |
|
</view> |
|
<view class="form-item"> |
|
<view class="label-box acea-row row-between-wrapper"> |
|
<view>企业slogan<text class="red">*</text></view> |
|
</view> |
|
<view class="inp-box"> |
|
<input type="text" placeholder="企业slogan" name="enterpriseTitle" value="{{form.enterpriseTitle}}" /> |
|
</view> |
|
</view> |
|
<view class="form-item"> |
|
<view class="label-box acea-row row-between-wrapper"> |
|
<view>企业经营范围<text class="red">*</text></view> |
|
</view> |
|
<view class="inp-box"> |
|
<input type="text" placeholder="请填写企业经营范围" value="{{form.businessNature}}" name="businessNature" /> |
|
</view> |
|
</view> |
|
<view class="form-item"> |
|
<view class="label-box acea-row row-between-wrapper"> |
|
<view>企业网站<text class="red">*</text></view> |
|
</view> |
|
<view class="inp-box"> |
|
<input type="text" placeholder="https://*******" value="{{form.enterpriseNet}}" name="enterpriseNet" /> |
|
</view> |
|
</view> |
|
<view class="form-item"> |
|
<view class="label-box acea-row row-between-wrapper"> |
|
<view>客服电话<text class="red">*</text></view> |
|
</view> |
|
<view class="inp-box"> |
|
<input type="text" placeholder="客服电话" value="{{form.enterprisePhone}}" name="enterprisePhone" /> |
|
</view> |
|
</view> |
|
<view class="form-item"> |
|
<view class="label-box acea-row row-between-wrapper"> |
|
<view>关于我们</view> |
|
</view> |
|
<view class="textarea-box"> |
|
<textarea value="{{form.resourceIntroduction}}" name="resourceIntroduction"></textarea> |
|
</view> |
|
</view> |
|
<view class="form-item"> |
|
<view class="label-box acea-row row-between-wrapper"> |
|
<view>公司展示</view> |
|
</view> |
|
<view class="upload-box"> |
|
<image src="{{item}}" wx:for="{{form.imgPaths}}" wx:key="index"></image> |
|
<image src="../../../images/upload.png" bindtap="upImgs" mode="aspectFill"></image> |
|
</view> |
|
</view> |
|
<button formType="submit" class="submit-btn">保存并提交</button> |
|
<!-- <view class="submit-btn" bindtap="submit">保存并提交</view> --> |
|
</form> |
|
</view> |
|
|
|
|
|
</view>
|
|
|