1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <import src="../../public/page/purchase-details.wxml" />
- <import src="../../../../public/pages/public-view.wxml" />
- <scroll-view scroll-y="{{scroll}}" class="bg-scroll-view" bindscroll="scroll" scroll-with-animation scroll-top="{{scrollView.top}}">
- <template is="purchase-top" data="{{...adapter}}" />
- <picker wx:if="{{project.s}}" bindchange="chooseProject" range="{{project.v}}">
- <template wx:if="{{project.s}}" is="choose-view" data="{{...project}}"/>
- </picker>
- <picker bindchange="chooseAccountP" range="{{accounts}}" value="{{choseAccount}}">
- <template is="choose-view" data="{{...account}}" />
- </picker>
- <template is="tips-view" wx:if="{{tips.s}}" data="{{...tips}}" />
-
- <view class="choose-account">
- <view>
- <view wx:for="{{accounts}}" wx:key="" id="{{index}}" bindtap="chooseAccount">{{item}}</view>
- </view>
- <view animation="{{accountsAnimation}}"></view>
- </view>
- <template is="total-view" wx:for="{{totals[choseAccount]}}" wx:key="" data="{{...totals[choseAccount][index]}}"/>
- <view style="width: 100%;height: 30rpx;background-color: white;"></view>
- <template is="list-view" wx:for="{{list[choseAccount]}}" wx:key="" data="{{...list[choseAccount][index]}}"/>
- <view style="width: 100%;height: 30rpx;background-color: white;"></view>
- <template is="line" wx:if="{{!adapter.isSupplementaryPay}}" />
- <view wx:if="{{!adapter.isSupplementaryPay}}" class="to-calculator" bindtap="toCalculator">
- <text>查看详情</text>
- <image src="../../../../icon/public/arrow_right_blue.png"></image>
- </view>
- <template is="charge-view" data="{{charge: adapter.charge}}" />
- <template is="purchase-details-tips" data="{{...ui.tips}}"/>
- <view class="scroll-view-bottom-view{{adapter.suffix}}"></view>
- </scroll-view>
- <view class="purchase-details-choose" style="position: fixed;top: 0;left:0" hidden="{{chooseHidden}}">
- <view>
- <view wx:for="{{ui.tips.choose.t}}" id="{{index}}" bindtap="tipsChoose" style="color:{{index == ui.tips.choose.c ? '#3296FB' : '#666666'}};" wx:key="">{{item}}</view>
- </view>
- <view>
- <view></view>
- <view animation="{{ui.tips.choose.animation}}">
- <view></view>
- </view>
- </view>
- </view>
- <template is="purchase-bottom" data="{{...adapter}}" />
- <contact show="{{showContact}}" showHeight="{{showContactHeight}}" bindhiddenContact="hiddenContactListener"></contact>
- <!-- <template is="confirm-view" data="{{...confirmView}}" /> -->
- <template name="total-view">
- <view class="total-view">
- <text>{{t}}</text>
- <text>{{c}}</text>
- </view>
- <template is="both-line" />
- </template>
- <template name="list-view">
- <view class="list-view">
- <text>{{n}}</text>
- <view wx:if="{{s}}" bindtap="yearPay">年缴</view>
- <text>¥{{p}}</text>
- </view>
- </template>
|