巡检记录,巡检路线,巡检点完成,巡检项目完成

This commit is contained in:
Zy
2026-04-21 10:20:15 +08:00
parent 35cf75f377
commit df20099dfd
9 changed files with 227 additions and 68 deletions

View File

@@ -13,6 +13,7 @@
<div
class="item"
:class="{
disabled: item.status === '1',
active: checkoutPointItemlist.includes(item.id)
}"
@click="checkoutItem(item.id)"
@@ -271,6 +272,11 @@ onUnmounted(() => {
align-items: center;
margin-right: 20px;
margin-bottom: 10px;
max-width: 200px;
min-width: 100px;
overflow: hidden;
text-overflow: ellipsis;
text-wrap: nowrap;
font-size: 14px;
color: #606266;
border: 1px solid #ccc;
@@ -289,6 +295,12 @@ onUnmounted(() => {
color: #409eff;
background-color: #f0f9ff;
}
&.disabled {
border-color: #eeeeee5b;
color: #fff;
cursor: not-allowed;
background-color: #d1d1d1;
}
}
}