fix
This commit is contained in:
@@ -4,6 +4,10 @@
|
||||
<!-- <generalCanvas></generalCanvas> -->
|
||||
|
||||
<div class="page_content">
|
||||
<div class="userSystem" v-if="userDetail.systemList.indexOf(0) >= 0">
|
||||
You can use these features only after becoming a regular user~
|
||||
</div>
|
||||
|
||||
<!-- <img class="page_content_bg" src="@/assets/images/homePage/bg.png" /> -->
|
||||
<div class="page_content_body">
|
||||
<div class="home_page_body">
|
||||
@@ -79,7 +83,7 @@
|
||||
</a-slider>
|
||||
<div class="text">Big</div>
|
||||
</div>
|
||||
<div class="gallery_btn Guide_1_31" style="margin-left: auto" @click="exportModel()">
|
||||
<div v-show="designCollectionId" class="gallery_btn Guide_1_31" style="margin-left: auto" @click="exportModel()">
|
||||
<!-- {{ $t('HomeView.Export') }} -->
|
||||
{{$t('HomeView.FinalizeCollection')}}
|
||||
</div>
|
||||
@@ -224,8 +228,7 @@
|
||||
</div> -->
|
||||
<!-- design collection的进度蒙层 end-->
|
||||
<affiche ref="affiche"></affiche>
|
||||
<!-- <RobotAssist></RobotAssist> -->
|
||||
<tesst></tesst>
|
||||
<!-- <tesst></tesst> -->
|
||||
|
||||
</div>
|
||||
</template>
|
||||
@@ -242,7 +245,6 @@ import productImg from "@/component/HomePage/productImg.vue";
|
||||
import generalCanvas from "@/component/modules/generalCanvas.vue";
|
||||
import affiche from "@/component/HomePage/affiche.vue";
|
||||
import DesignDetail from "@/component/Detail/DesignDetail.vue";
|
||||
// import RobotAssist from "@/component/HomePage/RobotAssist.vue";
|
||||
import html2canvas from "html2canvas";
|
||||
import { message,Modal } from "ant-design-vue";
|
||||
import { useStore } from "vuex";
|
||||
@@ -265,7 +267,6 @@ export default defineComponent({
|
||||
DesignDetail,
|
||||
ExportNewCoolection,
|
||||
affiche,
|
||||
// RobotAssist,
|
||||
draggable,
|
||||
productImg,
|
||||
generalCanvas
|
||||
@@ -283,6 +284,9 @@ export default defineComponent({
|
||||
let designCollectionList: any = computed(() => {
|
||||
return store.state.HomeStoreModule.designCollectionList;
|
||||
});
|
||||
let userDetail= computed(()=>{
|
||||
return store.state.UserHabit.userDetail
|
||||
})
|
||||
let userGroupId: any = computed(() => {
|
||||
return store.state.HomeStoreModule.userGroupId;
|
||||
}); //模特id //当likeDesignCollectionList长度为0时清空,startdesign时清空
|
||||
@@ -334,7 +338,6 @@ export default defineComponent({
|
||||
])
|
||||
provide('exportNav',exportNav)
|
||||
let isShowOperate = ref(false)
|
||||
let userInfo:any = {}
|
||||
let {t} = useI18n()
|
||||
let driver__:any = computed(()=>{
|
||||
return store.state.Guide.guide
|
||||
@@ -374,6 +377,7 @@ export default defineComponent({
|
||||
likeDesignCollectionList,
|
||||
designCollectionList,
|
||||
userGroupId,
|
||||
userDetail,
|
||||
setPortfolio,
|
||||
designCollectionId,
|
||||
designId,
|
||||
@@ -381,7 +385,6 @@ export default defineComponent({
|
||||
contentImg,
|
||||
exportNav,
|
||||
isShowOperate,
|
||||
userInfo,
|
||||
t,
|
||||
driver__,
|
||||
likeDesignItemIdList,
|
||||
@@ -439,8 +442,6 @@ export default defineComponent({
|
||||
// }
|
||||
let test:any = getCookie('isTest')
|
||||
let isTest =JSON.parse(test)
|
||||
let userInfo:any = getCookie("userInfo")
|
||||
this.userInfo = JSON.parse(userInfo);
|
||||
this.store.dispatch('get_clothingType')
|
||||
//判断账号剩余时间是否太短
|
||||
let isModalOne = JSON.parse(sessionStorage.getItem("isTimeOne") as any)
|
||||
@@ -1215,13 +1216,26 @@ export default defineComponent({
|
||||
// transform: translateX(-50%);
|
||||
.page_content {
|
||||
position: relative;
|
||||
.userSystem{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
z-index:2;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
color: #fff;
|
||||
font-weight: 600;
|
||||
font-size: 4rem;
|
||||
}
|
||||
.page_content_body {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding-bottom: 2.1rem;
|
||||
box-sizing: border-box;
|
||||
|
||||
z-index:1;
|
||||
.home_page_body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
Reference in New Issue
Block a user