|
@@ -40,7 +40,11 @@
|
|
<template #spec="{ item }">
|
|
<template #spec="{ item }">
|
|
<div style="width:100%">
|
|
<div style="width:100%">
|
|
<div v-for="row in item.logisticsProductInfoList" :key="row.id">
|
|
<div v-for="row in item.logisticsProductInfoList" :key="row.id">
|
|
- {{ row.productSpec }}
|
|
|
|
|
|
+ <el-tooltip class="box-item" effect="dark" placement="bottom" :content="row.productName">
|
|
|
|
+ <div class="statistics-text" style="cursor: pointer">
|
|
|
|
+ {{ row.productName }}
|
|
|
|
+ </div>
|
|
|
|
+ </el-tooltip>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
@@ -335,14 +339,14 @@ const config = computed(() => {
|
|
attrs: {
|
|
attrs: {
|
|
label: "SKU",
|
|
label: "SKU",
|
|
slot: "SKU",
|
|
slot: "SKU",
|
|
- width: 130,
|
|
|
|
|
|
+ width: 150,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
{
|
|
attrs: {
|
|
attrs: {
|
|
- label: "货物型号",
|
|
|
|
|
|
+ label: "货物名称",
|
|
slot: "spec",
|
|
slot: "spec",
|
|
- width: 160,
|
|
|
|
|
|
+ width: 200,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
{
|
|
@@ -887,4 +891,9 @@ const disabledFn = (date) => {
|
|
.tenant {
|
|
.tenant {
|
|
padding: 20px;
|
|
padding: 20px;
|
|
}
|
|
}
|
|
|
|
+.statistics-text {
|
|
|
|
+ overflow: hidden;
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
+ white-space: nowrap;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|