| 1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <view class="page-empty adffcacjc" :style="{'margin-top':marginTop}">
- <u-empty :text="text" textSize="32rpx" text-color="#999999" width="332rpx" height="332rpx" mode="order" :icon="imgBase+'recharge_empty.png'"></u-empty>
- </view>
- </template>
- <script>
- export default {
- props:{
- text:{
- typeof:String,
- default:'暂无数据'
- },
- marginTop:{
- typeof: String,
- default: '0px'
- }
- },
- data(){
- return {
- imgBase:this.$imgBase
- }
- },
- methods:{
-
- }
- }
- </script>
- <style scoped lang="less">
- .page-empty{
- width: 100%;
- height: 100%;
- }
- </style>
|