微信小程序
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.

fixedAssets.wxml 2.8 KiB

3 年之前
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!--pages/fixedAssets/fixedAssets.wxml-->
  2. <view class="ns" id="top_ban" style="height:{{isIPX?'88px':'64px'}};">
  3. <image src="../../image/apply/back.png" style="top:{{isIPX?'54px':'30px'}};" mode="widthFix" bindtap="back" referrer="no-referrer|origin|unsafe-url"></image>
  4. <text style="top:{{isIPX?'54px':'30px'}};">可关联固定资产</text>
  5. </view>
  6. <view class="search_box" id="top_view" style="margin-top:{{isIPX?'100px':'75px'}};">
  7. <van-search
  8. value="{{ name }}"
  9. shape="round"
  10. background="transparent"
  11. placeholder="请输入搜索关键词"
  12. clearable
  13. bind:change="goSearch"
  14. />
  15. </view>
  16. <scroll-view scroll-y refresher-threshold="0" style="height:{{scrollHeight}}px" bindscrolltolower="paging" lower-threshold="100">
  17. <van-swipe-cell class="workflow" wx:for="{{list}}" wx:key="index" wx:for-item="item" >
  18. <view class="li" bindtap="goUpdate" data-item="{{item}}">
  19. <view class="tit_box">
  20. <image src="/image/icon/fixedAssets_icon.png" style="width: 15px;height: 15px;margin-right: 10px;" referrer="no-referrer|origin|unsafe-url"></image>
  21. <text class="tit">{{item.name}}</text>
  22. <view style="flex:1;">
  23. <text wx:if="{{item.useType=='1'}}" style="text-align: center;float:right;font-size:12px;background:rgb(235, 154, 4,0.2);color:rgb(235, 154, 4);width:50px;line-height: 20px;">自用</text>
  24. <text wx:if="{{item.useType=='2'}}" style="text-align: center;float:right;font-size:12px;background:rgb(235, 154, 4,0.2);color:rgb(235, 154, 4);width:50px;line-height: 20px;">闲置</text>
  25. <text wx:if="{{item.useType=='3'}}" style="text-align: center;float:right;font-size:12px;background:rgb(235, 154, 4,0.2);color:rgb(235, 154, 4);width:70px;line-height: 20px;">出租或出借</text>
  26. <text wx:if="{{item.useType=='4'}}" style="text-align: center;float:right;font-size:12px;background:rgb(235, 4, 4,0.2);color:rgb(235, 4, 4);width:50px;line-height: 20px;">其他</text>
  27. </view>
  28. </view>
  29. <view class="detail_box">
  30. <view style="width: 55%;margin-left:5%;">{{item.code}}</view>
  31. <view style="width: 40%;">
  32. {{item.assetType}}
  33. </view>
  34. </view>
  35. <view class="detail_box">
  36. <view style="width: 60%;">
  37. <image src="/image/icon/clock_icon.png" style="width: 15px;height: 15px;border-radius:5px;margin-right: 5px;"></image>
  38. <text>{{item.buildTime}}</text>
  39. </view>
  40. <view style="width: 40%;text-align: right;">
  41. 原值:
  42. <text style="color:red">¥{{item.originalValue}}</text>
  43. </view>
  44. </view>
  45. </view>
  46. </van-swipe-cell>
  47. </scroll-view>
  48. <modal hidden="{{!showPopup}}" title="是否删除?" confirm-text="是" cancel-text="否" bindcancel="cancelTem" bindconfirm="confirmTem">
  49. </modal>