2023-11-28
This commit is contained in:
@@ -356,7 +356,7 @@ export default defineComponent({
|
|||||||
this.loadingShow = false
|
this.loadingShow = false
|
||||||
if(this.driver__.driver){
|
if(this.driver__.driver){
|
||||||
nextTick().then(()=>{
|
nextTick().then(()=>{
|
||||||
driverObj__.moveTo(18);
|
driverObj__.moveTo(20);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -596,7 +596,7 @@ export default defineComponent({
|
|||||||
if(this.driver__.driver){
|
if(this.driver__.driver){
|
||||||
nextTick().then(()=>{
|
nextTick().then(()=>{
|
||||||
// driverObj__.moveNext();
|
// driverObj__.moveNext();
|
||||||
driverObj__.moveTo(28);
|
driverObj__.moveTo(30);
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<div class="modal_text">
|
<div class="modal_text">
|
||||||
<div>{{ $t('ColorboardUpload.Thumbnail') }}</div>
|
<div>{{ $t('ColorboardUpload.Thumbnail') }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal_img">
|
<div class="modal_img Guide_1_11_1" :class="[driver__.driver?'showEvents':'']">
|
||||||
<div class="modal_img_item" v-for="color,index in colorList" :key="color" >
|
<div class="modal_img_item" v-for="color,index in colorList" :key="color" >
|
||||||
<div @click="selectColorItem(index,color)" :class="['upload_color',selectIndex === index ? 'select_upload_color' : '',]" :style="{background:`rgba(${color?.r},${color?.g},${color?.b},${color?.a})`}">
|
<div @click="selectColorItem(index,color)" :class="['upload_color',selectIndex === index ? 'select_upload_color' : '',]" :style="{background:`rgba(${color?.r},${color?.g},${color?.b},${color?.a})`}">
|
||||||
</div>
|
</div>
|
||||||
@@ -269,6 +269,9 @@ export default defineComponent({
|
|||||||
this.pantongNameList = []
|
this.pantongNameList = []
|
||||||
this.reviewColor= {}
|
this.reviewColor= {}
|
||||||
this.getColorBg = false
|
this.getColorBg = false
|
||||||
|
if(this.driver__.driver){
|
||||||
|
driverObj__.moveNext()
|
||||||
|
}
|
||||||
// this.selectColor = color?.r ? {rgba:{r:color.r,g:color.g,b:color.b,a:color.a? color.a: 1},hex:hex} : {}
|
// this.selectColor = color?.r ? {rgba:{r:color.r,g:color.g,b:color.b,a:color.a? color.a: 1},hex:hex} : {}
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -399,7 +402,7 @@ export default defineComponent({
|
|||||||
setUplpadColor(color){
|
setUplpadColor(color){
|
||||||
this.selectColor = color
|
this.selectColor = color
|
||||||
if(this.driver__.driver){
|
if(this.driver__.driver){
|
||||||
driverObj__.moveTo(12)
|
driverObj__.moveNext()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
beforeUpload(file){
|
beforeUpload(file){
|
||||||
|
|||||||
@@ -268,8 +268,6 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
driver__:{
|
driver__:{
|
||||||
handler(newVal,oldVal){
|
handler(newVal,oldVal){
|
||||||
console.log(newVal,'======');
|
|
||||||
|
|
||||||
if(newVal.index >= 1 && newVal.index <= 2){
|
if(newVal.index >= 1 && newVal.index <= 2){
|
||||||
this.open(newVal.index)
|
this.open(newVal.index)
|
||||||
}else{
|
}else{
|
||||||
|
|||||||
@@ -86,8 +86,6 @@ export default defineComponent({
|
|||||||
const store = useStore()
|
const store = useStore()
|
||||||
let {t} = useI18n()
|
let {t} = useI18n()
|
||||||
let driver__:any = computed(()=>{
|
let driver__:any = computed(()=>{
|
||||||
console.log(123);
|
|
||||||
|
|
||||||
return store.state.Guide.guide
|
return store.state.Guide.guide
|
||||||
})
|
})
|
||||||
provide('driver__',driver__)
|
provide('driver__',driver__)
|
||||||
@@ -194,9 +192,6 @@ export default defineComponent({
|
|||||||
this.showCollectionModal =false
|
this.showCollectionModal =false
|
||||||
this.collectionStep = 1
|
this.collectionStep = 1
|
||||||
this.$emit('finishCollection')
|
this.$emit('finishCollection')
|
||||||
if(this.driver__.driver){
|
|
||||||
driverObj__.moveNext()
|
|
||||||
}
|
|
||||||
let elList = document.querySelectorAll('.img_block_item_sketch img')
|
let elList = document.querySelectorAll('.img_block_item_sketch img')
|
||||||
Https.axiosPost(Https.httpUrls.sketchBoardsBoundingBox, data)
|
Https.axiosPost(Https.httpUrls.sketchBoardsBoundingBox, data)
|
||||||
.then((rv: any) => {
|
.then((rv: any) => {
|
||||||
|
|||||||
@@ -23,6 +23,10 @@ const driverObj__ = driver({
|
|||||||
{ element: '.Guide_1_8', popover: { title: 'Title', description: 'Description' } },
|
{ element: '.Guide_1_8', popover: { title: 'Title', description: 'Description' } },
|
||||||
{ element: '.Guide_1_10', popover: { title: 'Title', description: 'Description' } },
|
{ element: '.Guide_1_10', popover: { title: 'Title', description: 'Description' } },
|
||||||
{ element: '.Guide_1_11', popover: { title: 'Title', description: 'Description' } },
|
{ element: '.Guide_1_11', popover: { title: 'Title', description: 'Description' } },
|
||||||
|
|
||||||
|
{ element: '.Guide_1_11_1', popover: { title: 'Title', description: 'Description' } },
|
||||||
|
{ element: '.Guide_1_11', popover: { title: 'Title', description: 'Description' } },
|
||||||
|
|
||||||
{ element: '.Guide_1_8', popover: { title: 'Title', description: 'Description' } },
|
{ element: '.Guide_1_8', popover: { title: 'Title', description: 'Description' } },
|
||||||
{ element: '.Guide_1_2', popover: { title: 'Title', description: 'Description' } },
|
{ element: '.Guide_1_2', popover: { title: 'Title', description: 'Description' } },
|
||||||
{ element: '.Guide_1_14', popover: { title: 'Title', description: 'Description' } },
|
{ element: '.Guide_1_14', popover: { title: 'Title', description: 'Description' } },
|
||||||
@@ -59,11 +63,11 @@ const driverObj__ = driver({
|
|||||||
element.classList.remove('Guide_')
|
element.classList.remove('Guide_')
|
||||||
}
|
}
|
||||||
popover.previousButton.style.display = 'none'
|
popover.previousButton.style.display = 'none'
|
||||||
let driver = document.getElementsByClassName('driver-active')[0]
|
let driver = document.querySelector('body')
|
||||||
if(
|
if(
|
||||||
options.state.activeIndex >= 1 && options.state.activeIndex <= 2 ||
|
options.state.activeIndex >= 1 && options.state.activeIndex <= 2 ||
|
||||||
options.state.activeIndex >= 18 && options.state.activeIndex < 19 ||
|
options.state.activeIndex >= 20 && options.state.activeIndex < 21 ||
|
||||||
options.state.activeIndex >= 24 && options.state.activeIndex < 25
|
options.state.activeIndex >= 26 && options.state.activeIndex < 27
|
||||||
){
|
){
|
||||||
popover.footer.style.display = 'block'
|
popover.footer.style.display = 'block'
|
||||||
driver.classList.add('showEvents')
|
driver.classList.add('showEvents')
|
||||||
@@ -86,7 +90,7 @@ const driverObj__ = driver({
|
|||||||
},
|
},
|
||||||
//销毁前
|
//销毁前
|
||||||
onDestroyStarted:()=>{
|
onDestroyStarted:()=>{
|
||||||
data.driver = false
|
// data.driver = false
|
||||||
store?.commit("setGuide", data);
|
store?.commit("setGuide", data);
|
||||||
driverObj__.destroy();//销毁方法
|
driverObj__.destroy();//销毁方法
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="home_page Guide_1_16">
|
<div class="home_page">
|
||||||
<HeaderComponent></HeaderComponent>
|
<HeaderComponent></HeaderComponent>
|
||||||
<div class="page_content">
|
<div class="page_content">
|
||||||
<!-- <img class="page_content_bg" src="@/assets/images/homePage/bg.png" /> -->
|
<!-- <img class="page_content_bg" src="@/assets/images/homePage/bg.png" /> -->
|
||||||
@@ -191,7 +191,7 @@
|
|||||||
|
|
||||||
<!-- design collection的进度蒙层 start-->
|
<!-- design collection的进度蒙层 start-->
|
||||||
<div class="progress_mark" v-show="showDesignMark">
|
<div class="progress_mark" v-show="showDesignMark">
|
||||||
<div class="mark_content">
|
<div class="mark_content Guide_1_16">
|
||||||
<a-progress type="circle" :percent="designProgress" strokeColor="#341e57" :width="200" />
|
<a-progress type="circle" :percent="designProgress" strokeColor="#341e57" :width="200" />
|
||||||
<div>
|
<div>
|
||||||
<a-spin :indicator="indicator" />
|
<a-spin :indicator="indicator" />
|
||||||
@@ -565,7 +565,11 @@ export default defineComponent({
|
|||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if(this.driver__.driver){
|
||||||
|
nextTick().then(()=>{
|
||||||
|
driverObj__.moveNext();
|
||||||
|
})
|
||||||
|
}
|
||||||
let data = this.getDesignData(this.designCollectionId);
|
let data = this.getDesignData(this.designCollectionId);
|
||||||
Https.axiosPost(Https.httpUrls.reDesignCollection, data)
|
Https.axiosPost(Https.httpUrls.reDesignCollection, data)
|
||||||
.then((rv: any) => {
|
.then((rv: any) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user