重构部分变量

2.0
咬轮猫 4 years ago
parent 022bf1dd80
commit b6e730772e

@ -1,5 +1,4 @@
<template>
{{svg_color}}
<component :is="svgtype"
:svg_color= svg_color></component>
</template>

@ -23,24 +23,9 @@
<a-form-item label="大小">
<a-input-number v-model:value="selectSvgInfo.height" :min="1" :max="3000"/>
</a-form-item>
<a-form-item label="宽度">
<a-input-number v-model:value="selectSvgInfo.width" :min="1" :max="3000"/>
</a-form-item>
<a-form-item label="旋转">
<a-input-number v-model:value="selectSvgInfo.angle" :min="0" :max="360"/>
</a-form-item>
<a-form-item label="文本">
<a-input v-model:value="selectSvgInfo.svgText" placeholder="请输入文本" />
</a-form-item>
<a-form-item label="字体大小">
<a-input-number v-model:value="selectSvgInfo.fontSize" :min="1" :max="500"/>
</a-form-item>
<a-form-item label="表格行数">
<a-input-number v-model:value="selectSvgInfo.tableRowCount" :min="1" :max="500"/>
</a-form-item>
<a-form-item label="表格列数">
<a-input-number v-model:value="selectSvgInfo.tableColCount" :min="1" :max="500"/>
</a-form-item>
<a-form-item>
<a-button type="primary" class="btn-sure">
确定

@ -5,37 +5,69 @@
<a-layout>
<!-- {{tableDefaultData}} -->
<a-layout-header>
<a-button type="primary" @click="testD"></a-button>
<a-button type="primary" @click="testE"></a-button>
<a-button type="primary" @click="testH"></a-button>
<a-button type="primary"
@click="testD">导出数据</a-button>
<a-button type="primary"
@click="testE">载入模板</a-button>
<a-button type="primary"
@click="testH">预览</a-button>
</a-layout-header>
<span v-if="shrink" @click="fullScreen" class="icon-shrink svgfont">&#xe648;</span>
<span v-if="!shrink" @click="exitFullscreen" class="icon-shrink svgfont">&#xe62b;</span>
<span v-if="shrink"
@click="fullScreen"
class="icon-shrink svgfont">&#xe648;</span>
<span v-if="!shrink"
@click="exitFullscreen"
class="icon-shrink svgfont">&#xe62b;</span>
<a-layout class="pageMain">
<a-layout-sider class="leftNav">
<LeftToolBar :svgInfoData= svgInfoData></LeftToolBar>
<LeftToolBar :svgInfoData=svgInfoData></LeftToolBar>
</a-layout-sider>
<a-layout-content class="centerContain" :class="{ fixed: !shrink }">
<div class="canvas-content" id="canvas" @mousemove="MouseMove" @mousedown="MousedownCanvas" @mouseup="MouseupCanvas" @dblclick="DblClick" @mousewheel="MouseWheel">
<a-layout-content class="centerContain"
:class="{ fixed: !shrink }">
<div class="canvas-content"
id="canvas"
@mousemove="MouseMove"
@mousedown="MousedownCanvas"
@mouseup="MouseupCanvas"
@dblclick="DblClick"
@mousewheel="MouseWheel">
<!--拖动辅助线-->
<div id="guide-x"></div>
<div id="guide-y"></div>
<!-- 画布 -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="background-color:#000000" width="100%" height="100%">
<defs/>
<filter x="0" y="0" width="1" height="1" id="solid">
<feFlood flood-color="rgb(255,255,255)"/>
<feComposite in="SourceGraphic"/>
<svg version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
style="background-color:#000000"
width="100%"
height="100%">
<defs />
<filter x="0"
y="0"
width="1"
height="1"
id="solid">
<feFlood flood-color="rgb(255,255,255)" />
<feComposite in="SourceGraphic" />
</filter>
<g style="cursor:pointer" v-for="(item,index) in svgLists" :key="item" :id=item.id @mousedown="MousedownSvg(item.id,index)" :title=item.title :transform="'translate('+(item.svgPositionX)+','+(item.svgPositionY)+')' +'rotate('+item.angle+')'" >
<DynamicTest :svg_color= item.svgColor :svgtype= item.type :svgInfoData= svgInfoData></DynamicTest>
<g style="cursor:pointer"
v-for="(item,index) in svgLists"
:key="item"
:id=item.id
@mousedown="MousedownSvg(item.id,index)"
:title=item.title
:transform="'translate('+(item.svgPositionX)+','+(item.svgPositionY)+')' +'rotate('+item.angle+')' +'scale('+item.height+')'">
<DynamicTest :svg_color=item.svgColor
:svgtype=item.type
:svgInfoData=svgInfoData></DynamicTest>
<!-- <SvgComponents :color= item.svgColor :width= item.width :type= item.type :tableData= item.tableData :fontSize= item.fontSize :svgText= item.svgText :editable= editable></SvgComponents> -->
</g>
</svg>
</div>
</a-layout-content>
<a-layout-sider class="rightNav">
<RightToolBar :svgInfo = selectSvgInfo @setTableAttr="setTableAttr"></RightToolBar>
<RightToolBar :svgInfo=selectSvgInfo
@setTableAttr="setTableAttr"></RightToolBar>
</a-layout-sider>
</a-layout>
</a-layout>
@ -49,45 +81,46 @@ import RightToolBar from '@/components/RightToolBar.vue';
import global from '@/global/global.js';//
import DynamicTest from '@/components/DynamicTest.vue';
export default {
components: { LeftToolBar,RightToolBar,DynamicTest},
data(){
return{
svgInfoData:[],//
shrink:true,// true false
svgLists:[
],
components: { LeftToolBar, RightToolBar, DynamicTest },
data () {
return {
svgInfoData: [],//
shrink: true,// true false
svgLists: [],//svg
//
mousePosition:{
positionX:'',
positiony:''
mousePosition: {
positionX: '',
positiony: ''
},
//线
guideX:'',
guideY:'',
CurrentlySelectedToolBarType:'',//svg
CurrentlySelectedToolBarTypeName:'',//svg
CurrentlySelectedToolBarTitle:'',//svg
CurrentlySelectedToolBarColor:'',//svg
CurrentlySelectedToolBarHeight:'',//svg
CurrentlySelectedToolBarFontSize:'',//svg
CurrentlySelectedToolBarText:'',//svg
CurrentlySelectedToolBarWidth:'',//svg
CurrentlySelectedToolBarAngle:'',//svg
moveSvgID:'',//svg
moveSvgIndex:0,
testvalue:0,
selectSvgInfo:'',
tableRowCount:2,//
tableColCount:2,//
tableDefaultData:[],
canvasZoom:70,//
userInfo:'',
editable:true
guideX: '',
guideY: '',
CurrentlySelectedToolBar: {
Type: '',//svg
TypeName: '',//svg
Title: '',//svg
Color: '',//svg
Height: '',//svg
FontSize: '',//svg
Text: '',//svg
Width: '',//svg
Angle: '',//svg
},
moveSvg: {
ID: '',//svg
Index: 0,
}
,
selectSvgInfo: '',
tableRowCount: 2,//
tableColCount: 2,//
tableDefaultData: [],
editable: true
}
},
methods:{
methods: {
//
fullScreen() {
fullScreen () {
let _this = this
this.shrink = !this.shrink
let element = document.documentElement;
@ -101,12 +134,12 @@ export default {
element.webkitRequestFullscreen();
}
// esc
window.onresize = function() {
window.onresize = function () {
if (!checkFull()) {
_this.shrink = !_this.shrink
}
}
function checkFull() {
function checkFull () {
var isFull =
document.fullscreenElement ||
document.mozFullScreenElement ||
@ -116,7 +149,7 @@ export default {
}
},
//退
exitFullscreen() {
exitFullscreen () {
// this.shrink = !this.shrink
if (document.exitFullscreen) {
document.exitFullscreen();
@ -128,137 +161,136 @@ export default {
document.webkitExitFullscreen();
}
},
MouseMove(e){
if(e.offsetX==-1){
MouseMove (e) {
if (e.offsetX == -1) {
return;
}
if(e.target.nodeName=='INPUT'){
if (e.target.nodeName == 'INPUT') {
return;
}
if(e.offsetY==-1){
if (e.offsetY == -1) {
return;
}
if(this.moveSvgID==''){
if (this.moveSvg.ID == '') {
return;
}
this.mousePosition.positionX=e.offsetX;
this.mousePosition.positionY=e.offsetY;
if(this.mousePosition.positionX<1){
this.mousePosition.positionX=10;
this.mousePosition.positionX = e.offsetX;
this.mousePosition.positionY = e.offsetY;
if (this.mousePosition.positionX < 1) {
this.mousePosition.positionX = 10;
}
if(this.mousePosition.positionY<1){
this.mousePosition.positionY=10;
if (this.mousePosition.positionY < 1) {
this.mousePosition.positionY = 10;
}
let svgID=this.svgLists[this.moveSvgIndex].id;
let svgID = this.svgLists[this.moveSvg.Index].id;
//svg
let anyPositionList=this.svgLists.filter(function(list){
return list.id!=svgID
let anyPositionList = this.svgLists.filter(function (list) {
return list.id != svgID
});
//
let svgPositionX=this.mousePosition.positionX;
let svgPositionY=this.mousePosition.positionY;
let _this=this;
setTimeout(function()
{
let svgPositionX = this.mousePosition.positionX;
let svgPositionY = this.mousePosition.positionY;
let _this = this;
setTimeout(function () {
//
//x10
let exitsAdsorbX=anyPositionList.filter(function(list){
return -10<(list.svgPositionX-svgPositionX)&&(list.svgPositionX-svgPositionX)<10
let exitsAdsorbX = anyPositionList.filter(function (list) {
return -10 < (list.svgPositionX - svgPositionX) && (list.svgPositionX - svgPositionX) < 10
});
if(exitsAdsorbX.length>0){
svgPositionX=exitsAdsorbX[0].svgPositionX;
if (exitsAdsorbX.length > 0) {
svgPositionX = exitsAdsorbX[0].svgPositionX;
}
//y
let exitsAdsorbY=anyPositionList.filter(function(list){
return -10<(list.svgPositionY-svgPositionY)&&(list.svgPositionY-svgPositionY)<10
let exitsAdsorbY = anyPositionList.filter(function (list) {
return -10 < (list.svgPositionY - svgPositionY) && (list.svgPositionY - svgPositionY) < 10
});
if(exitsAdsorbY.length>0){
svgPositionY=exitsAdsorbY[0].svgPositionY;
if (exitsAdsorbY.length > 0) {
svgPositionY = exitsAdsorbY[0].svgPositionY;
}
_this.svgLists[_this.moveSvgIndex].svgPositionX=svgPositionX;
_this.svgLists[_this.moveSvgIndex].svgPositionY=svgPositionY;
_this.svgLists[_this.moveSvg.Index].svgPositionX = svgPositionX;
_this.svgLists[_this.moveSvg.Index].svgPositionY = svgPositionY;
//x
let exitsNowX=anyPositionList.filter(function(list){
return list.svgPositionX===svgPositionX
let exitsNowX = anyPositionList.filter(function (list) {
return list.svgPositionX === svgPositionX
});
if(exitsNowX.length>0){
_this.guideY.style.setProperty('left',svgPositionX-1+'px');
_this.guideY.style.display='inline';
if (exitsNowX.length > 0) {
_this.guideY.style.setProperty('left', svgPositionX - 1 + 'px');
_this.guideY.style.display = 'inline';
}
else{
_this.guideY.style.display='none';
else {
_this.guideY.style.display = 'none';
}
//y
let exitsNowY=anyPositionList.filter(function(list){
return list.svgPositionY===svgPositionY
let exitsNowY = anyPositionList.filter(function (list) {
return list.svgPositionY === svgPositionY
});
if(exitsNowY.length>0){
_this.guideX.style.setProperty('top',svgPositionY+'px');
_this.guideX.style.display='inline';
if (exitsNowY.length > 0) {
_this.guideX.style.setProperty('top', svgPositionY + 'px');
_this.guideX.style.display = 'inline';
}
else{
_this.guideX.style.display='none';
else {
_this.guideX.style.display = 'none';
}
},1);
}, 1);
},
MousedownCanvas(){
MousedownCanvas () {
//console.log('');
},
MousedownSvg(id,index){
global.CurrentlySelectedToolBarType='';
global.CurrentlySelectedToolBarTitle='';
this.CurrentlySelectedToolBarType='';
this.CurrentlySelectedToolBarTitle='';
MousedownSvg (id, index) {
global.CurrentlySelectedToolBarType = '';
global.CurrentlySelectedToolBarTitle = '';
this.CurrentlySelectedToolBar.Type = '';
this.CurrentlySelectedToolBar.Title = '';
//index
this.moveSvgID=id;
this.moveSvgIndex=index;
this.selectSvgInfo=this.svgLists[index];
this.moveSvg.ID = id;
this.moveSvg.Index = index;
this.selectSvgInfo = this.svgLists[index];
//g
let gAnyList=document.querySelectorAll('g');
gAnyList.forEach(g=>{
let gAnyList = document.querySelectorAll('g');
gAnyList.forEach(g => {
g.classList.remove("topo-layer-view-selected")
});
document.getElementById(id).classList.add("topo-layer-view-selected");
},
MouseupCanvas(){
this.guideX.style.display='none';
this.guideY.style.display='none';
if(this.CurrentlySelectedToolBarTitle!=''||this.CurrentlySelectedToolBarType!=''){
MouseupCanvas () {
this.guideX.style.display = 'none';
this.guideY.style.display = 'none';
if (this.CurrentlySelectedToolBar.Title != '' || this.CurrentlySelectedToolBar.Type != '') {
return;
}
this.moveSvgID='';
this.moveSvg.ID = '';
},
MouseWheel(e){
MouseWheel (e) {
//
let selectSvgInfo= this.selectSvgInfo;
if(selectSvgInfo==undefined||selectSvgInfo==null||selectSvgInfo==''){
let selectSvgInfo = this.selectSvgInfo;
if (selectSvgInfo == undefined || selectSvgInfo == null || selectSvgInfo == '') {
return;
}
e.preventDefault();
// -100 100
let svgZoom=e.deltaY=="-100"?"5":"-5";
selectSvgInfo.height+=parseInt(svgZoom);
if(selectSvgInfo.height<1){
selectSvgInfo.height=1;
let svgZoom = e.deltaY == "-100" ? "5" : "-5";
selectSvgInfo.height += parseInt(svgZoom);
if (selectSvgInfo.height < 1) {
selectSvgInfo.height = 1;
}
},
DblClick(){
DblClick () {
//g
let gAnyList=document.querySelectorAll('g');
gAnyList.forEach(g=>{
let gAnyList = document.querySelectorAll('g');
gAnyList.forEach(g => {
g.classList.remove("topo-layer-view-selected")
});
this.selectSvgInfo='';
this.selectSvgInfo = '';
},
testD(){
testD () {
console.log(JSON.stringify(this.svgLists));
alert(JSON.stringify(this.svgLists));
},
testE(){
this.svgLists=global.AnalogData;
testE () {
this.svgLists = global.AnalogData;
},
testH(){
testH () {
localStorage.setItem('svginfo', JSON.stringify(this.svgLists));
this.$router.push({
path: "/CircuitPreview",
@ -266,120 +298,119 @@ export default {
});
},
//
setTableAttr(id,rowCount,colCount){
setTableAttr (id, rowCount, colCount) {
//idindex
let tableIndex=this.svgLists.indexOf(this.svgLists.filter(f=>f.id==id)[0]);
if(tableIndex==-1){
let tableIndex = this.svgLists.indexOf(this.svgLists.filter(f => f.id == id)[0]);
if (tableIndex == -1) {
return;
}
let svgType=this.svgLists.filter(f=>f.id==id)[0].type;
if(svgType!='TableSvg'){
let svgType = this.svgLists.filter(f => f.id == id)[0].type;
if (svgType != 'TableSvg') {
return;
}
let tableData=[];
for(let r=0;r<rowCount;r++){
let tableColDataList=[];
for(let c=0;c<colCount;c++){
if(this.svgLists[tableIndex].tableData.length>=r+1&&this.svgLists[tableIndex].tableData[r].cols.length>=c+1){
let tableData = [];
for (let r = 0; r < rowCount; r++) {
let tableColDataList = [];
for (let c = 0; c < colCount; c++) {
if (this.svgLists[tableIndex].tableData.length >= r + 1 && this.svgLists[tableIndex].tableData[r].cols.length >= c + 1) {
tableColDataList.push(this.svgLists[tableIndex].tableData[r].cols[c]);
}
else{
else {
let tableColData={
let tableColData = {
"id": this.$UCore.GenUUid(),
"val": `${r+1}${c+1}`
"val": `${r + 1}${c + 1}`
}
tableColDataList.push(tableColData);
}
}
let tableRowData={
"cols":tableColDataList
let tableRowData = {
"cols": tableColDataList
};
tableData.push(tableRowData)
}
this.svgLists[tableIndex].tableData=tableData;
this.svgLists[tableIndex].tableData = tableData;
}
},
mounted(){
let _this=this;
let canvasdiv=document.querySelector('#canvas');
_this.guideX=document.querySelector('#guide-x');//线x
_this.guideY=document.querySelector('#guide-y');//线y
mounted () {
let _this = this;
let canvasdiv = document.querySelector('#canvas');
_this.guideX = document.querySelector('#guide-x');//线x
_this.guideY = document.querySelector('#guide-y');//线y
canvasdiv.addEventListener("dragover", function (e) {
e.preventDefault();
_this.CurrentlySelectedToolBarType=global.CurrentlySelectedToolBarType;
_this.CurrentlySelectedToolBarTitle=global.CurrentlySelectedToolBarTitle;
_this.CurrentlySelectedToolBarTypeName=global.CurrentlySelectedToolBarTypeName;
_this.CurrentlySelectedToolBarColor=global.CurrentlySelectedToolBarColor;
_this.CurrentlySelectedToolBarHeight=global.CurrentlySelectedToolBarHeight;
_this.CurrentlySelectedToolBarFontSize=global.CurrentlySelectedToolBarFontSize;
_this.CurrentlySelectedToolBarText=global.CurrentlySelectedToolBarText;
_this.CurrentlySelectedToolBarWidth=global.CurrentlySelectedToolBarWidth;
_this.CurrentlySelectedToolBarAngle=global.CurrentlySelectedToolBarAngle;
_this.CurrentlySelectedToolBar.Type = global.CurrentlySelectedToolBarType;
_this.CurrentlySelectedToolBar.Title = global.CurrentlySelectedToolBarTitle;
_this.CurrentlySelectedToolBar.TypeName = global.CurrentlySelectedToolBarTypeName;
_this.CurrentlySelectedToolBar.Color = global.CurrentlySelectedToolBarColor;
_this.CurrentlySelectedToolBar.Height = global.CurrentlySelectedToolBarHeight;
_this.CurrentlySelectedToolBar.FontSize = global.CurrentlySelectedToolBarFontSize;
_this.CurrentlySelectedToolBar.Text = global.CurrentlySelectedToolBarText;
_this.CurrentlySelectedToolBar.Width = global.CurrentlySelectedToolBarWidth;
_this.CurrentlySelectedToolBar.Angle = global.CurrentlySelectedToolBarAngle;
}, false);
canvasdiv.addEventListener("drop", function (e) {
e.preventDefault();
if(_this.CurrentlySelectedToolBarType==''){
if (_this.CurrentlySelectedToolBar.Type == '') {
return;
}
let tableData=[];
if(_this.CurrentlySelectedToolBarType=='TableSvg'){
for(let r=0;r<_this.tableRowCount;r++){
let tableColDataList=[];
for(let c=0;c<_this.tableColCount;c++){
let tableColData={
let tableData = [];
if (_this.CurrentlySelectedToolBar.Type == 'TableSvg') {
for (let r = 0; r < _this.tableRowCount; r++) {
let tableColDataList = [];
for (let c = 0; c < _this.tableColCount; c++) {
let tableColData = {
"id": _this.$UCore.GenUUid(),
"val": `${r+1}${c+1}`
"val": `${r + 1}${c + 1}`
}
tableColDataList.push(tableColData);
}
let tableRowData={
"cols":tableColDataList
let tableRowData = {
"cols": tableColDataList
};
tableData.push(tableRowData)
}
}
//
let svgItem={
id:_this.$UCore.GenUUid(),
sort:0,
title:_this.CurrentlySelectedToolBarTitle,
type:_this.CurrentlySelectedToolBarType,
typeName:_this.CurrentlySelectedToolBarTypeName,
svgColor:_this.CurrentlySelectedToolBarColor,
svgPositionX:e.offsetX,
svgPositionY:e.offsetY,
height:_this.CurrentlySelectedToolBarHeight,
width:_this.CurrentlySelectedToolBarWidth,
fontSize:_this.CurrentlySelectedToolBarFontSize,
svgText:_this.CurrentlySelectedToolBarText,
tableRowCount:_this.tableRowCount,
tableColCount:_this.tableColCount,
tableData:tableData,
angle:_this.CurrentlySelectedToolBarAngle
let svgItem = {
id: _this.$UCore.GenUUid(),
sort: 0,
title: _this.CurrentlySelectedToolBar.Title,
type: _this.CurrentlySelectedToolBar.Type,
typeName: _this.CurrentlySelectedToolBar.TypeName,
svgColor: _this.CurrentlySelectedToolBar.Color,
svgPositionX: e.offsetX,
svgPositionY: e.offsetY,
height: 1,
width: _this.CurrentlySelectedToolBar.Width,
fontSize: _this.CurrentlySelectedToolBar.FontSize,
svgText: _this.CurrentlySelectedToolBar.Text,
tableRowCount: _this.tableRowCount,
tableColCount: _this.tableColCount,
tableData: tableData,
angle: _this.CurrentlySelectedToolBar.Angle
//translate:`translate(${this.mousePosition.positionX},${this.mousePosition.positionY})`
};
_this.svgLists.push(svgItem);
setTimeout(function()
{
setTimeout(function () {
//g
let gAnyList=document.querySelectorAll('g');
gAnyList.forEach(g=>{
let gAnyList = document.querySelectorAll('g');
gAnyList.forEach(g => {
g.classList.remove("topo-layer-view-selected")
});
document.getElementById(svgItem.id).classList.add("topo-layer-view-selected");
_this.selectSvgInfo=svgItem;
},100);
_this.selectSvgInfo = svgItem;
}, 100);
}, false);
},
created(){
let _this=this;
created () {
let _this = this;
//
document.onkeydown = function(e) {
document.onkeydown = function (e) {
//
let selectSvgInfo= _this.selectSvgInfo;
if(selectSvgInfo==undefined||selectSvgInfo==null||selectSvgInfo==''){
let selectSvgInfo = _this.selectSvgInfo;
if (selectSvgInfo == undefined || selectSvgInfo == null || selectSvgInfo == '') {
return;
}
//
@ -387,50 +418,49 @@ export default {
//:-37;-38-39;-40
if (e1 && e1.keyCode == 37) {
e.preventDefault();
selectSvgInfo.svgPositionX-=1;
selectSvgInfo.svgPositionX -= 1;
} else if (e1 && e1.keyCode == 38) {
e.preventDefault();
selectSvgInfo.svgPositionY-=1;
selectSvgInfo.svgPositionY -= 1;
} else if (e1 && e1.keyCode == 39) {
e.preventDefault();
selectSvgInfo.svgPositionX+=1;
selectSvgInfo.svgPositionX += 1;
} else if (e1 && e1.keyCode == 40) {
e.preventDefault();
selectSvgInfo.svgPositionY+=1;
selectSvgInfo.svgPositionY += 1;
}
//ctrl c
else if (e1 && e1.ctrlKey&&e1.keyCode == 67) {
else if (e1 && e1.ctrlKey && e1.keyCode == 67) {
e.preventDefault();
let copySvgInfoStr=JSON.stringify(selectSvgInfo);
let copySvgInfo=JSON.parse(copySvgInfoStr);
copySvgInfo.id=_this.$UCore.GenUUid();
copySvgInfo.svgPositionX=selectSvgInfo.svgPositionX+10;
copySvgInfo.svgPositionY=selectSvgInfo.svgPositionY+10;
let copySvgInfoStr = JSON.stringify(selectSvgInfo);
let copySvgInfo = JSON.parse(copySvgInfoStr);
copySvgInfo.id = _this.$UCore.GenUUid();
copySvgInfo.svgPositionX = selectSvgInfo.svgPositionX + 10;
copySvgInfo.svgPositionY = selectSvgInfo.svgPositionY + 10;
_this.svgLists.push(copySvgInfo);
_this.selectSvgInfo=copySvgInfo;
setTimeout(function()
{
_this.selectSvgInfo = copySvgInfo;
setTimeout(function () {
//g
let gAnyList=document.querySelectorAll('g');
gAnyList.forEach(g=>{
let gAnyList = document.querySelectorAll('g');
gAnyList.forEach(g => {
g.classList.remove("topo-layer-view-selected")
});
document.getElementById(copySvgInfo.id).classList.add("topo-layer-view-selected");
},100);
}, 100);
}
//deleted
else if (e1 &&e1.keyCode == 46) {
else if (e1 && e1.keyCode == 46) {
e.preventDefault();
//idindex
let selectSvgIndex=_this.svgLists.indexOf(_this.svgLists.filter(f=>f.id==selectSvgInfo.id)[0]);
_this.svgLists.splice(selectSvgIndex,1);
let selectSvgIndex = _this.svgLists.indexOf(_this.svgLists.filter(f => f.id == selectSvgInfo.id)[0]);
_this.svgLists.splice(selectSvgIndex, 1);
}
}
//
this.$axios.get('/InterfaceReturn.json')
.then(function (response) {
_this.svgInfoData=response.data;
_this.svgInfoData = response.data;
console.log(response.data);
})
.catch(function (error) {
@ -447,16 +477,16 @@ export default {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track{
::-webkit-scrollbar-track {
border-radius: 10px;
background-color: #f2f2f2;
box-shadow: 1px 1px 5px #333 inset;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color:#444;
background-color: #444;
}
#components-layout .ant-layout-header{
#components-layout .ant-layout-header {
position: absolute;
left: 0;
right: 0;
@ -468,7 +498,7 @@ export default {
z-index: 2;
box-shadow: 1px 1px 5px #ddd;
}
.pageMain{
.pageMain {
position: absolute;
left: 0;
right: 0;
@ -476,7 +506,7 @@ export default {
bottom: 0;
overflow: auto;
}
.leftNav{
.leftNav {
position: absolute;
left: 0;
top: 0;
@ -487,7 +517,7 @@ export default {
z-index: 1;
overflow: auto;
}
.centerContain{
.centerContain {
position: absolute;
left: 260px;
right: 300px;
@ -499,7 +529,7 @@ export default {
transition: all 0.3s;
z-index: 111;
&.fixed{
&.fixed {
position: fixed;
left: 0;
right: 0;
@ -507,22 +537,21 @@ export default {
bottom: 0;
}
.canvas-content{
.canvas-content {
width: 1920px;
height: 1080px;
}
.btns-content{
.btns-content {
position: fixed;
bottom: 10px;
right: 320px;
left: 280px;
button{
button {
margin-left: 10px;
}
}
}
.rightNav{
.rightNav {
position: absolute;
right: 0;
top: 0;
@ -533,14 +562,14 @@ export default {
z-index: 1;
overflow: auto;
}
.icon-shrink{
.icon-shrink {
position: fixed;
right: 20px;
top: 5px;
font-size: 24px;
color: #fff;
cursor: pointer;
background:#1890ff ;
background: #1890ff;
width: 38px;
height: 38px;
line-height: 38px;
@ -550,38 +579,28 @@ export default {
z-index: 1111;
}
#components-layout .ant-layout-sider {
background: #fff;
color: rgb(167, 164, 164);
}
#guide-x{
#guide-x {
display: none;
position: absolute;
border-top: 1px dashed #55f;
width: 100%;
left: 0px;
top: 500px;
}
#guide-y{
#guide-y {
display: none;
position: absolute;
border-left: 1px dashed #55f;
height: 100%;
left: 100px;
top: 0px;
}
#canvas{
#canvas {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
@ -598,14 +617,26 @@ export default {
transform-origin: left top;
overflow: auto;
background-image:
linear-gradient(45deg, #ccc 25%, transparent 25%, transparent 75%, #ccc 75%, #ccc),
linear-gradient(45deg, #ccc 25%, transparent 25%, transparent 75%, #ccc 75%, #ccc);
background-image: linear-gradient(
45deg,
#ccc 25%,
transparent 25%,
transparent 75%,
#ccc 75%,
#ccc
),
linear-gradient(
45deg,
#ccc 25%,
transparent 25%,
transparent 75%,
#ccc 75%,
#ccc
);
background-size: 20px 20px;
background-position: 0 0, 10px 10px;
}
.resize-left-top {
.resize-left-top {
position: absolute;
height: 10px;
width: 10px;
@ -614,9 +645,9 @@ export default {
left: -5px;
top: -5px;
cursor: nwse-resize;
}
}
.resize-left-bottom {
.resize-left-bottom {
position: absolute;
height: 10px;
width: 10px;
@ -625,9 +656,9 @@ export default {
left: -5px;
bottom: -5px;
cursor: nesw-resize;
}
}
.resize-right-top {
.resize-right-top {
position: absolute;
height: 10px;
width: 10px;
@ -636,9 +667,9 @@ export default {
right: -5px;
top: -5px;
cursor: nesw-resize;
}
}
.resize-right-bottom {
.resize-right-bottom {
position: absolute;
height: 10px;
width: 10px;
@ -647,10 +678,9 @@ export default {
right: -5px;
bottom: -5px;
cursor: nwse-resize;
}
}
.topo-layer-view-selected {
.topo-layer-view-selected {
outline: 1px solid #0cf;
}
}
</style>

Loading…
Cancel
Save