123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <!--pages/payDeposit/payDeposit.wxml-->
- <view class="tip">
- <view class="deposit-protocol">
- <view class="offine_Tips">
- <view class="offine_Tips_title">友情提示</view>
- </view>
- <text class="offine_Tips_p">1、若竞买不成功,保证金将全额退还。</text>
- <text class="offine_Tips_p">2、若竞买成功,保证金将于您交易完成后全额退还,请您在72小时内支付尾款,逾期未付款将扣除保证金。</text>
- </view>
- </view>
- <view class="payInfo">
- <view class="deposit-sum">
- <text class="payInfo_title">公司地址:</text>
- <text bindtap="getWeiz" data-name="太原高新区电子数码港B座 " data-lat="37.7930600000" data-lng="112.5681200000" class="offine_Tips_p payInfo_content ">中国山西省太原市小店区南中环街与数码东路交叉数码港B座1层</text>
- <view class="cl"></view>
- </view>
-
- <!-- <view class="deposit-sum">
- <text class="payInfo_title">保证金:</text>
- <text class="" style="color:#e22">¥{{deposit}}元</text>
- <view class="cl"></view>
- </view> -->
- </view>
- <form bindsubmit="formSubmit" id="container" bindreset="formReset" report-submit='true'>
-
- <view class="container">
- <view class="section">
- <view class="">
- 基本信息填写
- </view>
- </view>
- <view class="section">
- <view class="section_left">
- 公司名称:
- </view>
- <input placeholder-class="place-holder" placeholder="请填写您的公司名称" type='text' name="company_name" />
- </view>
- <view class="section">
- <view class="section_left">
- 姓名:
- </view>
- <input placeholder-class="place-holder" placeholder="请填写您的真实姓名" type='text' name="name" maxlength="4" />
- </view>
- <view class="section">
- <view class="section_left">
- 手机号:
- </view>
- <input placeholder-class="place-holder" placeholder="请填写您的手机号" type='number' name="number" maxlength="11" />
- </view>
- <view class="section">
- <view class="section_left">
- 身份证号:
- </view>
- <input placeholder-class="place-holder" placeholder="请填写您的身份证号" type='number' name="card" />
- </view>
- <view class="section">
- <view class="section_left">
- 支付凭证
- </view>
-
- <view class="img-list">
- <view class="list" >
- <!-- 图片展示列表 -->
- <view class="li" wx:if="{{img.length > 0}}">
- <image class="file" src="{{img}}" bindtap="previewImage"></image>
- <!-- 删除图片 -->
- <image class="close" src="../../images/xh.png" bindtap="delImg"></image>
- </view>
- <!-- 添加图片 -->
- <view class="li" bindtap="selectimg" wx:if="{{img.length < 1}}">
- <image class="file" src="../../images/jia1.png"></image>
- </view>
- </view>
- </view>
- </view>
- <!-- 协议 -->
- <view class="protocol">
- <checkbox-group bindchange="checkboxChange">
- <label class="checkbox">
- <checkbox value="确认同意" checked='{{agree}}' />
- </label>
- </checkbox-group>
- <!-- <view class="protocol-text">
- <text>确认同意</text>
- <navigator hover-class="none" url="./pages/auctionprotocol/auctionprotocol">《竞买协议》</navigator>
- <text>和</text>
- <navigator hover-class="none" url="./pages/depositprotocol/depositprotocol">《竞买规则及注意事项》</navigator>
- </view> -->
- <view class="protocol-text">
- <text>确认同意</text>
- <navigator hover-class="none" data-id="{{bidding_agreement_path}}" bindtap="openFile">《竞买协议》</navigator>
- <text>和</text>
- <navigator hover-class="none" data-id="{{bidding_rules_path}}" bindtap="openFile">《竞买规则及注意事项》</navigator>
- </view>
- </view>
- <!-- 支付功能 -->
- <button class="pay" formType="submit">
- <text>同意并支付保证金</text>
- </button>
- </view>
- </form>
|