|
@@ -75,7 +75,7 @@
|
|
|
<span style="color: red">
|
|
|
{{tool.formatAmount(scope.row.price,2)}}
|
|
|
</span>
|
|
|
-
|
|
|
+ <el-tag size="small" v-if="scope.row.price === 0" type="warning">优惠抵扣</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -124,6 +124,12 @@
|
|
|
prop="price"
|
|
|
label="单价"
|
|
|
>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span style="color: red">
|
|
|
+ {{tool.formatAmount(scope.row.price,2)}}
|
|
|
+ </span>
|
|
|
+ <el-tag size="small" v-if="scope.row.price === 0" type="warning">优惠抵扣</el-tag>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="begdate"
|