|
|
@@ -18,14 +18,22 @@
|
|
|
<block v-for="(classItem,classIndex) in classItemData" :key="classIndex">
|
|
|
<block v-if="classItem.child && !$util.isEmpty(classItem.child)">
|
|
|
<t-tr>
|
|
|
- <t-td><text style="color:#3385FF;font-weight:bold;width:220upx;text-align:left;">{{ classItem.className }}</text></t-td>
|
|
|
+ <t-td>
|
|
|
+ <text style="color:#3385FF;font-weight:bold;width:220upx;text-align:left;">
|
|
|
+ {{ classItem.className }}
|
|
|
+ </text>
|
|
|
+ </t-td>
|
|
|
<t-td></t-td>
|
|
|
<t-td></t-td>
|
|
|
</t-tr>
|
|
|
<template v-if="classItem.child && !$util.isEmpty(classItem.child)">
|
|
|
<block v-for="(productItem, productIndex) in classItem.child" :key="productIndex">
|
|
|
<t-tr>
|
|
|
- <t-td><view style="width:220upx;text-align:left;">{{productItem.name}}</view></t-td>
|
|
|
+ <t-td>
|
|
|
+ <view style="width:220upx;text-align:left;color:#333333;font-size:30upx;">
|
|
|
+ {{productItem.name}}
|
|
|
+ </view>
|
|
|
+ </t-td>
|
|
|
<t-td><view style="color:#333333;font-weight:bold;">{{productItem.stock?parseFloat(productItem.stock):0}}</view></t-td>
|
|
|
<t-td><view>{{productItem.price?parseFloat(productItem.price):0}}</view></t-td>
|
|
|
<t-td><view>{{productItem.skPrice?parseFloat(productItem.skPrice):0}}</view></t-td>
|