营销:适配商城装修组件【用户订单】
This commit is contained in:
parent
af67db577d
commit
2c1edfa781
@ -15,8 +15,6 @@ export const component = {
|
|||||||
style: {
|
style: {
|
||||||
bgType: 'color',
|
bgType: 'color',
|
||||||
bgColor: '',
|
bgColor: '',
|
||||||
marginLeft: 8,
|
|
||||||
marginRight: 8,
|
|
||||||
marginBottom: 8
|
marginBottom: 8
|
||||||
} as ComponentStyle
|
} as ComponentStyle
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,23 @@
|
|||||||
|
import { ComponentStyle, DiyComponent } from '@/components/DiyEditor/util'
|
||||||
|
|
||||||
|
/** 用户订单属性 */
|
||||||
|
export interface UserOrderProperty {
|
||||||
|
// 组件样式
|
||||||
|
style: ComponentStyle
|
||||||
|
}
|
||||||
|
|
||||||
|
// 定义组件
|
||||||
|
export const component = {
|
||||||
|
id: 'UserOrder',
|
||||||
|
name: '用户订单',
|
||||||
|
icon: 'ep:list',
|
||||||
|
property: {
|
||||||
|
style: {
|
||||||
|
bgType: 'color',
|
||||||
|
bgColor: '',
|
||||||
|
marginLeft: 8,
|
||||||
|
marginRight: 8,
|
||||||
|
marginBottom: 8
|
||||||
|
} as ComponentStyle
|
||||||
|
}
|
||||||
|
} as DiyComponent<UserOrderProperty>
|
@ -0,0 +1,13 @@
|
|||||||
|
<template>
|
||||||
|
<el-image src="https://shopro.sheepjs.com/admin/static/images/shop/decorate/orderCardStyle.png" />
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { UserOrderProperty } from './config'
|
||||||
|
|
||||||
|
/** 用户订单 */
|
||||||
|
defineOptions({ name: 'UserOrder' })
|
||||||
|
// 定义属性
|
||||||
|
defineProps<{ property: UserOrderProperty }>()
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss"></style>
|
@ -0,0 +1,17 @@
|
|||||||
|
<template>
|
||||||
|
<ComponentContainerProperty v-model="formData.style" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { UserOrderProperty } from './config'
|
||||||
|
import { usePropertyForm } from '@/components/DiyEditor/util'
|
||||||
|
|
||||||
|
// 用户订单属性面板
|
||||||
|
defineOptions({ name: 'UserOrderProperty' })
|
||||||
|
|
||||||
|
const props = defineProps<{ modelValue: UserOrderProperty }>()
|
||||||
|
const emit = defineEmits(['update:modelValue'])
|
||||||
|
const { formData } = usePropertyForm(props.modelValue, emit)
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss"></style>
|
@ -109,7 +109,7 @@ export const PAGE_LIBS = [
|
|||||||
},
|
},
|
||||||
{ name: '商品组件', extended: true, components: ['ProductCard', 'ProductList'] },
|
{ name: '商品组件', extended: true, components: ['ProductCard', 'ProductList'] },
|
||||||
{
|
{
|
||||||
name: '会员组件',
|
name: '用户组件',
|
||||||
extended: true,
|
extended: true,
|
||||||
components: ['UserCard', 'UserOrder', 'UserWallet', 'UserCoupon']
|
components: ['UserCard', 'UserOrder', 'UserWallet', 'UserCoupon']
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user