diff --git a/src/components/blogs/leftsite/ComLink.vue b/src/components/blogs/leftsite/ComLink.vue
index af4c6e7..157b994 100644
--- a/src/components/blogs/leftsite/ComLink.vue
+++ b/src/components/blogs/leftsite/ComLink.vue
@@ -50,12 +50,15 @@ onMounted(() => {
.button-group {
display: flex;
flex-wrap: wrap;
- justify-content: space-between;
+ /* justify-content: space-between; */
}
.button-group>* {
- width: 40%;
margin: 12px;
}
-
+@media (max-width: 768px) {
+ .button-group > * {
+ width: 100%;
+ }
+}
\ No newline at end of file
diff --git a/src/components/blogs/leftsite/LeftSiteInfo.vue b/src/components/blogs/leftsite/LeftSiteInfo.vue
index fb19bca..fc253ba 100644
--- a/src/components/blogs/leftsite/LeftSiteInfo.vue
+++ b/src/components/blogs/leftsite/LeftSiteInfo.vue
@@ -6,7 +6,7 @@
-
@@ -180,6 +180,16 @@ onMounted(() => {
/* 防止文本换行 */
}
+.diarys .image-container {
+ width: 1000px;
+
+}
+
+.diarys .responsive-image {
+ width: 100%;
+ height: auto;
+}
+
.main .read-button {
display: flex;
justify-content: center;
diff --git a/src/views/blog/imagemanage/OtherImgView.vue b/src/views/blog/imagemanage/OtherImgView.vue
index 38078f3..0b5f538 100644
--- a/src/views/blog/imagemanage/OtherImgView.vue
+++ b/src/views/blog/imagemanage/OtherImgView.vue
@@ -27,14 +27,16 @@ const imageStyle = computed(() => {
};
});
const imgurl = ref([])
+console.log(`output->imgurl`,imgurl)
const baseurl = "https://www.wuruilin.cn"
const imgList = async () => {
- await get("photos/listfiles",
+ await get("/photos/listfiles/",
{ album_key: "otherimg" }
).then((response) => {
const imglist = response.data.files
imgurl.value = imglist.map((path: string) => `${baseurl}/${path}`);
+
})
}
onMounted(() => {
diff --git a/src/views/blog/imagemanage/PersonSelfView.vue b/src/views/blog/imagemanage/PersonSelfView.vue
index 2320762..7c450de 100644
--- a/src/views/blog/imagemanage/PersonSelfView.vue
+++ b/src/views/blog/imagemanage/PersonSelfView.vue
@@ -26,14 +26,16 @@ const imageStyle = computed(() => {
};
});
const imgurl = ref([])
-const baseurl = "https://www.wuruilin.cn"
+const baseurl = "https://www.wuruilin.cn/"
const imgList = async () => {
- await get("photos/listfiles",
+ await get("/photos/listfiles/",
{ album_key: "personself" }
).then((response) => {
const imglist = response.data.files
- imgurl.value = imglist.map((path: string) => `${baseurl}/${path}`);
+ imgurl.value = imglist.map((path: string) => {
+ return `${baseurl}/${path}`
+ });
})
}
onMounted(() => {