feat: 去掉不必要的log 和初始化数据

This commit is contained in:
wangjiahao 2021-06-07 11:15:03 +08:00
parent 36ec45baf7
commit cbc76cf2c9
3 changed files with 4 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@ -130,7 +130,7 @@ export function changeStyleWithScale(value) {
export function changeStyleWithScaleHeightInAuto(value) {
const scale = store.state.canvasStyleData.scaleHeight ? store.state.canvasStyleData.scaleHeight : 100
const result = value * scale / 100
console.log('heightInAuto=>' + scale + ';' + result)
// console.log('heightInAuto=>' + scale + ';' + result)
return result
}
@ -138,7 +138,7 @@ export function changeStyleWithScaleHeightInAuto(value) {
export function changeStyleWithScaleWidthInAuto(value) {
const scale = store.state.canvasStyleData.scaleWidth ? store.state.canvasStyleData.scaleWidth : 100
const result = value * scale / 100
console.log('widthInAuto=>' + scale + ';' + result)
// console.log('widthInAuto=>' + scale + ';' + result)
return result
}

View File

@ -72,7 +72,7 @@ const data = {
},
setCurComponent(state, { component, index }) {
console.log('curComponent' + JSON.stringify(component))
// console.log('curComponent' + JSON.stringify(component))
state.curComponent = component
state.curComponentIndex = index
},
@ -87,7 +87,7 @@ const data = {
if (width) curComponent.style.width = parseInt(canvasStyleData.selfAdaption ? (width * 100 / curCanvasScale.scaleWidth) : width)
if (height) curComponent.style.height = parseInt(canvasStyleData.selfAdaption ? (height * 100 / curCanvasScale.scaleHeight) : height)
if (rotate) curComponent.style.rotate = rotate
console.log('setShapeStyle' + JSON.stringify(curComponent))
// console.log('setShapeStyle' + JSON.stringify(curComponent))
},
setShapeSingleStyle({ curComponent }, { key, value }) {