| 12345678910111213141516171819202122232425262728293031323334353637 | <template>	<div class="page-empty" :style="{'height':height,'margin-top':marginTop}">		<u-empty text="暂无数据" textSize="26rpx" width="332rpx" height="332rpx" mode="order" icon="http://cdn.uviewui.com/uview/empty/order.png"></u-empty>	</div></template><script>	export default {		props:{			height:{				typeof: String,				default: '100vh'			},			marginTop:{				typeof: String,				default: '0px'			}		},		data(){			return {							}		},		methods:{					}	}</script><style scoped lang="less">	.page-empty{		width: 100%;		display: flex;		align-items: center;		justify-content: center;	}</style>
 |