2023-11-22-1
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
class="home_null_icon"
|
||||
src="@/assets/images/homePage/null_img.png"
|
||||
/> -->
|
||||
<div class="new_collection_button" @click="startNewCollection()">
|
||||
<div id="Guide_1_1" class="new_collection_button" @click="startNewCollection()">
|
||||
{{ $t('HomeView.GetStarted') }}
|
||||
</div>
|
||||
</div>
|
||||
@@ -205,7 +205,7 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent, h, ref, computed ,inject,provide} from "vue";
|
||||
import { defineComponent, h, ref, computed ,inject,provide,nextTick} from "vue";
|
||||
import HeaderComponent from "@/component/HomePage/Header.vue";
|
||||
import CollectionModal from "@/component/HomePage/collectionModal.vue";
|
||||
import NewCollectionReview from "@/component/HomePage/NewCollectionReview.vue";
|
||||
@@ -217,6 +217,7 @@ import { message } from "ant-design-vue";
|
||||
import { useStore } from "vuex";
|
||||
import { Https } from "@/tool/https";
|
||||
import { rgbToHsv, dataURLtoBlob } from "@/tool/util";
|
||||
import { openGuide,driverObj__ } from "@/tool/guide";
|
||||
import { LoadingOutlined } from "@ant-design/icons-vue";
|
||||
import draggable from 'vuedraggable'
|
||||
import JSZip from "jszip";
|
||||
@@ -330,6 +331,10 @@ export default defineComponent({
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
// if(JSON.parse( getCookie('isFirst') as any)){
|
||||
openGuide()
|
||||
// }
|
||||
|
||||
let userInfo:any = getCookie("userInfo")
|
||||
this.userInfo = JSON.parse(userInfo);
|
||||
this.store.dispatch('get_clothingType')
|
||||
@@ -432,6 +437,9 @@ export default defineComponent({
|
||||
let collectionModal: any = this.$refs.collectionModal;
|
||||
this.store.commit("clearAllData");
|
||||
collectionModal.changeCollectionModal(true);
|
||||
nextTick().then(()=>{
|
||||
driverObj__.moveNext();
|
||||
})
|
||||
},
|
||||
|
||||
//recollection
|
||||
|
||||
Reference in New Issue
Block a user