| 12345678910111213141516171819202122232425262728293031 | <template>	<view class="page-empty adffcacjc" :style="{'margin-top':marginTop}">		<u-empty 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:{			marginTop:{				typeof: String,				default: '0px'			}		},		data(){			return {				imgBase:this.$imgBase			}		},		methods:{					}	}</script><style scoped lang="less">	.page-empty{		width: 100%;		height: 100%;	}</style>
 |