Commit 3a9df668 by 史敦盼

Merge branch 'sdp-v1'

2 parents e8f6cab1 c7c5124b
...@@ -3780,7 +3780,7 @@ Sidebar.prototype.addClickHandler = function(elt, ds, cells, clickFn) ...@@ -3780,7 +3780,7 @@ Sidebar.prototype.addClickHandler = function(elt, ds, cells, clickFn)
// } // }
// 二次开发-元模型管理详情 // 二次开发-元模型管理详情
console.log(evt, cells) console.log(evt, cells)
if(evt.target.text && !evt.target.text.includes('图例')) { if(evt.target.text && evt.target.text.length < 20) {
cells[0].value = evt.target.text; cells[0].value = evt.target.text;
cells[0].style = cells[0].style.replace('fontColor=#ffffff;', 'fontColor=#000000;') cells[0].style = cells[0].style.replace('fontColor=#ffffff;', 'fontColor=#000000;')
// cells[0].geometry.x = 0 // cells[0].geometry.x = 0
......
...@@ -137,6 +137,7 @@ ...@@ -137,6 +137,7 @@
label="架构视图名称" label="架构视图名称"
width="150" width="150"
align="center" align="center"
show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
prop="archiStage" prop="archiStage"
...@@ -1030,7 +1031,7 @@ export default { ...@@ -1030,7 +1031,7 @@ export default {
// }); // });
// }, // },
getEleList() { getEleList() {
getEleList().then((res) => { getEleList({state: 1}).then((res) => {
if (res.code == 200) { if (res.code == 200) {
res.data.map((item) => { res.data.map((item) => {
item['key'] = item.elementId item['key'] = item.elementId
...@@ -1041,7 +1042,7 @@ export default { ...@@ -1041,7 +1042,7 @@ export default {
}) })
}, },
gtEleRelList() { gtEleRelList() {
gtEleRelList().then((res) => { gtEleRelList({state: 1}).then((res) => {
if (res.code == 200) { if (res.code == 200) {
res.data.map((item) => { res.data.map((item) => {
item['key'] = item.eleRelaId item['key'] = item.eleRelaId
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!