36 lines
491 B
Vue
36 lines
491 B
Vue
<template>
|
||
<view>
|
||
<view class="padding-xl text-gray text-center">
|
||
<view class="big-icon padding-tb" :class="'cuIcon-' + icon"></view>
|
||
<view class="text-lg">功能开发中,暂无法使用</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
name: 'bg-toast',
|
||
props: {
|
||
icon: {
|
||
type: String,
|
||
default: ''
|
||
},
|
||
msg: {
|
||
type: String,
|
||
default: ''
|
||
}
|
||
},
|
||
data() {
|
||
return {
|
||
|
||
}
|
||
},
|
||
methods: {
|
||
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
</style>
|