12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <navigator url="/packageA/toolBill/detail?id={{item.sa_aftersalesmagid}}" class="item" wx:for="{{list}}" wx:key="sonum">
- <view class="top">
- 单据日期 : {{item.billdate || ' --'}} <text style="color:{{set.color(item.status)}}">{{item.status}}</text>
- </view>
- <view class="content">
- <view class="num">
- 单号:{{item.billno}}
- </view>
- <view class="exp">
- 来源单号:{{item.sonum || ' --'}}
- </view>
- <view class="exp">
- 提交日期:{{item.submitdate || '--'}}
- </view>
- <view class="exp">
- 审核日期:{{item.checkdate || '--'}}
- </view>
- <view class="exp">
- 归还原因:{{item.reason || '--'}}
- </view>
- </view>
- <view style="height: 20rpx;" />
- <!--
- <view wx:if="{{item.contacts.length}}" class="bottom line-1">
- <text style="margin-right: 10rpx;">{{item.contacts[0].name}}</text>
- <text style="margin-right: 10rpx;">{{item.contacts[0].phonenumber}}</text>
- <text style="margin-right: 10rpx;">{{item.contacts[0].address}}</text>
- </view>
- <view wx:else class="bottom">
- 暂无更多信息
- </view> -->
- </navigator>
- <Yl_Empty wx:if="{{list.length==0}}" />
- <wxs module="set">
- module.exports = {
- color: function (statu) {
- var color = '#999999';
- switch (statu) {
- case "审核":
- color = '#FA8C16';
- break;
- case "提交":
- color = '#52C41A';
- break;
- case "新建":
- color = '#333333';
- break;
- case "复核":
- color = 'red';
- break;
- };
- return color;
- }
- }
- </wxs>
|