feat: 会议总结 image文件夹

feat/meeting
lilin 9 months ago
parent 139f7fce79
commit 6c5a05ff97
  1. 29
      meeting/components/record.vue
  2. 4
      meeting/record/index.vue
  3. 20
      meeting/summary/index.vue
  4. 4
      pages.json

@ -6,12 +6,17 @@
这是一个标题 这是一个标题
<text class="status" :class="status[1]"> 这是状态 </text> <text class="status" :class="status[1]"> 这是状态 </text>
</view> </view>
<view> 1111 </view> <view @click.stop="upMask"> 1111 </view>
</view> </view>
<view class="flex justify-between items-center txt"> <view class="flex justify-between items-center txt">
<view> 这是时间 </view> <view> 这是时间 </view>
<view class="">这是时长</view> <view class="">这是时长</view>
</view> </view>
<view class="mask" v-if="popup">
<view>导出</view>
<view>重命名</view>
<view>删除</view>
</view>
</view> </view>
</view> </view>
</template> </template>
@ -21,8 +26,14 @@ export default {
data() { data() {
return { return {
status: ["wait", "success"], status: ["wait", "success"],
popup: false,
}; };
}, },
methods: {
upMask() {
this.popup = !this.popup;
},
},
}; };
</script> </script>
@ -48,7 +59,23 @@ export default {
color: #1eb066; color: #1eb066;
background-color: #1eb06611; 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 { .record-item {
position: relative;
// height: 168rpx; // height: 168rpx;
border-radius: 24rpx; border-radius: 24rpx;
border: 2rpx #fff solid; border: 2rpx #fff solid;

@ -12,7 +12,7 @@
></u-search> ></u-search>
</div> </div>
<view> <view>
<record-item v-for="item in 10" :key="item"></record-item> <record-item v-for="item in 1" :key="item"></record-item>
</view> </view>
</div> </div>
</div> </div>
@ -33,7 +33,7 @@ export default {
}; };
</script> </script>
<style> <style lang="scss" scoped>
@import "../common.scss"; @import "../common.scss";
.container { .container {
min-height: 100vh; min-height: 100vh;

@ -0,0 +1,20 @@
<template>
<div>
<meet-sticky :bg="bg">
<meet-navbar title="会议总结" :isFixed="false"></meet-navbar>
</meet-sticky>
</div>
</template>
<script>
export default {
data() {
return {
bg: "",
};
},
};
</script>
<style lang="scss" scoped>
</style>

@ -172,9 +172,9 @@
} }
}, },
{ {
"path":"record/index", "path":"summary/index",
"style": { "style": {
"navigationBarTitleText": "会议记录", "navigationBarTitleText": "会议总结",
"navigationStyle": "custom", "navigationStyle": "custom",
"enablePullDownRefresh":false "enablePullDownRefresh":false
} }

Loading…
Cancel
Save