|
@@ -54,7 +54,17 @@
|
|
|
<el-color-picker show-alpha class="fix-box-1" v-model="color"></el-color-picker>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="base-property-item"></div>
|
|
|
+ <div class="base-property-item" style="flex: 1;padding: 0;">
|
|
|
+ <el-input-number
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="size"
|
|
|
+ controls-position="right"
|
|
|
+ size="mini"
|
|
|
+ :min="1"
|
|
|
+ :max="20"
|
|
|
+ :maxlength="100"
|
|
|
+ ></el-input-number>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="box-padding box-border-bottom">
|
|
@@ -77,7 +87,9 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import { SColor } from "@persagy-web/draw";
|
|
|
+import { mapMutations } from "vuex";
|
|
|
+import { SColor, SFont } from "@persagy-web/draw";
|
|
|
+import { rgbaNum } from "@persagy-web/big-edit/lib/until";
|
|
|
import { imgBaseUrl, imgServeUpload } from "@/api/imageservice";
|
|
|
import bus from "@/bus/bus";
|
|
|
export default {
|
|
@@ -96,16 +108,27 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
+
|
|
|
color: {
|
|
|
get: function () {
|
|
|
return this.EquipItem.color.toRgba();
|
|
|
},
|
|
|
- set: function () {
|
|
|
- this.EquipItem.color = new SColor(this.color);
|
|
|
+ set: function (newColor) {
|
|
|
+ const colorList = rgbaNum(newColor);
|
|
|
+ this.EquipItem.color = new SColor(Number(colorList[0]), Number(colorList[1]), Number(colorList[2]), colorList[3] * 255);
|
|
|
+ },
|
|
|
+ },
|
|
|
+ size: {
|
|
|
+ get: function () {
|
|
|
+ return this.EquipItem.font.size;
|
|
|
+ },
|
|
|
+ set: function (newSize) {
|
|
|
+ this.EquipItem.font = new SFont("sans-serif", newSize);
|
|
|
},
|
|
|
},
|
|
|
},
|
|
|
methods: {
|
|
|
+ ...mapMutations(["ADDSTYLE"]),
|
|
|
// 设置宽
|
|
|
changeWidth(val) {
|
|
|
bus.$emit("updateStyle", "sWidth", val);
|
|
@@ -118,6 +141,10 @@ export default {
|
|
|
changeAnotherMsg(val) {
|
|
|
bus.$emit("updateStyle", "anotherMsg", val);
|
|
|
},
|
|
|
+ // 修改样式信息
|
|
|
+ setStyle() {
|
|
|
+
|
|
|
+ },
|
|
|
beforeAvatarUpload(file) {
|
|
|
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
|
|
const fileReader = new FileReader();
|
|
@@ -222,6 +249,9 @@ export default {
|
|
|
.box-border-bottom {
|
|
|
border-bottom: 1px solid #e4e5e7;
|
|
|
}
|
|
|
+ .flex {
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
/deep/ .el-tabs__item {
|
|
|
padding: 0 20px !important;
|
|
|
}
|
|
@@ -259,11 +289,12 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
.cololorSelect {
|
|
|
- width: 32px;
|
|
|
- height: 20px;
|
|
|
+ width: 36px;
|
|
|
+ height: 24px;
|
|
|
+ border-radius: 2px;
|
|
|
overflow: hidden;
|
|
|
position: relative;
|
|
|
- margin: 4px 0;
|
|
|
+
|
|
|
.fix-box-1 {
|
|
|
margin-top: -8px;
|
|
|
margin-left: -8px;
|