|
|
@@ -5,6 +5,7 @@
|
|
|
<view class="space-view ex-table">
|
|
|
<block v-if="!$util.isEmpty(list.data)">
|
|
|
<t-table :headerBackgroundColor="'#F0F2F6'">
|
|
|
+ <view style="position:fixed;width:100%;top:0">
|
|
|
<t-tr header>
|
|
|
<t-th><view style="width:130upx;color:#333333;font-size:30upx;font-weight:bold;">时间</view></t-th>
|
|
|
<t-th><view style="width:120upx;color:#333333;font-size:30upx;font-weight:bold;">名称</view></t-th>
|
|
|
@@ -12,6 +13,8 @@
|
|
|
<t-th><view style="color:#333333;font-size:30upx;font-weight:bold;">变动</view></t-th>
|
|
|
<t-th><view style="color:#333333;font-size:30upx;font-weight:bold;">剩余</view></t-th>
|
|
|
</t-tr>
|
|
|
+ </view>
|
|
|
+ <view style="margin-top:80upx;">
|
|
|
<t-tr v-for="(item, index) in list.data" :key="index">
|
|
|
<t-td align="center" color="info">
|
|
|
<view style="width:130upx;color:#333333;font-size:28upx;">
|
|
|
@@ -30,6 +33,7 @@
|
|
|
</t-td>
|
|
|
<t-td><view style="color:#333333;font-size:30upx;">{{parseFloat(item.newStock)}}</view></t-td>
|
|
|
</t-tr>
|
|
|
+ </view>
|
|
|
</t-table>
|
|
|
</block>
|
|
|
<block v-else>
|