选择线稿图后下一步

This commit is contained in:
X1627315083@163.com
2026-04-27 11:07:51 +08:00
parent bd603e1bf9
commit 6d41e8cc34
6 changed files with 48 additions and 19 deletions

View File

@@ -5,6 +5,7 @@ import sellerToolTipImg2 from '@/assets/images/seller/sellerToolTip-2.png'
import sellerToolTipImg3 from '@/assets/images/seller/sellerToolTip-3.png'
import { useI18n } from 'vue-i18n'
import { useRouter } from 'vue-router'
import { Https } from '@/tool/https'
const props = defineProps({
visible: {
type: Boolean,
@@ -38,6 +39,8 @@ let data = reactive({
showAgain: false,
})
let toolTipBoxRef = ref(null)
const routerPath = ref('')
const cleardata = ()=>{
emit('update:visible', false)
@@ -45,8 +48,9 @@ const cleardata = ()=>{
}
const getStarted = ()=>{
if(data.showAgain){Https.axiosPost(Https.httpUrls.setListingPopup)}
emit('update:visible', false)
router.push({path:'/home/seller/myListings/select'})
router.push({path:routerPath.value})
}
@@ -54,7 +58,7 @@ onMounted(()=>{
})
onUnmounted(()=>{
})
defineExpose({})
defineExpose({routerPath})
const { showAgain } = toRefs(data);
</script>
<template>