营销:完善装修编辑器预览功能

(cherry picked from commit 784623724d)
This commit is contained in:
owen 2023-12-07 19:58:52 +08:00 committed by shizhong
parent 898faf0999
commit 59ebc1ea8f
4 changed files with 34 additions and 15 deletions

View File

@ -17,3 +17,6 @@ VITE_API_URL=/admin-api
# 打包路径
VITE_BASE_PATH=/
# 商城H5会员端域名
VITE_MALL_H5_DOMAIN=http://localhost:3000

View File

@ -29,3 +29,6 @@ VITE_SOURCEMAP=true
# 输出路径
VITE_OUT_DIR=dist
# 商城H5会员端域名
VITE_MALL_H5_DOMAIN=http://localhost:3000

View File

@ -15,7 +15,7 @@
<Icon icon="system-uicons:reset-alt" :size="24" />
</el-button>
</el-tooltip>
<el-tooltip content="预览">
<el-tooltip content="预览" v-if="previewUrl">
<el-button @click="handlePreview">
<Icon icon="ep:view" :size="24" />
</el-button>
@ -119,6 +119,19 @@
</el-aside>
</el-container>
</el-container>
<!-- 预览弹框 -->
<Dialog v-model="previewDialogVisible" title="预览" width="700">
<div class="flex justify-around">
<IFrame
class="w-375px border-4px border-rounded-8px border-solid p-2px h-667px!"
:src="previewUrl"
/>
<div class="flex flex-col">
<el-text>手机扫码预览</el-text>
<Qrcode :text="previewUrl" logo="/logo.gif" />
</div>
</div>
</Dialog>
</template>
<script lang="ts">
//
@ -137,12 +150,12 @@ import { component as TAB_BAR_COMPONENT } from './components/mobile/TabBar/confi
import { isString } from '@/utils/is'
import { DiyComponent, DiyComponentLibrary, PageConfig } from '@/components/DiyEditor/util'
import { componentConfigs } from '@/components/DiyEditor/components/mobile'
import { array, oneOfType } from 'vue-types'
import { propTypes } from '@/utils/propTypes'
/** 页面装修详情页 */
defineOptions({ name: 'DiyPageDetail' })
//
const message = useMessage()
//
const componentLibrary = ref()
//
@ -159,20 +172,22 @@ const selectedComponentIndex = ref<number>(-1)
//
const pageComponents = ref<DiyComponent<any>[]>([])
//
const props = defineProps<{
const props = defineProps({
// Json
modelValue: string | PageConfig
modelValue: oneOfType<string | PageConfig>([String, Object]).isRequired,
//
title: string
title: propTypes.string.def(''),
//
libs: DiyComponentLibrary[]
libs: array<DiyComponentLibrary>(),
//
showNavigationBar: boolean
showNavigationBar: propTypes.bool.def(true),
//
showTabBar: boolean
showTabBar: propTypes.bool.def(false),
//
showPageConfig: boolean
}>()
showPageConfig: propTypes.bool.def(true),
//
previewUrl: propTypes.string.def('')
})
//
watch(
@ -315,8 +330,9 @@ const handleReset = () => {
emits('reset')
}
//
const previewDialogVisible = ref(false)
const handlePreview = () => {
message.warning('开发中~')
previewDialogVisible.value = true
emits('preview')
}

View File

@ -4,9 +4,6 @@
v-model="formData.property"
:title="formData.name"
:libs="PAGE_LIBS"
:show-page-config="true"
:show-navigation-bar="true"
:show-tab-bar="false"
@save="submitForm"
/>
</template>