-
@@ -899,7 +896,9 @@ export default defineComponent({
if (props.isDesignPage && videoType.value === 3) {
if (isLastFrame) {
// 从 lastFrameList 中删除
- const deleteIndex = lastFrameList.value.findIndex((listItem: any) => listItem.id === item.id)
+ const deleteIndex = lastFrameList.value.findIndex(
+ (listItem: any) => listItem.id === item.id
+ )
if (deleteIndex >= 0) {
lastFrameList.value.splice(deleteIndex, 1)
}
@@ -921,7 +920,9 @@ export default defineComponent({
}
} else {
// 从 firstFrameList 中删除
- const deleteIndex = firstFrameList.value.findIndex((listItem: any) => listItem.id === item.id)
+ const deleteIndex = firstFrameList.value.findIndex(
+ (listItem: any) => listItem.id === item.id
+ )
if (deleteIndex >= 0) {
firstFrameList.value.splice(deleteIndex, 1)
}
@@ -944,7 +945,7 @@ export default defineComponent({
}
return
}
-
+
// 非 design 页面的原有逻辑
let value = {
id: item.id
@@ -1486,19 +1487,20 @@ export default defineComponent({
rgba(8, 9, 13, 0.27) 80.37%
);
display: flex;
- align-items: flex-end;
- justify-content: center;
+ align-items: center;
+ justify-content: flex-start;
.icon-list {
- height: 50%;
- width: calc(100% - 1.6rem);
+ // height: 50%;
+ // width: calc(100% - 1.6rem);
// border-top: 1px solid #fff;
+ padding-left: 1rem;
display: flex;
box-sizing: border-box;
justify-content: flex-start;
align-items: center;
.play-icon {
- width: initial;
- height: initial;
+ width: 2rem;
+ height: 2rem;
}
}
}