@@ -66,33 +66,34 @@
'Support monthly/annual payment options',
'Suitable for individual creators and freelance designers to use'
]
- },{
- title:"Education Edition",
- info:"/",
- detail:"Multi user management system for universities",
- highlight:"",
- detailList:[
- 'Multi user management system for universities',
- 'Credit limits are shared across the entire school',
- 'AI assisted design teaching function',
- 'Support sketch creativity and design inspiration teaching',
- 'Basic 3D design functions',
- ]
- },{
- title:"Enterprise Edition",
- info:"/",
- detail:"Enterprise level multi person collaboration system",
- highlight:"",
- detailList:[
- 'Enterprise level multi person collaboration system',
- 'Internal Credit Sharing within Enterprises',
- 'Brand DNA management system, customizable brand Exclusive design preferences',
- 'Cloud based design generation and management',
- 'Complete 3D design function, supporting high-definition printing output, professional plate making, and 3D rendering of renderings',
- 'Enterprise level data security assurance',
- 'Suitable for fashion design teams and brands to use',
- ]
},
+ // {
+ // title:"Education Edition",
+ // info:"/",
+ // detail:"Multi user management system for universities",
+ // highlight:"",
+ // detailList:[
+ // 'Multi user management system for universities',
+ // 'Credit limits are shared across the entire school',
+ // 'AI assisted design teaching function',
+ // 'Support sketch creativity and design inspiration teaching',
+ // 'Basic 3D design functions',
+ // ]
+ // },{
+ // title:"Enterprise Edition",
+ // info:"/",
+ // detail:"Enterprise level multi person collaboration system",
+ // highlight:"",
+ // detailList:[
+ // 'Enterprise level multi person collaboration system',
+ // 'Internal Credit Sharing within Enterprises',
+ // 'Brand DNA management system, customizable brand Exclusive design preferences',
+ // 'Cloud based design generation and management',
+ // 'Complete 3D design function, supporting high-definition printing output, professional plate making, and 3D rendering of renderings',
+ // 'Enterprise level data security assurance',
+ // 'Suitable for fashion design teams and brands to use',
+ // ]
+ // },
],
introductList:[
{
@@ -166,7 +167,8 @@
}
.gallery_list{
display: flex;
- justify-content: space-between;
+ // justify-content: space-between;
+ justify-content: center;
flex-wrap: wrap;
.gallery_item{
width: calc(33.333% - 3rem);
diff --git a/src/store/Detail/designDetailCopy.ts b/src/store/Detail/designDetailCopy.ts
new file mode 100644
index 00000000..6ec3f764
--- /dev/null
+++ b/src/store/Detail/designDetailCopy.ts
@@ -0,0 +1,40 @@
+import {Module} from 'vuex'
+import {RootState} from '../index'
+
+interface DesignDetailCopy{
+ designDetail:any,
+ designPreviewData:any,
+ frontBack:any,
+}
+
+const DesignDetailCopy : Module = {
+ namespaced: true,
+ state:{
+ designDetail:null,
+ designPreviewData:{},
+ frontBack:{},
+ },
+ mutations:{
+ setDesignDetail(state,files){
+ state.designDetail = files
+ },
+ setDesignColthes(state,data){
+ state.designDetail.clothes[data.index] = data.clothes
+ },
+ setDesignOthers(state,data){
+ state.designDetail.others[data.index] = data.others
+ },
+
+ setFrontBack(state,files){
+ state.frontBack = files
+ }
+ // setDesignItemOthers(state,data){
+ // state.designDetail.others[data.index] = data.others
+ // },
+ },
+ actions:{
+
+ }
+}
+
+export default DesignDetailCopy
\ No newline at end of file
diff --git a/src/store/index.ts b/src/store/index.ts
index f7e11bf6..b631e7da 100644
--- a/src/store/index.ts
+++ b/src/store/index.ts
@@ -1,6 +1,7 @@
import { createStore } from 'vuex'
import UploadFilesModule from './uploadFile/uploadFile'
import DesignDetailModule from './Detail/designDetail'
+import DesignDetailCopy from './Detail/designDetailCopy'
import HomeStoreModule from './homeStore/homeStore'
import UserHabit from './userHabit/userHabit'
import Workspace from './workspace/workspace'
@@ -22,6 +23,7 @@ export default createStore({
modules: {
UploadFilesModule,
DesignDetailModule,
+ DesignDetailCopy,
HomeStoreModule,
UserHabit,
Workspace,
diff --git a/src/views/HomeView/HomeView.vue b/src/views/HomeView/HomeView.vue
index 0ab06011..334ef753 100644
--- a/src/views/HomeView/HomeView.vue
+++ b/src/views/HomeView/HomeView.vue
@@ -103,7 +103,7 @@