You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
296 B
18 lines
296 B
<template>
|
|
<view class="dp-blank" :style="{
|
|
height:params.height*2.2+'rpx',
|
|
backgroundColor:params.bgcolor,
|
|
margin:params.margin_y*2.2+'rpx '+params.margin_x*2.2+'rpx'
|
|
}"></view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: {
|
|
params:{},
|
|
data:{}
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
|
|
</style>
|