@@ -57,25 +73,27 @@
}
> .list {
flex: 1;
- overflow-y: auto;
- padding: 0 6rem;
margin: 0 3.8rem;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- // justify-content: space-around;
- > .item {
- width: 47%;
- height: 52.9rem;
- overflow: hidden;
- border-radius: 2rem;
- background-color: #fff;
- margin-bottom: 4rem;
- border: 0.1rem solid #000;
- > img {
- width: 100%;
- height: 100%;
- object-fit: contain;
+ overflow: hidden;
+ > .my-list {
+ padding: 0 6rem;
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+ // justify-content: space-around;
+ .item {
+ width: 47%;
+ height: 52.9rem;
+ overflow: hidden;
+ border-radius: 2rem;
+ background-color: #fff;
+ margin-bottom: 4rem;
+ border: 0.1rem solid #000;
+ > img {
+ width: 100%;
+ height: 100%;
+ object-fit: contain;
+ }
}
}
}
diff --git a/src/views/Workshop/customize.vue b/src/views/Workshop/customize.vue
index b868269..5f6ec23 100644
--- a/src/views/Workshop/customize.vue
+++ b/src/views/Workshop/customize.vue
@@ -16,7 +16,6 @@
console.log('发送消息:', text)
}
const onLove = () => {
- console.log('love')
isLoved.value = !isLoved.value
}
const onReload = () => {
@@ -25,6 +24,9 @@
const onDownload = () => {
console.log('download')
}
+ const onRetry = () => {
+ router.back()
+ }
const onContinue = () => {
router.push({ name: 'creation' })
}
@@ -58,7 +60,10 @@