|
@@ -1,20 +1,38 @@
|
|
<!-- 基本图片的属性框 -->
|
|
<!-- 基本图片的属性框 -->
|
|
<template>
|
|
<template>
|
|
<div class="base-image">
|
|
<div class="base-image">
|
|
- <!-- <div class="title">属性</div>
|
|
|
|
|
|
+ <div class="title">属性</div>
|
|
<ul>
|
|
<ul>
|
|
<li>
|
|
<li>
|
|
<div class="small-title">尺寸大小</div>
|
|
<div class="small-title">尺寸大小</div>
|
|
<div class="property">
|
|
<div class="property">
|
|
<div>
|
|
<div>
|
|
<span>W</span>
|
|
<span>W</span>
|
|
- <el-input style="width:74px;margin-left:6px" size="mini" v-model="input" placeholder="请输入内容"></el-input>
|
|
|
|
|
|
+ <el-input
|
|
|
|
+ style="width:74px;margin-left:6px"
|
|
|
|
+ size="mini"
|
|
|
|
+ v-model="width"
|
|
|
|
+ @input="changeWidth"
|
|
|
|
+ placeholder="请输入内容"
|
|
|
|
+ ></el-input>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<div>
|
|
<span>H</span>
|
|
<span>H</span>
|
|
- <el-input style="width:74px;margin-left:6px" size="mini" v-model="input" placeholder="请输入内容"></el-input>
|
|
|
|
|
|
+ <el-input
|
|
|
|
+ style="width:74px;margin-left:6px"
|
|
|
|
+ size="mini"
|
|
|
|
+ v-model="height"
|
|
|
|
+ @input="changeHeight"
|
|
|
|
+ placeholder="请输入内容"
|
|
|
|
+ ></el-input>
|
|
</div>
|
|
</div>
|
|
<i class="el-icon-link"></i>
|
|
<i class="el-icon-link"></i>
|
|
|
|
+ <el-upload
|
|
|
|
+ action="/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true/"
|
|
|
|
+ :show-file-list="false"
|
|
|
|
+ :on-success="handleAvatarSuccess"
|
|
|
|
+ :before-upload="beforeAvatarUpload"
|
|
|
|
+ >12</el-upload>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</li>
|
|
<li>
|
|
<li>
|
|
@@ -29,7 +47,7 @@
|
|
<div class="line-width">
|
|
<div class="line-width">
|
|
<el-input-number
|
|
<el-input-number
|
|
style="width:80px"
|
|
style="width:80px"
|
|
- v-model="num"
|
|
|
|
|
|
+ v-model="linewidth"
|
|
controls-position="right"
|
|
controls-position="right"
|
|
@change="handleChange"
|
|
@change="handleChange"
|
|
size="mini"
|
|
size="mini"
|
|
@@ -39,29 +57,40 @@
|
|
></el-input-number>
|
|
></el-input-number>
|
|
<span>线宽</span>
|
|
<span>线宽</span>
|
|
</div>
|
|
</div>
|
|
- <div class="color-box">
|
|
|
|
- <div class="cololorSelect">
|
|
|
|
- <el-color-picker class="fix-box-1" v-model="color"></el-color-picker>
|
|
|
|
- </div>
|
|
|
|
- <span>背景颜色</span>
|
|
|
|
|
|
+ <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>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</li>
|
|
- </ul> -->
|
|
|
|
|
|
+ </ul>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
import bus from "@/bus/bus";
|
|
import bus from "@/bus/bus";
|
|
-// import { Select } from 'ant-design-vue';
|
|
|
|
|
|
+import { uploadGroup, getImageGroup } from "@/api/editer";
|
|
export default {
|
|
export default {
|
|
- // components:{Select},
|
|
|
|
|
|
+ props: ["strokeColor", "lineStyle", "lineWidth", "Width", "Height"],
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
- size: 12, //font-size
|
|
|
|
- text: "", //文本
|
|
|
|
|
|
+ width: 0,
|
|
|
|
+ height: 0,
|
|
color: "#cccccc", //颜色
|
|
color: "#cccccc", //颜色
|
|
- activeName: "",
|
|
|
|
- num: 1,
|
|
|
|
|
|
+ linewidth: 1,
|
|
borderLineOption: [
|
|
borderLineOption: [
|
|
{
|
|
{
|
|
id: "solid",
|
|
id: "solid",
|
|
@@ -76,26 +105,75 @@ export default {
|
|
src: require("@/assets/images/dotLine.png"),
|
|
src: require("@/assets/images/dotLine.png"),
|
|
},
|
|
},
|
|
],
|
|
],
|
|
- borderStyle: "solid",
|
|
|
|
|
|
+ linestyle: "solid",
|
|
};
|
|
};
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- // 改变文本大小
|
|
|
|
- updateSize(val) {
|
|
|
|
- bus.$emit("baseTextSize", val);
|
|
|
|
|
|
+ changeHeight(val) {
|
|
|
|
+ bus.$emit("updateStyle", "height", val);
|
|
|
|
+ },
|
|
|
|
+ changeWidth(val) {
|
|
|
|
+ bus.$emit("updateStyle", "width", val);
|
|
},
|
|
},
|
|
- // 输入文本
|
|
|
|
- handleChangeText() {},
|
|
|
|
handleChange() {},
|
|
handleChange() {},
|
|
- // 改变文字颜色
|
|
|
|
- changeColor() {},
|
|
|
|
- handleClick(tab, event) {
|
|
|
|
- console.log(tab, event);
|
|
|
|
|
|
+ changeLineStyle() {},
|
|
|
|
+ updataImage() {
|
|
|
|
+ let dom = document.createElement("input");
|
|
|
|
+ dom.type = "file";
|
|
|
|
+ dom.name = "file";
|
|
|
|
+ dom.accept = "image/*";
|
|
|
|
+ dom.click();
|
|
|
|
+ dom.onchange = function (a) {
|
|
|
|
+ //继续使用上文的fileList
|
|
|
|
+ let file = a.path[0].files[0];
|
|
|
|
+ var reads = new FileReader();
|
|
|
|
+ reads.readAsDataURL(file);
|
|
|
|
+ reads.onload = function (e) {
|
|
|
|
+ const myform = new FormData();
|
|
|
|
+ console.log(file);
|
|
|
|
+ myform.append("xxx", file);
|
|
|
|
+ console.log(myform);
|
|
|
|
+ let data = { data: myform };
|
|
|
|
+ uploadGroup(data).then((res) => {
|
|
|
|
+ console.log("resresres", res);
|
|
|
|
+ });
|
|
|
|
+ };
|
|
|
|
+ };
|
|
|
|
+ },
|
|
|
|
+ beforeAvatarUpload(file) {
|
|
|
|
+ const isJPG = file.type === "image/jpeg";
|
|
|
|
+ const isLt2M = file.size / 1024 / 1024 < 2;
|
|
|
|
+
|
|
|
|
+ if (!isJPG) {
|
|
|
|
+ this.$message.error("上传头像图片只能是 JPG 格式!");
|
|
|
|
+ }
|
|
|
|
+ if (!isLt2M) {
|
|
|
|
+ this.$message.error("上传头像图片大小不能超过 2MB!");
|
|
|
|
+ }
|
|
|
|
+ return isJPG && isLt2M;
|
|
|
|
+ },
|
|
|
|
+ handleAvatarSuccess(res, file) {
|
|
|
|
+ console.log("res, file", res, file);
|
|
|
|
+ this.imageUrl = URL.createObjectURL(file.raw);
|
|
},
|
|
},
|
|
- changeBorder() {},
|
|
|
|
},
|
|
},
|
|
- mounted() {
|
|
|
|
- // console.log(Select)
|
|
|
|
|
|
+
|
|
|
|
+ watch: {
|
|
|
|
+ strokeColor(val) {
|
|
|
|
+ this.color = val;
|
|
|
|
+ },
|
|
|
|
+ lineWidth(val) {
|
|
|
|
+ this.linewidth = val;
|
|
|
|
+ },
|
|
|
|
+ lineStyle(val) {
|
|
|
|
+ this.linestyle = val;
|
|
|
|
+ },
|
|
|
|
+ Width(val) {
|
|
|
|
+ this.width = val;
|
|
|
|
+ },
|
|
|
|
+ Height(val) {
|
|
|
|
+ this.height = val;
|
|
|
|
+ },
|
|
},
|
|
},
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|