新增营销系统、分销系统、会员功能、门店、提现功能
This commit is contained in:
26
components/canvasShow/basics/assistDiv.vue
Normal file
26
components/canvasShow/basics/assistDiv.vue
Normal file
@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<div class="div" :style="{backgroundColor:componentContent.bgColor,height:componentContent.height + 'rpx'}"></div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { toRefs } from 'vue';
|
||||
const props = defineProps({
|
||||
terminal: {
|
||||
type: Number,
|
||||
default: 4,
|
||||
},
|
||||
componentContent: {
|
||||
type: Object,
|
||||
default () {
|
||||
return {};
|
||||
}
|
||||
},
|
||||
})
|
||||
const { componentContent } = toRefs(props)
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.div{
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user