|
|
@@ -8,29 +8,27 @@
|
|
|
<view class="space-view ex-table">
|
|
|
<t-table :headerBackgroundColor="'#F0F2F6'">
|
|
|
<t-tr header>
|
|
|
- <t-th><view style="width:160upx;">花材</view></t-th>
|
|
|
+ <t-th><view style="width:170upx;">花材</view></t-th>
|
|
|
<t-th>预订</t-th>
|
|
|
<t-th>上架</t-th>
|
|
|
- <t-th>剩余</t-th>
|
|
|
<t-th>路上</t-th>
|
|
|
<t-th>待采</t-th>
|
|
|
- <t-th>操作</t-th>
|
|
|
+ <t-th><view style="width:90upx;">客户</view></t-th>
|
|
|
</t-tr>
|
|
|
<template v-if="!$util.isEmpty(bookData)">
|
|
|
<view v-for="(item, index) in bookData" :key="index" @click="goDetail(item)">
|
|
|
<t-tr>
|
|
|
- <t-td><view style="color:#333333;font-size:25upx;width:160upx;text-align:left;height:60upx;display: flex;align-items: center;">{{item.name}}</view></t-td>
|
|
|
+ <t-td><view style="color:#333333;font-size:25upx;width:170upx;text-align:left;height:60upx;display: flex;align-items: center;">{{item.name}}</view></t-td>
|
|
|
<t-td><view style="color:#333333;font-size:25upx;height:60upx;display: flex;align-items: center;">{{item.bookNum?parseFloat(item.bookNum):0}}</view></t-td>
|
|
|
<t-td><view style="color:#333333;font-size:25upx;height:60upx;display: flex;align-items: center;">{{item.onNum?parseFloat(item.onNum):0}}</view></t-td>
|
|
|
<t-td><view style="color:#333333;font-size:25upx;height:60upx;display: flex;align-items: center;">{{item.roadNum?parseFloat(item.roadNum):0}}</view></t-td>
|
|
|
- <t-td><view style="color:#333333;font-size:25upx;height:60upx;display: flex;align-items: center;">{{item.roadNum?parseFloat(item.roadNum):0}}</view></t-td>
|
|
|
<t-td><view style="color:#333333;font-size:25upx;height:60upx;display: flex;align-items: center;">{{item.needCgNum?parseFloat(item.needCgNum):0}}</view></t-td>
|
|
|
<t-td>
|
|
|
- <view style="color:#333333;font-size:22upx;height:60upx;display: flex;align-items: center;position: relative;">
|
|
|
- <text>操作</text>
|
|
|
- <text style="color:#CCCCCC;position: absolute;top:52upx;width:300upx;right:-30upx;text-align:right;font-size:21upx;">
|
|
|
- {{ item.customName }}<text style="margin-left:12upx;" v-if="item.seatSn != 0">{{'货号:'+item.seatSn }}</text>
|
|
|
- </text>
|
|
|
+ <view style="font-size:20upx;color:#333333;overflow: hidden;width:90upx;">
|
|
|
+ <view>{{ item.customName }}</view>
|
|
|
+ <view v-if="item.seatSn != 0">
|
|
|
+ {{item.seatSn }}号 <i class="iconfont iconbianji" style="margin-left:10upx;"></i>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</t-td>
|
|
|
</t-tr>
|