|
|
@@ -24,10 +24,10 @@
|
|
|
<view class="space-view ex-table">
|
|
|
<t-table>
|
|
|
<t-tr header>
|
|
|
- <t-th><view style="width:245upx;text-align:left;">名称</view></t-th>
|
|
|
- <t-th><view style="text-align:left;">盘点前</view></t-th>
|
|
|
- <t-th><view style="text-align:left;">盘点后</view></t-th>
|
|
|
- <t-th><view style="text-align:left;">盈亏数</view></t-th>
|
|
|
+ <t-th><view style="width:245upx;text-align:left;color: #333333;">名称</view></t-th>
|
|
|
+ <t-th><view style="text-align:left;color: #333333;">盘点前</view></t-th>
|
|
|
+ <t-th><view style="text-align:left;color: #333333;">盘点后</view></t-th>
|
|
|
+ <t-th><view style="text-align:left;color: #333333;">盈亏数</view></t-th>
|
|
|
</t-tr>
|
|
|
<t-tr v-for="(item, index) in dataInfo.itemInfo || []" :key="index">
|
|
|
|
|
|
@@ -35,25 +35,23 @@
|
|
|
<view v-if="column.custom == 'icon'" class="list-icon" style="width:245upx;">
|
|
|
<image class="icon-image" :src="item.itemCover" @click.stop="goToStockDetail(item.id)" />
|
|
|
<view class="icon-info" @click.stop="goToStockDetail(item.id)">
|
|
|
- <view class="info-name">
|
|
|
- {{ item.itemName }}
|
|
|
- </view>
|
|
|
+ <view class="info-name"> {{ item.itemName }} </view>
|
|
|
<view class="info-type"></view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view v-else-if="column.custom == 'stock'" @click.stop="goToStockDetail(item.id)">
|
|
|
+ <view v-else-if="column.custom == 'stock'" @click.stop="goToStockDetail(item.id)" style="color: #333333;">
|
|
|
<text>{{ item.bigNumStock }}扎</text>
|
|
|
<text>{{ item.smallNumStock }}支</text>
|
|
|
</view>
|
|
|
- <view v-else-if="column.custom == 'inventory'" @click.stop="goToStockDetail(item.id)">
|
|
|
+ <view v-else-if="column.custom == 'inventory'" @click.stop="goToStockDetail(item.id)" style="color: #333333;">
|
|
|
<text>{{ item.bigNum }}扎</text>
|
|
|
<text>{{ item.smallNum }}支</text>
|
|
|
</view>
|
|
|
- <view v-else-if="column.custom == 'profit'" @click.stop="goToStockDetail(item.id)">
|
|
|
+ <view v-else-if="column.custom == 'profit'" @click.stop="goToStockDetail(item.id)" style="color: #333333;">
|
|
|
<text>{{ item.bigNumProfitLoss }}扎</text>
|
|
|
<text>{{ item.smallNumProfitLoss }}支</text>
|
|
|
</view>
|
|
|
- <view v-else @click.stop="goToStockDetail(item.id)">{{ item[column.dataIndex] || "" }}</view>
|
|
|
+ <view v-else @click.stop="goToStockDetail(item.id)" style="color: #333333;">{{ item[column.dataIndex] || "" }}</view>
|
|
|
</t-td>
|
|
|
|
|
|
</t-tr>
|