|
@@ -29,7 +29,7 @@
|
|
|
@search-criteria-switch="searchCriteriaSwitch"
|
|
|
>
|
|
|
<template slot-scope="scope" slot="expand">
|
|
|
- <el-table :data="scope.row.insideList" v-loading="scope.row.loading">
|
|
|
+ <el-table :data="scope.row.insideList" v-loading="scope.row.loading" :cell-style="tableRowClassName">
|
|
|
<el-table-column label="产品分类" prop="priceCategory" align="center" show-overflow-tooltip width="200"></el-table-column>
|
|
|
<el-table-column label="价格类别" prop="priceType" align="center" show-overflow-tooltip width="180"></el-table-column>
|
|
|
<el-table-column label="商品名称" prop="cname" align="center" show-overflow-tooltip width="120"></el-table-column>
|
|
@@ -223,7 +223,7 @@ export default {
|
|
|
} else if (row.orderStatus == '未成交') {
|
|
|
return 'warning-row'
|
|
|
}
|
|
|
- return '';
|
|
|
+ return "padding:0;height:40px;";
|
|
|
},
|
|
|
//删除列表后面的删除按钮触发触发(row, index, done)
|
|
|
rowDel(row, index, done) {
|