2022-06-25 17:31:17 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<view>
|
2022-06-25 18:05:34 +08:00
|
|
|
|
<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>
|
2022-06-25 18:05:34 +08:00
|
|
|
|
</view>
|
2022-06-25 17:31:17 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
export default {
|
|
|
|
|
|
name: 'bg-toast',
|
|
|
|
|
|
props: {
|
2022-06-25 18:05:34 +08:00
|
|
|
|
icon: {
|
2022-06-25 17:31:17 +08:00
|
|
|
|
type: String,
|
|
|
|
|
|
default: ''
|
|
|
|
|
|
},
|
2022-06-25 18:05:34 +08:00
|
|
|
|
msg: {
|
2022-06-25 17:31:17 +08:00
|
|
|
|
type: String,
|
2022-06-25 18:05:34 +08:00
|
|
|
|
default: ''
|
2022-06-25 17:31:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
</style>
|