微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

project.wxml 2.0 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!--pages/project/project.wxml-->
  2. <view class="ns" style="height:{{isIPX?'88px':'64px'}};">
  3. <image src="../../image/apply/back.png" style="top:{{isIPX?'54px':'30px'}};" mode="widthFix" bindtap="back"></image>
  4. <text style="top:{{isIPX?'54px':'30px'}};">工程项目</text>
  5. </view>
  6. <view class="search_box" style="margin-top:{{isIPX?'100px':'75px'}};">
  7. <van-search
  8. value="{{ value }}"
  9. shape="round"
  10. background="transparent"
  11. placeholder="请输入搜索关键词"
  12. clearable
  13. bind:change="goSearch"
  14. />
  15. <view class="add_btn" bindtap="goAdd"><text>新增</text></view>
  16. </view>
  17. <van-swipe-cell right-width="{{ 65 }}" class="workflow" wx:for="{{projectList}}" wx:key="index">
  18. <view class="li" bindtap="goUpdate">
  19. <view class="tit_box">
  20. <view class="tit_box_left">
  21. <image src="/image/icon/icon_gc.png" style="width: 17px; height: 15px;"></image>
  22. <text class="tit">{{item.projectName}}</text>
  23. </view>
  24. <view class="tit_type">
  25. <text>{{item.ynProjcetStatusText}}</text>
  26. </view>
  27. </view>
  28. <view class="detail_box">
  29. <text>{{item.projectContractor}}</text>
  30. <text>合同价款</text>
  31. </view>
  32. <view class="detail_time_box">
  33. <view class="detail_time">
  34. <image src="/image/icon/icon_date.png" style="width: 14px;height: 14px;"></image>
  35. <text>{{item.startTime}}-{{item.endTime}}</text>
  36. </view>
  37. <view class="detail_time">
  38. <text class="detail_box_money"><text style="font-size:12px;display: inline-block;color: #E90000;">¥</text>{{item.projectAmount}}</text>
  39. </view>
  40. </view>
  41. </view>
  42. <view slot="right" class="deleteBox">
  43. <view style="flex: 1;height: 100%;display: flex;align-items: center;">
  44. <image src="../../image/apply/icon_delete.png" style="width: 25px;height: 25px;margin: 0 auto;" data-id="{{item.id}}" data-index="{{index}}" bindtap="delete"></image>
  45. </view>
  46. </view>
  47. </van-swipe-cell>