|
|
@@ -91,7 +91,7 @@
|
|
|
<el-table-column
|
|
|
prop="price"
|
|
|
label="单价"
|
|
|
- width="80"
|
|
|
+ width="120"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<div v-if="scope.row.discountDifferenceAmount > 0 ">
|
|
|
@@ -119,7 +119,7 @@
|
|
|
<el-table-column
|
|
|
prop="discountDifferenceAmount"
|
|
|
label="单价差额(元)"
|
|
|
- width="80"
|
|
|
+ width="62"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<p><span>{{scope.row.discountDifferenceAmount}}</span></p>
|
|
|
@@ -200,7 +200,7 @@
|
|
|
<el-table-column
|
|
|
prop="brand"
|
|
|
label="品牌"
|
|
|
- width="180">
|
|
|
+ width="200">
|
|
|
<template slot-scope="scope">
|
|
|
<p v-for="(item,index) in scope.row.brand">
|
|
|
<span style="float: left" v-if="index === scope.row.brand.length -1">{{item?item.brandname+'':'--'}}</span>
|
|
|
@@ -211,7 +211,7 @@
|
|
|
<el-table-column
|
|
|
prop="itemclass"
|
|
|
label="类别"
|
|
|
- width="180">
|
|
|
+ width="200">
|
|
|
<template slot-scope="scope">
|
|
|
<p v-for="(item,index) in scope.row.itemclass">
|
|
|
<span style="float: left" v-if="index === scope.row.itemclass.length -1">{{item?item.itemclassname+'':'--'}}</span>
|
|
|
@@ -241,7 +241,7 @@
|
|
|
<el-table-column
|
|
|
prop="amount"
|
|
|
label="金额"
|
|
|
- width="80"
|
|
|
+ width="100"
|
|
|
fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<div v-if="scope.row.discountDifferenceAmount > 0 ">
|
|
|
@@ -256,7 +256,7 @@
|
|
|
<el-table-column
|
|
|
prop="specialoffer"
|
|
|
label="是否特价"
|
|
|
- width="80"
|
|
|
+ width="50"
|
|
|
fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<i class="el-icon-check" v-if="scope.row.discountDifferenceAmount < 0" style="color: red;font-size: 20px"></i>
|