|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!--pages/apply/index.wxml-->
- <view class="ns" style="height:{{isIPX?'88px':'64px'}};">
- <image src="../../../image/apply/back.png" style="top:{{isIPX?'54px':'30px'}};" mode="widthFix" bindtap="back"></image>
- <text style="top:{{isIPX?'54px':'30px'}};">记账申请</text>
- </view>
- <view class="work_plan" style="margin-top:{{isIPX?'100px':'75px'}};">
- <view>
- <view class="menu_item {{inOrOut?'active':''}}" bindtap="switchTab" data-gid='{{1}}'>收入流水<text class="remind">0</text></view>
- <view class="menu_item {{!inOrOut?'active':''}}" bindtap="switchTab" data-gid='{{2}}'>支出流水<text class="remind">0</text></view>
- </view>
- <view style="border:1px solid #ddd;background: #fff;border-radius: 30rpx;line-height: 60rpx;padding: 0 25rpx;">
- <picker bindchange="bindPickerChange" value="{{index}}" range="{{array}}">
- <view class="picker">
- {{array[index]}}
- <image src="../../../image/icon/triangle.png" style="height:25rpx;width:25rpx;margin-right: 10rpx;"></image>
- </view>
- </picker>
- </view>
- </view>
- <view class="main-box table-box" wx:if="{{inOrOut}}" wx:for="{{list}}" wx:key="id">
- <view style="flex:1;"><checkbox value="cb" checked="true" style="margin-top: 33rpx;"/></view>
- <view style="flex:4;">
- <view><text>银行流水</text></view>
- <view><image src="../../../image/icon/inCome.png" style="height:25rpx;width:25rpx;margin-right: 10rpx;"></image><text>罚款收入</text></view>
- </view>
- <view style="flex:3;">
- <view><text style="color:#a4ea64;">附件6</text> </view>
- <view><text style="color:#7c83a0">2020-02-11</text></view>
- </view>
- <view style="flex:3;text-align: right;">
- <view>
- <view style="display: inline-block;background: lightcoral;border-radius: 10rpx;padding:0 10rpx;">
- <image src="../../../image/icon/stop.png" style="height:25rpx;width:25rpx;margin-right: 10rpx;"></image><text>未提交</text>
- </view>
- </view>
- <view>
- <text style="color:#3c9370;">¥3300.00</text>
- </view>
- </view>
- </view>
- <view class="main-box table-box" wx:if="{{!inOrOut}}" wx:for="{{list1}}" wx:key="id">
- <view style="flex:1;"><checkbox value="cb" checked="true" style="margin-top: 33rpx;"/></view>
- <view style="flex:4;">
- <view><text>银行流水</text></view>
- <view><image src="../../../image/icon/inCome.png" style="height:25rpx;width:25rpx;margin-right: 10rpx;"></image><text>罚款支出</text></view>
- </view>
- <view style="flex:3;">
- <view><text style="color:#a4ea64;">附件6</text> </view>
- <view><text style="color:#7c83a0">2020-02-11</text></view>
- </view>
- <view style="flex:3;text-align: right;">
- <view>
- <view style="display: inline-block;background: lightcoral;border-radius: 10rpx;padding:0 10rpx;">
- <image src="../../../image/icon/stop.png" style="height:25rpx;width:25rpx;margin-right: 10rpx;"></image><text>未提交</text>
- </view>
- </view>
- <view>
- <text style="color:#3c9370;">¥3300.00</text>
- </view>
- </view>
- </view>
|