1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!-- 顶部 -->
- <billrule show="{{show.growup}}" bind:close="closeTips"></billrule>
- <view class="top">
- <view class="cards-tips"><view class="tips-content"> 仅显示可申请开票的消费码</view></view>
- <view class="cards-tips" bindtap="refulePop" style="margin-right: 20rpx;">查看规则
- <view class="arrow-right"></view>
- </view>
- </view>
- <!-- 选择消费码 -->
- <view class="code">
- <!-- <view>
- <image class="left" src="https://images.weserv.nl/?url=https://lanhu.oss-cn-beijing.aliyuncs.com/psrkqu3l5bvfljlmvozc6jkcqq8bgdmkc395b8cbf-c191-45cf-abc5-695f044701ec"></image>
- </view> -->
- <!-- <text class="chooseCode">选择消费码</text> -->
- <view class="order-title ">
- 选择消费码
- </view>
- </view>
- <!-- 选择开票项 -->
- <checkbox-group class="group" wx:for="{{checkboxItems}}" wx:key="index" data-index="{{index}}" data-type="idChecked" bindchange="checkboxChange">
- <view class="chooseTerm">
- <label class="chooseTerm2">
- <checkbox class="checkbox" checked="{{item.checked}}"></checkbox>
- <view class="info">
- <view class="infoText">{{item.atitle}}</view>
- <view class="infoBox">
- <view class="infoText2">{{item.attendantNames}}</view>
- <view class="infoText3">{{item.sessionName}}({{item.policyName}})</view>
- </view>
- </view>
- <view class="leftInfo">
- <view class="infoText4">{{item.income}}<text class="infoText5">元</text>
- </view>
- <view class="infoText6">可开票金额</view>
- </view>
- </label>
- </view>
- </checkbox-group>
- <!-- 开票记录 -->
- <view class="bottom">
- <view class="bottom_top">
- <view class="allCheckedBig">
- <checkbox-group class="group" data-type="allChecked" bindchange="allChecked">
- <checkbox class="checkbox2" checked="{{isAllChecked}}"></checkbox>
- </checkbox-group>
- <view class="allChecked">全选</view>
- </view>
- <text class="consumption">
- <text style="color:#a4a4a4;font-size:24rpx">已选择{{consumpCode}}个消费码,</text><text style="font-size:24rpx"> 共</text>
- <text wx:if="{{reduceNum!=0.00}}" style="font-weight: 900;color:#eb3943;font-size:34rpx">{{ reduceNum }}</text>
- <text wx:if="{{reduceNum==0.00}}" style="font-weight: 900;color:#eb3943;font-size:34rpx">0.00</text>
- <text style="font-size:21rpx">元</text>
- </text>
- </view>
- <view class="bottom2">
- <view class="record" bindtap="invoicingRecord">开票记录</view>
- <view class="goInvoice" bindtap="goInvoice">去开票</view>
- </view>
- </view>
- <view class="box"></view>
- <!-- <view class="information">开票信息</view> -->
- <!-- 提交申请 -->
- <!-- <view class="apply">
- <view class="apply_bg">提交申请</view>
- </view> -->
|