|
@@ -8,13 +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"
|
|
|
+ style="width: 80px"
|
|
|
v-model="linewidth"
|
|
|
controls-position="right"
|
|
|
@change="changeWidth"
|
|
@@ -46,7 +51,41 @@
|
|
|
</div>
|
|
|
</li>
|
|
|
<li>
|
|
|
-
|
|
|
+ <div class="property">
|
|
|
+ <div class="line-style">
|
|
|
+ <a-select
|
|
|
+ style="width: 80px; margin-right: 8px"
|
|
|
+ v-model="begin"
|
|
|
+ :default-value="borderLineOption[0].id"
|
|
|
+ @change="changeArrowType('begin')"
|
|
|
+ >
|
|
|
+ <a-select-option
|
|
|
+ v-for="item in arrowType"
|
|
|
+ :key="item.id"
|
|
|
+ :label="item.src"
|
|
|
+ :value="item.id"
|
|
|
+ >
|
|
|
+ {{ item.src }}
|
|
|
+ </a-select-option>
|
|
|
+ </a-select>
|
|
|
+ <a-select
|
|
|
+ style="width: 80px"
|
|
|
+ v-model="end"
|
|
|
+ :default-value="borderLineOption[0].id"
|
|
|
+ @change="changeArrowType('end')"
|
|
|
+ >
|
|
|
+ <a-select-option
|
|
|
+ v-for="item in arrowType"
|
|
|
+ :key="item.id"
|
|
|
+ :label="item.src"
|
|
|
+ :value="item.id"
|
|
|
+ >
|
|
|
+ {{ item.src }}
|
|
|
+ </a-select-option>
|
|
|
+ </a-select>
|
|
|
+ <span class="nametype">线型</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</div>
|
|
@@ -54,12 +93,14 @@
|
|
|
<script>
|
|
|
import bus from "@/bus/bus";
|
|
|
export default {
|
|
|
- props: ["strokeColor", "lineStyle", "lineWidth"],
|
|
|
+ props: ["strokeColor", "lineStyle", "lineWidth", "Begin", "End"],
|
|
|
data() {
|
|
|
return {
|
|
|
color: "",
|
|
|
linewidth: "",
|
|
|
linestyle: "",
|
|
|
+ begin: "None",
|
|
|
+ end: "None",
|
|
|
borderLineOption: [
|
|
|
{
|
|
|
id: "Solid",
|
|
@@ -69,9 +110,33 @@ export default {
|
|
|
id: "Dashed",
|
|
|
src: require("@/assets/images/dashedLine.png"),
|
|
|
},
|
|
|
+ {},
|
|
|
+ ],
|
|
|
+ // 箭头
|
|
|
+ arrowType: [
|
|
|
+ {
|
|
|
+ id: "None",
|
|
|
+ src: "无样式",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "Basic",
|
|
|
+ src: "基本箭头",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "Triangle",
|
|
|
+ src: "三角形箭头",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "Diamond",
|
|
|
+ src: "菱形箭头",
|
|
|
+ },
|
|
|
{
|
|
|
- id: "Dotted",
|
|
|
- src: require("@/assets/images/dotLine.png"),
|
|
|
+ id: "Square",
|
|
|
+ src: "方形箭头",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "Circle",
|
|
|
+ src: "圆形箭头",
|
|
|
},
|
|
|
],
|
|
|
};
|
|
@@ -89,6 +154,10 @@ export default {
|
|
|
changeLineStyle(val) {
|
|
|
bus.$emit("updateStyle", "lineStyle", val);
|
|
|
},
|
|
|
+ // 改变箭头样式
|
|
|
+ changeArrowType(dir) {
|
|
|
+ bus.$emit("updateStyle", dir, this[dir]);
|
|
|
+ },
|
|
|
},
|
|
|
mounted() {
|
|
|
// console.log(Select)
|
|
@@ -103,6 +172,12 @@ export default {
|
|
|
lineStyle(val) {
|
|
|
this.linestyle = val;
|
|
|
},
|
|
|
+ Begin(val) {
|
|
|
+ this.begin = val;
|
|
|
+ },
|
|
|
+ End(val) {
|
|
|
+ this.end = val;
|
|
|
+ },
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
@@ -116,7 +191,7 @@ li {
|
|
|
.base-line {
|
|
|
.title {
|
|
|
height: 47px;
|
|
|
- border-bottom: 1px solid #979797;
|
|
|
+ // border-bottom: 1px solid #979797;
|
|
|
color: #646c73;
|
|
|
font-size: 16px;
|
|
|
padding-left: 12px;
|
|
@@ -126,7 +201,7 @@ li {
|
|
|
width: calc(~"100% - 24px");
|
|
|
margin: -1px 12px 0 12px;
|
|
|
li {
|
|
|
- border-top: 1px solid #979797;
|
|
|
+ // border-top: 1px solid #979797;
|
|
|
.small-title {
|
|
|
font-size: 12px;
|
|
|
color: #8d9399;
|
|
@@ -163,6 +238,20 @@ li {
|
|
|
margin-left: 8px;
|
|
|
position: relative;
|
|
|
}
|
|
|
+ .line-style {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: flex-start;
|
|
|
+ position: relative;
|
|
|
+ margin-top: 4px;
|
|
|
+ .nametype {
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ bottom: -80%;
|
|
|
+ transform: translateX(-140%);
|
|
|
+ }
|
|
|
+ }
|
|
|
span {
|
|
|
font-size: 12px;
|
|
|
color: #1f2429;
|