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.

16 lines
772 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<view class="page-body-wrapper">
<!-- 扫码框 -->
<camera mode="scanCode" device-position="back" resolution="high" flash="off" binderror="error" bindscancode="scanFun" style="width: 100%; height: 400px;"></camera>
<view class="preview-tips">条码列表</view>
<view class="code-box">
<view wx:for="{{codeArr}}">
{{index+1}}{{item}}
<text class="close-btn" data-index="{{index}}" bind:tap="delCode">x</text>
</view>
</view>
<view class="btn-area">
<view class="from-submit-buttom-cancle" bind:tap="goBack">返回</view>
<view class="from-submit-buttom-confirm {{codeArr.length>0?'':'from-submit-buttom-confirm-gray'}}" bindtap="{{codeArr.length>0?'submit':''}}">确定</view>
</view>
</view>
<van-dialog id="van-dialog" />