File tree Expand file tree Collapse file tree 3 files changed +14
-9
lines changed
src/apps/dataGovernance/view/assetsInfo Expand file tree Collapse file tree 3 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default {
13
13
name: ' lineage' ,
14
14
data () {
15
15
return {
16
- canvas: null
16
+ canvas: null ,
17
17
}
18
18
},
19
19
props: {
Original file line number Diff line number Diff line change 41
41
<div class =" assets-info-b-l-content-item" >
42
42
<label for =" comment" >描述</label >
43
43
<span v-show =" !isCommentEdit" >{{ basicData.comment }}</span >
44
- <Input
44
+ <!-- < Input
45
45
v-show="isCommentEdit"
46
46
v-model="basicData.comment"
47
47
size="small"
59
59
v-else
60
60
@click="editSingleComment"
61
61
style="float:right;cursor: pointer;"
62
- ></Icon >
62
+ ></Icon> -->
63
63
</div >
64
64
<div class =" assets-info-b-l-content-item" style =" overflow : hidden " >
65
65
<label for =" labels" >标签</label >
77
77
<Input
78
78
v-show =" isLabelEdit"
79
79
v-model =" singleLabel"
80
+ style =" width : 135px ;"
80
81
size =" small"
81
82
placeholder =" "
82
83
@on-enter =" editSingleLabel"
83
84
/>
85
+ <Icon
86
+ type =" md-checkmark"
87
+ v-show =" isLabelEdit"
88
+ @click =" editSingleLabel"
89
+ style =" margin-left : 8px ; cursor : pointer ;"
90
+ ></Icon >
84
91
<span
85
92
v-for =" label in labelOptions"
86
93
:key =" label"
163
170
<div class =" dagreLayout-page" v-if =" lineageData" >
164
171
<lineage
165
172
class =" flow-canvas"
166
- id =" dag-canvas"
173
+ id =' dag-canvas'
167
174
:lineageData =" lineageData"
168
175
></lineage >
169
176
</div >
@@ -367,9 +374,7 @@ export default {
367
374
item .store = item .store + " " ;
368
375
let tempLen = Math .floor (item .store .length / 4 );
369
376
let len = tempLen > 2 ? 3 : tempLen;
370
- item .store = (
371
- item .store / Math .pow (1024 , len + 1 )
372
- ).toFixed (2 );
377
+ item .store = (item .store / Math .pow (1024 , len + 1 )).toFixed (2 );
373
378
switch (len) {
374
379
case 0 :
375
380
item .store = item .store + " KB" ;
Original file line number Diff line number Diff line change @@ -247,10 +247,10 @@ module.exports = {
247
247
devServer : {
248
248
proxy : {
249
249
"/api" : {
250
- // target: "http://***REMOVED***:8088",
250
+ target : "http://***REMOVED***:8088" ,
251
251
//target: 'http://***REMOVED***:9202', //yichao
252
252
// target: "http://***REMOVED***:9202", //jiawei
253
- target : "http://luban.ctyun.cn:8088" ,
253
+ // target: "http://luban.ctyun.cn:8088",
254
254
//target: "http://devluban.ctyun.cn:8088",
255
255
changeOrigin : true ,
256
256
pathRewrite : {
You can’t perform that action at this time.
0 commit comments