Compare commits
2 Commits
92f981769f
...
V1.0.2
| Author | SHA1 | Date | |
|---|---|---|---|
| 3f803b662a | |||
| 84b77b3fe6 |
@@ -128,11 +128,6 @@ const isDeleting = ref(false); // 标志位,防止删除时watch冲突
|
||||
watch(
|
||||
quantity,
|
||||
async (newQuantity) => {
|
||||
// 非酒店类型,不处理
|
||||
if (orderData.value.commodityTypeCode !== "0") {
|
||||
return;
|
||||
}
|
||||
|
||||
// 如果正在执行删除操作,跳过watch逻辑
|
||||
if (isDeleting.value) {
|
||||
isDeleting.value = false;
|
||||
|
||||
@@ -3,11 +3,21 @@
|
||||
}
|
||||
|
||||
.ip {
|
||||
position: relative;
|
||||
flex: 0 0 158px;
|
||||
width: 158px;
|
||||
height: 134px;
|
||||
animation: sprite-play calc(var(--ipLargeTime) * 1s)
|
||||
steps(var(--ipLargeImageStep)) infinite;
|
||||
&::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
background-color: #f9fcfd;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 3px;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes sprite-play {
|
||||
|
||||
Reference in New Issue
Block a user