|
@@ -108,6 +108,19 @@
|
|
|
<span>颜色</span>
|
|
|
</div>
|
|
|
</li>
|
|
|
+ <li v-show="isSvg">
|
|
|
+ <div class="small-title">旋转角度</div>
|
|
|
+ <div>
|
|
|
+ <span>度</span>
|
|
|
+ <el-input
|
|
|
+ style="width: 74px; margin-left: 6px"
|
|
|
+ size="mini"
|
|
|
+ v-model="rotate"
|
|
|
+ @input="changeRotate"
|
|
|
+ placeholder="请输入内容"
|
|
|
+ ></el-input>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -121,7 +134,7 @@ const imgBaseUrl = window.__systemConf.imgServeUri;
|
|
|
const imgServeUpload = window.__systemConf.imgServeUpload;
|
|
|
import { uploadGroup, getImageGroup } from "@/api/editer";
|
|
|
export default {
|
|
|
- props: ["strokeColor", "lineStyle", "lineWidth", "Width", "Height", "isSvg"],
|
|
|
+ props: ["strokeColor", "lineStyle", "lineWidth", "Width", "Height", "isSvg", "Rotate"],
|
|
|
data() {
|
|
|
return {
|
|
|
width: 0,
|
|
@@ -145,6 +158,7 @@ export default {
|
|
|
linestyle: "solid",
|
|
|
url: "",
|
|
|
filterColor: "",
|
|
|
+ rotate: 0, // 对象旋转角度
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -165,6 +179,18 @@ export default {
|
|
|
changeColor(val) {
|
|
|
bus.$emit("updateStyle", "strokeColor", val);
|
|
|
},
|
|
|
+ // 改变旋转角度
|
|
|
+ changeRotate(val) {
|
|
|
+ if (val.length > 0 && !isNaN(Number(val))) {
|
|
|
+ if (val > 360) {
|
|
|
+ val = 360;
|
|
|
+ }
|
|
|
+ if (val < -360) {
|
|
|
+ val = -360;
|
|
|
+ }
|
|
|
+ bus.$emit("updateStyle", "rotate", Number(val));
|
|
|
+ }
|
|
|
+ },
|
|
|
beforeAvatarUpload(file) {
|
|
|
let that = this;
|
|
|
const fileReader = new FileReader();
|
|
@@ -269,6 +295,9 @@ export default {
|
|
|
Url(val) {
|
|
|
this.url = val;
|
|
|
},
|
|
|
+ Rotate(val) {
|
|
|
+ this.rotate = val;
|
|
|
+ }
|
|
|
},
|
|
|
};
|
|
|
</script>
|