123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <view class='container1' ref='saveChildRef0'>
- <view class='border-tip'>
- <view class='tip'>
- <text a:if='{{isChinese}}'>
- {{tip.title.ch}}
- </text>
- <text a:if='{{!isChinese}}'>
- {{tip.title.en}}
- </text>
- </view>
- <view class='passport-area'>
- <image a:if='{{isChinese}}' src='https://renhe.hz-hanghui.com/zsms/file/permanent/passport_ch.png'>
- </image>
- <image a:if='{{!isChinese}}' src='https://renhe.hz-hanghui.com/zsms/file/permanent/passport_en.png'>
- </image>
- <image src='https://renhe.hz-hanghui.com/zsms/file/permanent/ocr_scan.gif'>
- </image>
- </view>
- <view class='tip'>
- <text a:if='{{isChinese}}'>
- {{tip.sub_title.ch}}
- </text>
- <text a:if='{{!isChinese}}'>
- {{tip.sub_title.en}}
- </text>
- </view>
- <view class='icon-area'>
- <view class='icon'>
- <image src='../../static/ocr/without_block.png'>
- </image>
- <text a:if='{{isChinese}}'>
- {{tip.sub_tip_one.ch}}
- </text>
- <text a:if='{{!isChinese}}'>
- {{tip.sub_tip_one.en}}
- </text>
- </view>
- <view class='icon'>
- <image src='../../static/ocr/keep_bright.png'>
- </image>
- <text a:if='{{isChinese}}'>
- {{tip.sub_tip_two.ch}}
- </text>
- <text a:if='{{!isChinese}}'>
- {{tip.sub_tip_two.en}}
- </text>
- </view>
- <view class='icon'>
- <image src='../../static/ocr/front.png'>
- </image>
- <text a:if='{{isChinese}}'>
- {{tip.sub_tip_three.ch}}
- </text>
- <text a:if='{{!isChinese}}'>
- {{tip.sub_tip_three.en}}
- </text>
- </view>
- </view>
- </view>
- <view class='do-area'>
- <view a:if='{{isChinese}}' class='title'>
- {{tip.do_area.ch}}
- </view>
- <view a:if='{{!isChinese}}' class='title'>
- {{tip.do_area.en}}
- </view>
- <view class='picker-area'>
- <van-cell-group ref='saveChildRef1'>
- <van-cell
- border='{{ false }}'
- required=" "
- title='{{isChinese?tip.papers_type.ch:tip.papers_type.en}}'
- is-link=" "
- use-label-slot=" "
- ref='saveChildRef2'
- >
- <view>
- <picker
- value='{{type_index}}'
- range='{{type_list}}'
- range-key="{{isChinese?'name_ch':'name_en'}}"
- onChange='chooseType'
- >
- <view a:if='{{isChinese}}'>
- {{type_index != null?type_list[type_index].name_ch:tip.papers_type.ch}}
- </view>
- <view a:if='{{!isChinese}}'>
- {{type_index != null?type_list[type_index].name_en:tip.papers_type.en}}
- </view>
- </picker>
- </view>
- </van-cell>
- </van-cell-group>
- </view>
- <view class='btn-area'>
- <btn a:if='{{isChinese}}' onTap='antmoveAction' data-antmove-tap='doOCR'>
- {{tip.submit.ch}}
- </btn>
- <btn a:if='{{!isChinese}}' onTap='antmoveAction' data-antmove-tap='doOCR'>
- {{tip.submit.en}}
- </btn>
- </view>
- </view>
- </view>
|