33 lines
490 B
Vue
33 lines
490 B
Vue
<template>
|
|
<view class="margin-bottom-lg">
|
|
<!-- 顶部操作条 -->
|
|
<cu-custom :bgColor="'bg-main-color'">
|
|
<block slot="content">我的消息</block>
|
|
</cu-custom>
|
|
<bg-toast :icon="'repair'" :msg="'开发中'"></bg-toast>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import bgToast from '@/components/default-toast/bg-toast.vue';
|
|
|
|
export default {
|
|
name: 'msgPage',
|
|
components: {
|
|
bgToast
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|