chenxuhui 7 years ago
parent
commit
fb184b0ff9
2 changed files with 10 additions and 1 deletions
  1. +5
    -0
      pages/saleForecastList/saleForecastList.wxml
  2. +5
    -1
      pages/saleForecastList/saleForecastList.wxss

+ 5
- 0
pages/saleForecastList/saleForecastList.wxml View File

@ -7,17 +7,22 @@
<!-- 未审核 -->
<swiper-item class="swiper-items1">
<scroll-view scroll-x="false" scroll-y="true" class='scroll-views' bindscrolltolower="unCheckedScrollLower">
<view class='backGroundContainer'>
<block wx:for="{{unCheckDataArr}}" wx:for-item="item" wx:key="item">
<template is="outStoreOrderTemplate" data="{{item}}" />
</block>
</view>
</scroll-view>
</swiper-item>
<!-- 已审核 -->
<swiper-item class="swiper-items2">
<scroll-view scroll-x="false" scroll-y="true" class='scroll-views' bindscrolltolower="CheckedScrollLower">
<view class='backGroundContainer'>
<block wx:for="{{checkedDataArr}}" wx:for-item="item" wx:key="item">
<template is="outStoreOrderTemplate" data="{{item}}" />
</block>
</view>
</scroll-view>
</swiper-item>
</swiper>


+ 5
- 1
pages/saleForecastList/saleForecastList.wxss View File

@ -40,7 +40,11 @@ page {
width: 100%;
display: flex;
flex-direction: column;
background-color: #fff;
}
.backGroundContainer{
background: #fff;
}
.listItem{


Loading…
Cancel
Save