12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <template>
- <ComponentContainerProperty v-model="formData.style">
- <!-- 表单 -->
- <el-form label-width="80px" :model="formData" class="m-t-8px">
- <el-text tag="p"> 魔方设置 </el-text>
- <el-text type="info" size="small"> 每格尺寸187 * 187 </el-text>
- <MagicCubeEditor
- class="m-y-16px"
- v-model="formData.list"
- :rows="4"
- :cols="4"
- @hot-area-selected="handleHotAreaSelected"
- />
- <template v-for="(hotArea, index) in formData.list" :key="index">
- <template v-if="selectedHotAreaIndex === index">
- <el-form-item label="上传图片" :prop="`list[${index}].imgUrl`">
- <UploadImg v-model="hotArea.imgUrl" height="80px" width="80px" />
- </el-form-item>
- <el-form-item label="链接" :prop="`list[${index}].url`">
- <el-input v-model="hotArea.url" placeholder="请输入链接" />
- </el-form-item>
- </template>
- </template>
- <el-form-item label="上圆角" prop="borderRadiusTop">
- <el-slider
- v-model="formData.borderRadiusTop"
- :max="100"
- :min="0"
- show-input
- input-size="small"
- :show-input-controls="false"
- />
- </el-form-item>
- <el-form-item label="下圆角" prop="borderRadiusBottom">
- <el-slider
- v-model="formData.borderRadiusBottom"
- :max="100"
- :min="0"
- show-input
- input-size="small"
- :show-input-controls="false"
- />
- </el-form-item>
- <el-form-item label="间隔" prop="space">
- <el-slider
- v-model="formData.space"
- :max="100"
- :min="0"
- show-input
- input-size="small"
- :show-input-controls="false"
- />
- </el-form-item>
- </el-form>
- </ComponentContainerProperty>
- </template>
- <script setup lang="ts">
- import { usePropertyForm } from '@/components/DiyEditor/util'
- import { MagicCubeProperty } from '@/components/DiyEditor/components/mobile/MagicCube/config'
- /** 广告魔方属性面板 */
- defineOptions({ name: 'MagicCubeProperty' })
- const props = defineProps<{ modelValue: MagicCubeProperty }>()
- const emit = defineEmits(['update:modelValue'])
- const { formData } = usePropertyForm(props.modelValue, emit)
- // 选中的热区
- const selectedHotAreaIndex = ref(-1)
- const handleHotAreaSelected = (_: any, index: number) => {
- selectedHotAreaIndex.value = index
- }
- </script>
- <style scoped lang="scss"></style>
|