diff --git a/src/App.vue b/src/App.vue
index 66cb6e3..182863e 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -35,6 +35,6 @@ export default {
#app {
width: 100vw;
height: 100vh;
- background-color: rgb(151,157,167);
+ background-color: rgb(255, 255, 255);
}
\ No newline at end of file
diff --git a/src/App2.vue b/src/App2.vue
new file mode 100644
index 0000000..45b46a5
--- /dev/null
+++ b/src/App2.vue
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/assets/1.jpg b/src/assets/1.jpg
new file mode 100644
index 0000000..acc56b0
Binary files /dev/null and b/src/assets/1.jpg differ
diff --git a/src/assets/2.jpg b/src/assets/2.jpg
new file mode 100644
index 0000000..d554942
Binary files /dev/null and b/src/assets/2.jpg differ
diff --git a/src/assets/3.jpg b/src/assets/3.jpg
new file mode 100644
index 0000000..aceb672
Binary files /dev/null and b/src/assets/3.jpg differ
diff --git a/src/assets/4.jpg b/src/assets/4.jpg
new file mode 100644
index 0000000..478bf81
Binary files /dev/null and b/src/assets/4.jpg differ
diff --git a/src/assets/5.jpg b/src/assets/5.jpg
new file mode 100644
index 0000000..ad2b5fa
Binary files /dev/null and b/src/assets/5.jpg differ
diff --git a/src/assets/6.jpg b/src/assets/6.jpg
new file mode 100644
index 0000000..df03bb9
Binary files /dev/null and b/src/assets/6.jpg differ
diff --git a/src/assets/R.jpg b/src/assets/R.jpg
new file mode 100644
index 0000000..4b1902f
Binary files /dev/null and b/src/assets/R.jpg differ
diff --git a/src/assets/background-blue.jpg b/src/assets/background-blue.jpg
new file mode 100644
index 0000000..6fd0c66
Binary files /dev/null and b/src/assets/background-blue.jpg differ
diff --git a/src/assets/img/103.png b/src/assets/img/103.png
new file mode 100644
index 0000000..01eaa18
Binary files /dev/null and b/src/assets/img/103.png differ
diff --git a/src/assets/nero.png b/src/assets/nero.png
new file mode 100644
index 0000000..704ac7b
Binary files /dev/null and b/src/assets/nero.png differ
diff --git a/src/components/Emoji.vue b/src/components/Emoji.vue
index e1c70bb..06b55d7 100644
--- a/src/components/Emoji.vue
+++ b/src/components/Emoji.vue
@@ -69,10 +69,10 @@ export default {
.emoji {
width: 400px;
height: 200px;
- background-color: rgb(39, 42, 55);
+ background-color: white;
position: absolute;
top: -220px;
- left: -10px;
+ left: 12px;
border-radius: 10px;
transition: 0.3s;
z-index: 3;
@@ -82,7 +82,7 @@ export default {
display: block;
width: 0;
height: 0;
- border-top: 10px solid rgb(39, 42, 55);
+ border-top: 10px solid whitesmoke;
border-right: 10px solid transparent;
border-left: 10px solid transparent;
position: absolute;
@@ -91,28 +91,31 @@ export default {
z-index: 100;
}
.emoji-wrapper {
+ background-color: whitesmoke;
width: 100%;
height: 100%;
overflow-y: scroll;
padding: 10px;
box-sizing: border-box;
position: relative;
+ border-radius: 5px;
&::-webkit-scrollbar {
/*滚动条整体样式*/
- width: 4px; /*高宽分别对应横竖滚动条的尺寸*/
- height: 1px;
+ width: 0; /* Safari,Chrome 隐藏滚动条 */
+ height: 0; /* Safari,Chrome 隐藏滚动条 */
+ display: none; /* 移动端、pad 上Safari,Chrome,隐藏滚动条 */
}
&::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
box-shadow: inset 0 0 5px rgba(97, 184, 179, 0.1);
- background: rgb(95, 101, 122);
+ background: white;
}
&::-webkit-scrollbar-track {
/*滚动条里面轨道*/
box-shadow: inset 0 0 5px rgba(87, 175, 187, 0.1);
border-radius: 10px;
- background: rgb(39, 42, 55);
+ background: white;
}
.emoji-list {
display: flex;
@@ -128,7 +131,7 @@ export default {
position: relative;
cursor: pointer;
&:hover {
- background-color: rgb(50, 54, 68);
+ background-color: rgba(128, 128, 128, 0.158);
}
img {
width: 35px;
diff --git a/src/components/FileCard.vue b/src/components/FileCard.vue
index d14ec48..dd05a39 100644
--- a/src/components/FileCard.vue
+++ b/src/components/FileCard.vue
@@ -42,7 +42,7 @@ export default {
.file-card {
width: 250px;
height: 100px;
- background-color: rgb(45, 48, 63);
+ background-color: rgb(255, 255, 255);
border-radius: 20px;
display: flex;
justify-content: center;
@@ -51,7 +51,7 @@ export default {
box-sizing: border-box;
cursor: pointer;
&:hover {
- background-color: rgb(33, 36, 54);
+ background-color: rgb(8, 250, 226);
}
img {
width: 60px;
@@ -64,7 +64,7 @@ export default {
span {
width: 90%;
display: inline-block;
- color: #fff;
+ color: #090000;
}
span:first-child {
font-size: 14px;
@@ -74,7 +74,7 @@ export default {
}
span:last-child {
font-size: 12px;
- color: rgb(180, 180, 180);
+ color: rgb(10, 0, 0);
}
}
}
diff --git a/src/components/HeadPortrait.vue b/src/components/HeadPortrait.vue
index b82e98f..534ad5c 100644
--- a/src/components/HeadPortrait.vue
+++ b/src/components/HeadPortrait.vue
@@ -18,7 +18,7 @@ export default {
height: 50px;
border-radius: 50%;
// border: 2px solid rgb(137,140,151);
- border: 2px solid rgb(255, 255, 255);
+ border: 2px solid rgb(12, 12, 12);
position:relative;
&::before {
content: '';
diff --git a/src/components/Navi.vue b/src/components/Navi.vue
new file mode 100644
index 0000000..e223719
--- /dev/null
+++ b/src/components/Navi.vue
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/PersonCard.vue b/src/components/PersonCard.vue
index 1a9e5f1..ebb4324 100644
--- a/src/components/PersonCard.vue
+++ b/src/components/PersonCard.vue
@@ -4,7 +4,7 @@
{{ personInfo.name }}
-
{{ personInfo.detail }}
+
@@ -47,12 +47,11 @@ export default {
diff --git a/src/view/LoginPage.vue b/src/view/LoginPage.vue
new file mode 100644
index 0000000..23eab5f
--- /dev/null
+++ b/src/view/LoginPage.vue
@@ -0,0 +1,169 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/view/home.vue b/src/view/home.vue
index b4f67a9..ca575d3 100644
--- a/src/view/home.vue
+++ b/src/view/home.vue
@@ -1,10 +1,8 @@
-
-
-
-
+
+
@@ -12,23 +10,24 @@
diff --git a/src/view/pages/ReCommend.vue b/src/view/pages/ReCommend.vue
new file mode 100644
index 0000000..e65a614
--- /dev/null
+++ b/src/view/pages/ReCommend.vue
@@ -0,0 +1,277 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 🔄刷新一下
+
+
+
+
+
+
+
+
{{ user.name }} ({{ user.age }}岁)
+
{{ user.city }}
+
{{ user.description }}
+
{{ user.hobby }}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/view/pages/chatHome/chatwindow.vue b/src/view/pages/chatHome/chatwindow.vue
index b3f8b39..c7ca4f7 100644
--- a/src/view/pages/chatHome/chatwindow.vue
+++ b/src/view/pages/chatHome/chatwindow.vue
@@ -6,11 +6,8 @@
{{ frinedInfo.name }}
-
{{ frinedInfo.detail }}
-
-
@@ -38,6 +35,10 @@
+
+
+
{{ item.name }}
+
{{ item.msg }}
@@ -59,13 +60,13 @@
>
+
+
+
-
{{ item.name }}
-
{{ item.time }}
+
-
-
{{ item.msg }}
@@ -92,11 +93,7 @@
>
-
-
{{ item.name }}
-
{{ item.time }}
-
-
+
@@ -113,7 +110,10 @@
@@ -169,8 +169,6 @@ export default {
this.srcImgList.push(item.msg);
}
});
- this.scrollBottom();
-
});
},
//发送信息
@@ -225,6 +223,7 @@ export default {
};
this.sendMsg(chatMsg);
this.clickEmoji();
+
},
//发送本地图片
sendImg(e) {
@@ -311,15 +310,20 @@ export default {
};
+