You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
722 B
33 lines
722 B
<template>
|
|
<view class="page">
|
|
<view class="inform-list">
|
|
<view class="list" v-for="(item,index) in 6" :key="index">
|
|
<view class="date">
|
|
<text>09.13 09:20</text>
|
|
</view>
|
|
<view class="item">
|
|
<view class="title">
|
|
<text class="one-omit">活动标题不要超过一行哦哦哦哦哦哦哦哦哦</text>
|
|
</view>
|
|
<view class="describe">
|
|
<text class="two-omit">活动内容的描述:描述内容请控制在两行以内,超过两行的部分请用</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import 'NotificationMessage.scss';
|
|
</style>
|
|
|