|
@@ -8,41 +8,18 @@
|
|
|
<div class="property">
|
|
|
<div class="color-box">
|
|
|
<div class="cololorSelect">
|
|
|
- <el-color-picker
|
|
|
- show-alpha
|
|
|
- @change="changeColor"
|
|
|
- class="fix-box-1"
|
|
|
- v-model="color"
|
|
|
- ></el-color-picker>
|
|
|
+ <el-color-picker show-alpha @change="changeColor" class="fix-box-1" v-model="color"></el-color-picker>
|
|
|
</div>
|
|
|
<span>颜色</span>
|
|
|
</div>
|
|
|
<div class="line-width">
|
|
|
- <el-input-number
|
|
|
- style="width: 80px"
|
|
|
- v-model="linewidth"
|
|
|
- controls-position="right"
|
|
|
- @change="changeWidth"
|
|
|
- size="mini"
|
|
|
- :min="1"
|
|
|
- :max="20"
|
|
|
- :maxlength="100"
|
|
|
- ></el-input-number>
|
|
|
+ <el-input-number style="width: 80px" v-model="linewidth" controls-position="right" @change="changeWidth" size="mini" :min="1" :max="20"
|
|
|
+ :maxlength="100"></el-input-number>
|
|
|
<span>线宽</span>
|
|
|
</div>
|
|
|
<div class="line-width">
|
|
|
- <a-select
|
|
|
- style="width: 80px"
|
|
|
- v-model="linestyle"
|
|
|
- :default-value="borderLineOption[0].id"
|
|
|
- @change="changeLineStyle"
|
|
|
- >
|
|
|
- <a-select-option
|
|
|
- v-for="item in borderLineOption"
|
|
|
- :key="item.id"
|
|
|
- :label="item.src"
|
|
|
- :value="item.id"
|
|
|
- >
|
|
|
+ <a-select style="width: 80px" v-model="linestyle" :default-value="borderLineOption[0].id" @change="changeLineStyle">
|
|
|
+ <a-select-option v-for="item in borderLineOption" :key="item.id" :label="item.src" :value="item.id">
|
|
|
<img :src="item.src" alt width="60" />
|
|
|
</a-select-option>
|
|
|
</a-select>
|
|
@@ -50,13 +27,26 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</li>
|
|
|
+ <li>
|
|
|
+ <div class="small-title">拐角</div>
|
|
|
+ <div>
|
|
|
+ <el-radio-group v-model="corner" @change="changeRadio">
|
|
|
+ <el-radio label="1">直角</el-radio>
|
|
|
+ <el-radio label="2">圆角</el-radio>
|
|
|
+ </el-radio-group>
|
|
|
+ </div>
|
|
|
+ <div style="margin-top: 10px;" v-if="corner=='2'">
|
|
|
+ <label for="radius">设置圆角半径: </label>
|
|
|
+ <el-input-number v-model="radius" controls-position="right" size="mini" @change="changeCornerRaduis" :min="0" :step-strictly="true"></el-input-number>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
import bus from "@/bus/bus";
|
|
|
export default {
|
|
|
- props: ["strokeColor", "lineStyle", "lineWidth"],
|
|
|
+ props: ["strokeColor", "lineStyle", "lineWidth", "Radius"],
|
|
|
data() {
|
|
|
return {
|
|
|
color: "",
|
|
@@ -73,6 +63,8 @@ export default {
|
|
|
},
|
|
|
{},
|
|
|
],
|
|
|
+ corner: '1', // 默认直角
|
|
|
+ radius: 0, // 圆角半径
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -92,6 +84,17 @@ export default {
|
|
|
changeArrowType(dir) {
|
|
|
bus.$emit("updateStyle", dir, this[dir]);
|
|
|
},
|
|
|
+ // 改变拐角半径
|
|
|
+ changeCornerRaduis(val) {
|
|
|
+ bus.$emit("updateStyle", 'radius', this.radius);
|
|
|
+ },
|
|
|
+ // 拐角类型变化
|
|
|
+ changeRadio() {
|
|
|
+ if (this.corner == '1') {
|
|
|
+ this.radius = 0;
|
|
|
+ }
|
|
|
+ bus.$emit("updateStyle", 'radius', this.radius);
|
|
|
+ }
|
|
|
},
|
|
|
watch: {
|
|
|
strokeColor(val) {
|
|
@@ -103,6 +106,11 @@ export default {
|
|
|
lineStyle(val) {
|
|
|
this.linestyle = val;
|
|
|
},
|
|
|
+ Radius(val) {
|
|
|
+ console.log(val);
|
|
|
+ this.corner = val > 0 ? "2" : "1"
|
|
|
+ this.radius = val;
|
|
|
+ }
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
@@ -183,6 +191,9 @@ li {
|
|
|
margin-top: 4px;
|
|
|
}
|
|
|
}
|
|
|
+ /deep/.el-input-number--mini {
|
|
|
+ width: 100px;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|