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 }