|
@@ -1,264 +1,245 @@
|
|
|
<!-- 基本线的属性框 -->
|
|
|
<template>
|
|
|
- <div class="base-line">
|
|
|
- <div class="title">属性</div>
|
|
|
- <ul>
|
|
|
- <li>
|
|
|
- <div class="small-title">边框</div>
|
|
|
- <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>
|
|
|
- </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>
|
|
|
- <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"
|
|
|
- >
|
|
|
- <img :src="item.src" alt width="60" />
|
|
|
- </a-select-option>
|
|
|
- </a-select>
|
|
|
- <span>线型</span>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </li>
|
|
|
- <li>
|
|
|
- <div class="property">
|
|
|
- <div class="line-style">
|
|
|
- <a-select
|
|
|
- style="width: 80px; margin-right: 8px"
|
|
|
- v-model="begin"
|
|
|
- :default-value="arrowType[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="arrowType[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>
|
|
|
+ <div class="base-line">
|
|
|
+ <div class="title">属性</div>
|
|
|
+ <ul>
|
|
|
+ <li>
|
|
|
+ <div class="small-title">边框</div>
|
|
|
+ <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>
|
|
|
+ </div>
|
|
|
+ <span class="text">颜色</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>
|
|
|
+ <span class="text">线宽</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">
|
|
|
+ <img :src="item.src" alt width="60" />
|
|
|
+ </a-select-option>
|
|
|
+ </a-select>
|
|
|
+ <span class="text">线型</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <div class="property">
|
|
|
+ <div class="line-style">
|
|
|
+ <div class="line-arrow">
|
|
|
+ <a-select
|
|
|
+ style="width: 80px; margin-right: 8px"
|
|
|
+ v-model="begin"
|
|
|
+ :default-value="arrowType[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>
|
|
|
+ <span class="text">左箭头</span>
|
|
|
+ </div>
|
|
|
+ <div class="line-arrow">
|
|
|
+ <a-select style="width: 80px" v-model="end" :default-value="arrowType[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="text">右箭头</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
<script>
|
|
|
import bus from "@/bus/bus";
|
|
|
export default {
|
|
|
- props: ["strokeColor", "lineStyle", "lineWidth", "Begin", "End"],
|
|
|
- data() {
|
|
|
- return {
|
|
|
- color: "",
|
|
|
- linewidth: "",
|
|
|
- linestyle: "",
|
|
|
- begin: "None",
|
|
|
- end: "None",
|
|
|
- borderLineOption: [
|
|
|
- {
|
|
|
- id: "Solid",
|
|
|
- src: require("@/assets/images/solidLine.png"),
|
|
|
+ // props: ["strokeColor", "lineStyle", "lineWidth", "Begin", "End",],
|
|
|
+ props: ["strokeColor", "lineStyle", "lineWidth", "Begin", "End", "TextItem"],
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ color: "",
|
|
|
+ linewidth: "",
|
|
|
+ linestyle: "",
|
|
|
+ begin: "None",
|
|
|
+ end: "None",
|
|
|
+ borderLineOption: [
|
|
|
+ {
|
|
|
+ id: "Solid",
|
|
|
+ src: require("@/assets/images/solidLine.png"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "Dashed",
|
|
|
+ src: require("@/assets/images/dashedLine.png"),
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ // 箭头
|
|
|
+ arrowType: [
|
|
|
+ {
|
|
|
+ id: "None",
|
|
|
+ src: "无样式",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "Basic",
|
|
|
+ src: "基本箭头",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "Triangle",
|
|
|
+ src: "三角形箭头",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "Diamond",
|
|
|
+ src: "菱形箭头",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "Square",
|
|
|
+ src: "方形箭头",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "Circle",
|
|
|
+ src: "圆形箭头",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ };
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ // 改变线宽
|
|
|
+ changeWidth(val) {
|
|
|
+ bus.$emit("updateStyle", "lineWidth", val);
|
|
|
},
|
|
|
- {
|
|
|
- id: "Dashed",
|
|
|
- src: require("@/assets/images/dashedLine.png"),
|
|
|
+ // 改变颜色
|
|
|
+ changeColor(val) {
|
|
|
+ bus.$emit("updateStyle", "strokeColor", val);
|
|
|
},
|
|
|
- ],
|
|
|
- // 箭头
|
|
|
- arrowType: [
|
|
|
- {
|
|
|
- id: "None",
|
|
|
- src: "无样式",
|
|
|
+ // 改变线样式
|
|
|
+ changeLineStyle(val) {
|
|
|
+ bus.$emit("updateStyle", "lineStyle", val);
|
|
|
},
|
|
|
- {
|
|
|
- id: "Basic",
|
|
|
- src: "基本箭头",
|
|
|
+ // 改变箭头样式
|
|
|
+ changeArrowType(dir) {
|
|
|
+ bus.$emit("updateStyle", dir, this[dir]);
|
|
|
},
|
|
|
- {
|
|
|
- id: "Triangle",
|
|
|
- src: "三角形箭头",
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ // console.log(Select)
|
|
|
+ console.log(this.TextItem);
|
|
|
+ window._vm = this;
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ strokeColor(val) {
|
|
|
+ this.color = val;
|
|
|
},
|
|
|
- {
|
|
|
- id: "Diamond",
|
|
|
- src: "菱形箭头",
|
|
|
+ lineWidth(val) {
|
|
|
+ this.linewidth = val;
|
|
|
},
|
|
|
- {
|
|
|
- id: "Square",
|
|
|
- src: "方形箭头",
|
|
|
+ lineStyle(val) {
|
|
|
+ console.log("lineStyle::::");
|
|
|
+ this.linestyle = val;
|
|
|
},
|
|
|
- {
|
|
|
- id: "Circle",
|
|
|
- src: "圆形箭头",
|
|
|
+ Begin(val) {
|
|
|
+ this.begin = val;
|
|
|
+ },
|
|
|
+ End(val) {
|
|
|
+ this.end = val;
|
|
|
},
|
|
|
- ],
|
|
|
- };
|
|
|
- },
|
|
|
- methods: {
|
|
|
- // 改变线宽
|
|
|
- changeWidth(val) {
|
|
|
- bus.$emit("updateStyle", "lineWidth", val);
|
|
|
- },
|
|
|
- // 改变颜色
|
|
|
- changeColor(val) {
|
|
|
- bus.$emit("updateStyle", "strokeColor", val);
|
|
|
- },
|
|
|
- // 改变线样式
|
|
|
- changeLineStyle(val) {
|
|
|
- bus.$emit("updateStyle", "lineStyle", val);
|
|
|
- },
|
|
|
- // 改变箭头样式
|
|
|
- changeArrowType(dir) {
|
|
|
- bus.$emit("updateStyle", dir, this[dir]);
|
|
|
- },
|
|
|
- },
|
|
|
- mounted() {
|
|
|
- // console.log(Select)
|
|
|
- },
|
|
|
- watch: {
|
|
|
- strokeColor(val) {
|
|
|
- this.color = val;
|
|
|
- },
|
|
|
- lineWidth(val) {
|
|
|
- this.linewidth = val;
|
|
|
- },
|
|
|
- lineStyle(val) {
|
|
|
- console.log('lineStyle::::')
|
|
|
- this.linestyle = val;
|
|
|
- },
|
|
|
- Begin(val) {
|
|
|
- this.begin = val;
|
|
|
- },
|
|
|
- End(val) {
|
|
|
- this.end = val;
|
|
|
},
|
|
|
- },
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
|
ul,
|
|
|
li {
|
|
|
- margin: 0;
|
|
|
- padding: 0;
|
|
|
- list-style-type: none;
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ list-style-type: none;
|
|
|
}
|
|
|
.base-line {
|
|
|
- .title {
|
|
|
- height: 47px;
|
|
|
- // border-bottom: 1px solid #979797;
|
|
|
- color: #646c73;
|
|
|
- font-size: 16px;
|
|
|
- padding-left: 12px;
|
|
|
- box-sizing: border-box;
|
|
|
- }
|
|
|
- ul {
|
|
|
- width: calc(~"100% - 24px");
|
|
|
- margin: -1px 12px 0 12px;
|
|
|
- li {
|
|
|
- // border-top: 1px solid #979797;
|
|
|
- .small-title {
|
|
|
- font-size: 12px;
|
|
|
- color: #8d9399;
|
|
|
- margin: 12px 0;
|
|
|
- }
|
|
|
- .property {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-around;
|
|
|
- .color-box {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- flex-direction: column;
|
|
|
- .cololorSelect {
|
|
|
- width: 32px;
|
|
|
- height: 20px;
|
|
|
- overflow: hidden;
|
|
|
- position: relative;
|
|
|
- margin: 4px 0;
|
|
|
- .fix-box-1 {
|
|
|
- margin-top: -8px;
|
|
|
- margin-left: -8px;
|
|
|
- /deep/ .el-color-picker__trigger {
|
|
|
- width: 200px;
|
|
|
- height: 200px;
|
|
|
- }
|
|
|
+ .title {
|
|
|
+ height: 47px;
|
|
|
+ // border-bottom: 1px solid #979797;
|
|
|
+ color: #646c73;
|
|
|
+ font-size: 16px;
|
|
|
+ padding-left: 12px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+ ul {
|
|
|
+ width: calc(~"100% - 24px");
|
|
|
+ margin: -1px 12px 0 12px;
|
|
|
+ li {
|
|
|
+ // border-top: 1px solid #979797;
|
|
|
+ margin-bottom: 12px;
|
|
|
+ .small-title {
|
|
|
+ font-size: 12px;
|
|
|
+ color: #8d9399;
|
|
|
+ margin: 12px 0;
|
|
|
+ }
|
|
|
+ .property {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-around;
|
|
|
+ .color-box {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ flex-direction: column;
|
|
|
+ .cololorSelect {
|
|
|
+ width: 32px;
|
|
|
+ height: 20px;
|
|
|
+ overflow: hidden;
|
|
|
+ position: relative;
|
|
|
+ margin: 4px 0;
|
|
|
+ .fix-box-1 {
|
|
|
+ margin-top: -8px;
|
|
|
+ margin-left: -8px;
|
|
|
+ /deep/ .el-color-picker__trigger {
|
|
|
+ width: 200px;
|
|
|
+ height: 200px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .line-width {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ flex-direction: column;
|
|
|
+ margin-left: 8px;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+ .line-style {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: flex-start;
|
|
|
+ position: relative;
|
|
|
+ margin-top: 4px;
|
|
|
+ .line-arrow {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ span {
|
|
|
+ font-size: 12px;
|
|
|
+ color: #1f2429;
|
|
|
+ margin-top: 4px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .text {
|
|
|
+ font-weight: 600;
|
|
|
}
|
|
|
- }
|
|
|
- }
|
|
|
- .line-width {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- flex-direction: column;
|
|
|
- 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;
|
|
|
- margin-top: 4px;
|
|
|
}
|
|
|
- }
|
|
|
}
|
|
|
- }
|
|
|
}
|
|
|
</style>
|