初代测试版本
This commit is contained in:
@@ -314,12 +314,12 @@ export default defineComponent({
|
||||
})
|
||||
el.addEventListener('mousewheel',(e:MouseEvent)=>{
|
||||
if(0>(e as WheelEvent).deltaY && width>parentWidth){
|
||||
num+=15
|
||||
num+=25
|
||||
if(num >= 0){
|
||||
num = 0
|
||||
}
|
||||
}else if(0<(e as WheelEvent).deltaY && width>parentWidth){
|
||||
num-=15
|
||||
num-=25
|
||||
if(num<=parentWidth - width){
|
||||
num = parentWidth - width
|
||||
}
|
||||
@@ -445,7 +445,7 @@ export default defineComponent({
|
||||
rv.collectionId
|
||||
);
|
||||
this.store.commit("setDesignId", rv.designId);
|
||||
this.designProgress = 0;
|
||||
// this.designProgress = 0;
|
||||
this.startDesignType = "design";
|
||||
}
|
||||
})
|
||||
@@ -475,8 +475,8 @@ export default defineComponent({
|
||||
"setDesignCollectionList",
|
||||
rv.designCollectionItems
|
||||
);
|
||||
(this.designProgress = 0),
|
||||
(this.startDesignType = "resDesign");
|
||||
// this.designProgress = 0,
|
||||
this.startDesignType = "resDesign";
|
||||
}
|
||||
})
|
||||
.catch((res) => {
|
||||
@@ -810,6 +810,8 @@ export default defineComponent({
|
||||
imgUrl: URL.createObjectURL(blob),
|
||||
name: "collection.png",
|
||||
})
|
||||
console.log(URL.createObjectURL(blob));
|
||||
|
||||
for (let key in allBoardData) {
|
||||
if (key !== "colorBoards" && key !== "moodTemplateId") {
|
||||
for (let item of allBoardData[key]) {
|
||||
|
||||
Reference in New Issue
Block a user