48 lines
1013 B
Vue
48 lines
1013 B
Vue
<!-- 群聊邀请确认列表页面 -->
|
|
<template>
|
|
<view class="reviewed">
|
|
<view class="reviewed-item">
|
|
<u-icon name="plus-people-fill" color="#fff" class="add-icon" />
|
|
{{`' 艾米的猫儿洛基 '想邀请 1位朋友加入群聊`}}
|
|
<view class="sure"> 去确认 </view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
indexs: [],
|
|
};
|
|
},
|
|
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.reviewed{
|
|
.reviewed-item{
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
|
|
.add-icon{
|
|
background-color: $main-color;
|
|
padding: 10rpx;
|
|
border-radius: 6rpx;
|
|
}
|
|
}
|
|
|
|
}
|
|
</style>
|