From ee15fecfb33296ea680a07fccd5f426dbc24b1bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E5=B9=B3=E8=89=BA?= <52643018@qq.com> Date: Mon, 16 Aug 2021 18:08:56 +0800 Subject: [PATCH 1/5] =?UTF-8?q?[=E6=B7=BB=E5=8A=A0]=20=E5=AD=97=E4=BD=93?= =?UTF-8?q?=E5=9B=BE=E6=A0=87=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/styles/iconfont.css | 90 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 common/styles/iconfont.css diff --git a/common/styles/iconfont.css b/common/styles/iconfont.css new file mode 100644 index 0000000..dc3b3a8 --- /dev/null +++ b/common/styles/iconfont.css @@ -0,0 +1,90 @@ +@font-face { + font-family: "lf-iconfont"; /* Project id 2731103 */ + src: url('//at.alicdn.com/t/font_2731103_jdpc6xie5ss.woff2?t=1629108236427') format('woff2'), + url('//at.alicdn.com/t/font_2731103_jdpc6xie5ss.woff?t=1629108236427') format('woff'), + url('//at.alicdn.com/t/font_2731103_jdpc6xie5ss.ttf?t=1629108236427') format('truetype'); +} + +.lf-iconfont { + font-family: "lf-iconfont" !important; + font-size: 16px; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.icon-fenxiang:before { + content: "\e600"; +} + +.icon-weixin:before { + content: "\e61a"; +} + +.icon-weirenzheng:before { + content: "\e64e"; +} + +.icon-linedesign-12:before { + content: "\e671"; +} + +.icon-shenfenzhengbeimian:before { + content: "\e601"; +} + +.icon-shenfenzhengzhengmian:before { + content: "\e602"; +} + +.icon-hua:before { + content: "\e60e"; +} + +.icon-nv:before { + content: "\e60d"; +} + +.icon-jia:before { + content: "\e715"; +} + +.icon-iconfront-:before { + content: "\e61f"; +} + +.icon-zan:before { + content: "\e603"; +} + +.icon-xingxing:before { + content: "\e60f"; +} + +.icon-xiangyou:before { + content: "\e645"; +} + +.icon-tongzhi:before { + content: "\e737"; +} + +.icon-dingzhi:before { + content: "\e651"; +} + +.icon-pinglun:before { + content: "\e64c"; +} + +.icon-nan:before { + content: "\e67c"; +} + +.icon-contact-person:before { + content: "\e696"; +} + +.icon-xiaoxi_huaban1:before { + content: "\e612"; +} From 6b30a1f521a32180427ac6c30b17d4687ef9f28b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E5=B9=B3=E8=89=BA?= <52643018@qq.com> Date: Mon, 16 Aug 2021 18:10:49 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=E5=BC=95=E5=85=A5=E5=AD=97=E4=BD=93?= =?UTF-8?q?=E5=9B=BE=E6=A0=87=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/App.vue b/App.vue index a09ff03..74c4be2 100644 --- a/App.vue +++ b/App.vue @@ -119,6 +119,7 @@ @import "@/uview-ui/index.scss"; @import '@/common/styles/theme.css'; @import '@/common/styles/common.css'; + @import '@/common/styles/iconfont.css'; //底部按钮 .btn-bottom { From c35b614da1c6814005b7cc6a9446cd1b966aa25b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E5=B9=B3=E8=89=BA?= <52643018@qq.com> Date: Tue, 17 Aug 2021 11:01:35 +0800 Subject: [PATCH 3/5] =?UTF-8?q?[=E5=AE=8C=E6=88=90]=20=E6=9C=80=E6=96=B0?= =?UTF-8?q?=E4=BA=A4=E5=8F=8B=E7=94=A8=E6=88=B7=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 6 ++ pages/index/index.vue | 2 +- pages/userList/userList.vue | 121 ++++++++++++++++++++++++++++++++++++ 3 files changed, 128 insertions(+), 1 deletion(-) create mode 100644 pages/userList/userList.vue diff --git a/pages.json b/pages.json index cfc937c..f5794fa 100644 --- a/pages.json +++ b/pages.json @@ -45,6 +45,12 @@ "navigationBarBackgroundColor": "#FE3EA5", "navigationBarTextStyle": "white" } + }, + { + "path": "pages/userList/userList", + "style": { + "navigationBarTitleText": "相亲交友" + } } ], "globalStyle": { diff --git a/pages/index/index.vue b/pages/index/index.vue index 14b1692..2009353 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -36,7 +36,7 @@ 推荐单身 - + 最新 diff --git a/pages/userList/userList.vue b/pages/userList/userList.vue new file mode 100644 index 0000000..cd46296 --- /dev/null +++ b/pages/userList/userList.vue @@ -0,0 +1,121 @@ + + + + + From e792e9032daa223b4d5b922cb62037a94db909dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E5=B9=B3=E8=89=BA?= <52643018@qq.com> Date: Tue, 17 Aug 2021 12:29:28 +0800 Subject: [PATCH 4/5] =?UTF-8?q?[=E5=AE=8C=E6=88=90]=20=E7=AD=BE=E5=88=B0?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2UI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 6 ++ pages/index/index.vue | 2 +- pages/signIn/signIn.vue | 135 ++++++++++++++++++++++++++++++++++++ pages/userList/userList.vue | 2 +- 4 files changed, 143 insertions(+), 2 deletions(-) create mode 100644 pages/signIn/signIn.vue diff --git a/pages.json b/pages.json index f5794fa..d59d1c2 100644 --- a/pages.json +++ b/pages.json @@ -51,6 +51,12 @@ "style": { "navigationBarTitleText": "相亲交友" } + }, + { + "path": "pages/signIn/signIn", + "style": { + "navigationBarTitleText": "签到" + } } ], "globalStyle": { diff --git a/pages/index/index.vue b/pages/index/index.vue index 2009353..4fe44a7 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -6,7 +6,7 @@ 搜索 - 签到 + 签到 diff --git a/pages/signIn/signIn.vue b/pages/signIn/signIn.vue new file mode 100644 index 0000000..2dd5a07 --- /dev/null +++ b/pages/signIn/signIn.vue @@ -0,0 +1,135 @@ + + + + + diff --git a/pages/userList/userList.vue b/pages/userList/userList.vue index cd46296..969d0f2 100644 --- a/pages/userList/userList.vue +++ b/pages/userList/userList.vue @@ -1,7 +1,7 @@