dingdong-mall/components/default-toast/bg-toast.vue

36 lines
491 B
Vue
Raw Normal View History

2022-06-25 17:31:17 +08:00
<template>
<view>
<view class="padding-xl text-gray text-center">
<view class="big-icon padding-tb" :class="'cuIcon-' + icon"></view>
2022-06-27 17:30:14 +08:00
<view class="text-lg">功能开发中暂无法使用</view>
</view>
2022-06-25 17:31:17 +08:00
</view>
</template>
<script>
export default {
name: 'bg-toast',
props: {
icon: {
2022-06-25 17:31:17 +08:00
type: String,
default: ''
},
msg: {
2022-06-25 17:31:17 +08:00
type: String,
default: ''
2022-06-25 17:31:17 +08:00
}
},
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>