47 lines
1.1 KiB
Vue
47 lines
1.1 KiB
Vue
<template>
|
||
<view>
|
||
<status-nav navBarTitle="消息中心" returnColor="#c2c2c2"></status-nav>
|
||
<container-subgroup>
|
||
<view slot="content">
|
||
<view class="bacf mar-x10" v-for="(item,index) in 10" :key="index">
|
||
<view class="pad-sx30 pad-zy20 disjbac">
|
||
<view class="fon30 message-circle disac" :class="['activity-message','audit-failed','system-notification'][index]">活动消息</view>
|
||
<view class="fon26 col9">2020.06.17 18:30</view>
|
||
</view>
|
||
<view class="bbot"></view>
|
||
<view class="fon27 line-h46 pad-zy20 pad-sx30" style="color: #737373;">恭喜您成为第99位会员,我们将赠送您一张优惠 券,您可以享受8折优惠购买....</view>
|
||
</view>
|
||
</view>
|
||
</container-subgroup>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import rate from '@/components/rate.vue';
|
||
export default {
|
||
components:{
|
||
rate
|
||
},
|
||
data() {
|
||
return {
|
||
|
||
}
|
||
},
|
||
onLoad() {
|
||
this.getMessageList();
|
||
},
|
||
methods: {
|
||
// 查询消息列表
|
||
getMessageList(){
|
||
this.$requst.post('/universal/api.message/message_list').then(res=>{
|
||
|
||
})
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
|
||
</style>
|