| 12345678910111213141516171819202122 | 
							- <van-search id='Search' value="{{ condition }}" shape="round" background="var(--primary)" bind:search='startSearch' bind:clear='cancelSearch' placeholder="搜索" />
 
- <My_listBox id='ListBox' height='{{scrollHeight}}' bind:getlist='getList'>
 
-     <view class="total">总共{{total}}个</view>
 
-     <block wx:if="{{myProject}}">
 
-         <van-swipe-cell wx:for="{{list}}" wx:key="item.billnum" right-width="{{ 60 }}" id="swipe-cell" async-close bind:close="onClose">
 
-             <van-cell-group>
 
-                 <project item="{{item}}" data-item="{{item}}" catchtap="toReportForms" />
 
-             </van-cell-group>
 
-             <view slot="right" class="slide">
 
-                 <van-button custom-class='but' color="#FF3B30" bindtap="deleteProject" data-item="{{item}}">删除</van-button>
 
-             </view>
 
-         </van-swipe-cell>
 
-     </block>
 
-     <block wx:else>
 
-         <project wx:for="{{list}}" item="{{item}}" data-item="{{item}}" wx:key="item.billnum" bindtap="toReportForms" />
 
-     </block>
 
-     <My_empty wx:if="{{list.length==0}}" />
 
- </My_listBox>
 
- <view class="footer" wx:if="{{myProject}}">
 
-     <van-button custom-class='but' bindtap="addProjece">添加项目</van-button>
 
- </view>
 
- <projectList id='Plist' list='{{projectList}}' showList='{{projectList}}' bindgetResult="getResult" />
 
 
  |