This commit is contained in:
X1627315083
2024-02-29 17:16:51 +08:00
parent 7af7bde3f3
commit aa5f2e4208
12 changed files with 1016 additions and 468 deletions

View File

@@ -3,6 +3,7 @@ import {RootState} from '../index'
import { Https } from "@/tool/https";
interface DesignDetail{
clothingType:any,
credits:any,
// devise:any,
// deviseType:any,
// system_per:any,
@@ -13,13 +14,17 @@ interface DesignDetail{
const HomeStoreModule : Module<DesignDetail,RootState> = {
state:{
clothingType:[],
credits:{
value:0
},
},
mutations:{
res_clothingType(state,data){
state.clothingType = data
},
setCredits(state,data){
state.credits.value = data
},
},
actions:{
@@ -39,7 +44,7 @@ const HomeStoreModule : Module<DesignDetail,RootState> = {
// })
// .catch((rv) => {
// });
}
},
}
}