Commit d958ec64 by linjinhong

fix:优化展示

parent 71e49817
...@@ -925,6 +925,7 @@ export default { ...@@ -925,6 +925,7 @@ export default {
</el-button> </el-button>
<el-dropdown-menu slot="dropdown"> <el-dropdown-menu slot="dropdown">
<el-dropdown-item <el-dropdown-item
:class="{ disabledClass: it.disabled }"
:command="i" :command="i"
v-for="(it, i) in grid" v-for="(it, i) in grid"
:key="i" :key="i"
...@@ -1280,4 +1281,7 @@ export default { ...@@ -1280,4 +1281,7 @@ export default {
} }
} }
} }
.disabledClass {
display: none;
}
</style> </style>
...@@ -338,7 +338,11 @@ export default { ...@@ -338,7 +338,11 @@ export default {
this.detail = { ...newValue }; this.detail = { ...newValue };
console.log(325, this.detail); console.log(325, this.detail);
if (this.newDesktopDevice == 3) { if (this.newDesktopDevice == 3) {
this.logList.unshift(`订单:${this.detail.newId}已查询`); this.logList.unshift(
`订单:${this.detail.newId}-${
this.selectImgList.length > 1 ? this.faceType : "S"
}面 已查询`,
);
} }
try { try {
if (typeof this.detail.imageAry == "string") { if (typeof this.detail.imageAry == "string") {
...@@ -2376,7 +2380,7 @@ img { ...@@ -2376,7 +2380,7 @@ img {
} }
.box { .box {
position: relative; position: relative;
width: 400px; width: 420px;
height: 100%; height: 100%;
background-color: #fff; background-color: #fff;
display: flex; display: flex;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment