From 6c5a05ff97eaa53be71ca71f10c189b064f48fa8 Mon Sep 17 00:00:00 2001 From: lilin <2516625820@qq.com> Date: Tue, 6 Aug 2024 10:06:31 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=9A=E8=AE=AE=E6=80=BB=E7=BB=93=20?= =?UTF-8?q?image=E6=96=87=E4=BB=B6=E5=A4=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- meeting/components/record.vue | 31 +++++++++++++++++++++++++++++-- meeting/record/index.vue | 4 ++-- meeting/summary/index.vue | 20 ++++++++++++++++++++ pages.json | 4 ++-- 4 files changed, 53 insertions(+), 6 deletions(-) create mode 100644 meeting/summary/index.vue diff --git a/meeting/components/record.vue b/meeting/components/record.vue index 39029ce..11b4f58 100644 --- a/meeting/components/record.vue +++ b/meeting/components/record.vue @@ -6,12 +6,17 @@ 这是一个标题 这是状态 - 1111 + 1111 这是时间 这是时长 + + 导出 + 重命名 + 删除 + @@ -21,8 +26,14 @@ export default { data() { return { status: ["wait", "success"], + popup: false, }; }, + methods: { + upMask() { + this.popup = !this.popup; + }, + }, }; @@ -30,7 +41,7 @@ export default { @import "../common.scss"; .status { -// line-height: 40rpx; + // line-height: 40rpx; padding: 4rpx 16rpx; border: 1rpx solid; border-radius: 8rpx; @@ -48,7 +59,23 @@ export default { color: #1eb066; background-color: #1eb06611; } +.mask { + position: absolute; + width: 168rpx; + height: 232rpx; + background-color: #fff; + border-radius: 16rpx; + top: 80rpx; + right: 16rpx; + padding: 24rpx; + box-sizing: border-box; + display: flex; + flex-direction: column; + justify-content: space-around; +} + .record-item { + position: relative; // height: 168rpx; border-radius: 24rpx; border: 2rpx #fff solid; diff --git a/meeting/record/index.vue b/meeting/record/index.vue index 147309a..29152e4 100644 --- a/meeting/record/index.vue +++ b/meeting/record/index.vue @@ -12,7 +12,7 @@ > - + @@ -33,7 +33,7 @@ export default { }; - \ No newline at end of file diff --git a/pages.json b/pages.json index b73b798..d58d666 100644 --- a/pages.json +++ b/pages.json @@ -172,9 +172,9 @@ } }, { - "path":"record/index", + "path":"summary/index", "style": { - "navigationBarTitleText": "会议记录", + "navigationBarTitleText": "会议总结", "navigationStyle": "custom", "enablePullDownRefresh":false }