This commit is contained in:
parent
7ab4feb90f
commit
5bad6f3682
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
|
|
@ -2,13 +2,13 @@
|
||||||
export const paramsToCompare = [
|
export const paramsToCompare = [
|
||||||
"品名/物料名称",
|
"品名/物料名称",
|
||||||
"品号",
|
"品号",
|
||||||
|
"品号-规格型号",
|
||||||
"图号",
|
"图号",
|
||||||
"CBC版本",
|
|
||||||
"技术规范版本",
|
|
||||||
"技术规范编号",
|
"技术规范编号",
|
||||||
|
"技术规范版本",
|
||||||
"技术规范名称",
|
"技术规范名称",
|
||||||
"CBC编号",
|
"CBC编号",
|
||||||
"品号-规格型号",
|
"CBC版本",
|
||||||
"车型",
|
"车型",
|
||||||
"型号",
|
"型号",
|
||||||
"材质",
|
"材质",
|
||||||
|
|
@ -21,13 +21,13 @@ export const paramsToCompare = [
|
||||||
export const fieldMap = {
|
export const fieldMap = {
|
||||||
"品名/物料名称": "name",
|
"品名/物料名称": "name",
|
||||||
品号: "productNumber",
|
品号: "productNumber",
|
||||||
|
"品号-规格型号": "specificationModel",
|
||||||
图号: "drawingNumber",
|
图号: "drawingNumber",
|
||||||
CBC版本: "CBCVersion",
|
|
||||||
技术规范版本: "technicalSpecVersion",
|
|
||||||
技术规范编号: "technicalSpecCode",
|
技术规范编号: "technicalSpecCode",
|
||||||
|
技术规范版本: "technicalSpecVersion",
|
||||||
技术规范名称: "technicalSpecName",
|
技术规范名称: "technicalSpecName",
|
||||||
CBC编号: "CBCCode",
|
CBC编号: "CBCCode",
|
||||||
"品号-规格型号": "specificationModel",
|
CBC版本: "CBCVersion",
|
||||||
车型: "carModel",
|
车型: "carModel",
|
||||||
型号: "model",
|
型号: "model",
|
||||||
材质: "material",
|
材质: "material",
|
||||||
|
|
|
||||||
|
|
@ -192,20 +192,17 @@
|
||||||
@click="toggleSelect(item)"
|
@click="toggleSelect(item)"
|
||||||
>
|
>
|
||||||
<div class="result-card-info">
|
<div class="result-card-info">
|
||||||
<div
|
<div class="result-card-name" :title="item.name">
|
||||||
class="result-card-name text-truncate"
|
|
||||||
:title="item.name"
|
|
||||||
>
|
|
||||||
{{ item.name }}
|
{{ item.name }}
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="result-card-parameter text-truncate"
|
class="result-card-parameter"
|
||||||
:title="`品号:${item.productNumber}`"
|
:title="`品号:${item.productNumber}`"
|
||||||
>
|
>
|
||||||
<span>品号:</span>{{ item.productNumber }}
|
<span>品号:</span>{{ item.productNumber }}
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="result-card-parameter text-truncate"
|
class="result-card-parameter"
|
||||||
:title="`品号-规格型号:${item.specificationModel}`"
|
:title="`品号-规格型号:${item.specificationModel}`"
|
||||||
>
|
>
|
||||||
<span>品号-规格型号: </span>{{ item.specificationModel }}
|
<span>品号-规格型号: </span>{{ item.specificationModel }}
|
||||||
|
|
@ -1746,10 +1743,11 @@ function handleConfirm() {
|
||||||
.result-card-parameter {
|
.result-card-parameter {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
color: #888;
|
color: #888;
|
||||||
margin-bottom: 4px;
|
overflow: visible;
|
||||||
white-space: nowrap;
|
white-space: normal;
|
||||||
overflow: hidden;
|
padding: 2px;
|
||||||
text-overflow: ellipsis;
|
max-width: 300px;
|
||||||
|
word-break: break-word;
|
||||||
span {
|
span {
|
||||||
color: #555;
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue