From b5685a0d6fb28e37b54f68d027684304fc86e527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E6=9D=8E?= <930530870@qq.com> Date: Mon, 16 Mar 2026 17:32:36 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BA=AB=E4=BB=BD=E8=AF=81=EF=BC=8C=E9=80=9A?= =?UTF-8?q?=E8=AF=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/call-log/header/header.vue | 17 +- components/call-log/list/list.vue | 1539 +++++++++++++---- components/call-log/nav-bar/nav-bar.vue | 21 +- main.js | 2 +- pages.json | 8 + pages/call-log/call.vue | 68 +- .../call-and-message-entry.vue | 10 +- pages/index/index.nvue | 7 +- pages/other/card/card.vue | 856 ++++----- pages/other/qf-image/qf-image.vue | 20 + static/image/call/huaweiBtnImg.png | Bin 0 -> 3324 bytes static/image/call/oppoBtnImg.png | Bin 0 -> 4773 bytes static/image/call/vivoBtnImg.png | Bin 0 -> 7020 bytes static/image/call/xiaomiBtnImg.png | Bin 0 -> 3143 bytes static/image/index/qita/call.png | Bin 0 -> 6393 bytes static/image/index/qita/message.png | Bin 0 -> 5880 bytes test.js | 176 ++ utils/globalMethods.js | 89 +- utils/requests.js | 1 + 19 files changed, 2017 insertions(+), 797 deletions(-) create mode 100644 pages/other/qf-image/qf-image.vue create mode 100644 static/image/call/huaweiBtnImg.png create mode 100644 static/image/call/oppoBtnImg.png create mode 100644 static/image/call/vivoBtnImg.png create mode 100644 static/image/call/xiaomiBtnImg.png create mode 100644 static/image/index/qita/call.png create mode 100644 static/image/index/qita/message.png create mode 100644 test.js diff --git a/components/call-log/header/header.vue b/components/call-log/header/header.vue index f830997..1ef080d 100644 --- a/components/call-log/header/header.vue +++ b/components/call-log/header/header.vue @@ -11,18 +11,18 @@ - + 全部来电 - + 未接来电 - + 全部 - + 未接 @@ -53,6 +53,7 @@ }) const data = reactive({ + active:true, statusBarHeight: 0, showTipLayer: true, title:'最近通话', @@ -67,6 +68,7 @@ }) let { + active, searchTitle, title, list, @@ -77,7 +79,7 @@ if(props.type=='xiaomi'){ searchTitle.value="搜索联系人" title.value="通话" - console.log('aaaaaaaaaaa') + // console.log('aaaaaaaaaaa') }else if(props.type=='oppo'){ title.value="通话" }else if(props.type=='huawei'){ @@ -85,6 +87,11 @@ } }) + + function setActive(status){ + active.value=status + uni.$emit('setActive',status) + } + + .timeBox { + background-color: #fff; + + .titleBox { + padding: 10px; + display: flex; + justify-content: flex-end; + + .btns { + font-size: 12px; + color: #007AFF; + } + } + } + \ No newline at end of file diff --git a/components/call-log/nav-bar/nav-bar.vue b/components/call-log/nav-bar/nav-bar.vue index bf09972..345d2a9 100644 --- a/components/call-log/nav-bar/nav-bar.vue +++ b/components/call-log/nav-bar/nav-bar.vue @@ -1,5 +1,5 @@