openatc-components 0.0.73 → 0.0.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
:options="options">
|
|
23
23
|
<div class="common-board-item" v-for="element in list" :key="element.id">
|
|
24
24
|
<el-row :gutter="13" >
|
|
25
|
-
<el-col :span="
|
|
25
|
+
<el-col :span="6">
|
|
26
26
|
<el-tooltip class="item" effect="dark" placement="left">
|
|
27
27
|
<div slot="content">{{element.name}}</div>
|
|
28
|
-
<div class="phase-description">
|
|
28
|
+
<div class="common-phase-description">
|
|
29
29
|
<xdrdirselector Width="40px" Height="40px" :showlist="element.desc" :ISActiveMask="ISActiveMask" :MaskColor="MaskColor"></xdrdirselector>
|
|
30
30
|
</div>
|
|
31
31
|
</el-tooltip>
|
|
32
32
|
</el-col>
|
|
33
|
-
<el-col :span="
|
|
33
|
+
<el-col :span="6">
|
|
34
34
|
<el-select v-model="element.options" size="small" multiple collapse-tags :placeholder="$t('openatccomponents.common.select')">
|
|
35
35
|
<el-option
|
|
36
36
|
v-for="item in coordphaseOption"
|
|
@@ -84,6 +84,15 @@ export default {
|
|
|
84
84
|
return []
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
|
+
ISActiveMask: {
|
|
88
|
+
type: Boolean,
|
|
89
|
+
default: true
|
|
90
|
+
},
|
|
91
|
+
// 当phase的描述为空时,显示的图形颜色。
|
|
92
|
+
MaskColor: {
|
|
93
|
+
type: String,
|
|
94
|
+
default: '#000000'
|
|
95
|
+
},
|
|
87
96
|
index: {
|
|
88
97
|
type: Number
|
|
89
98
|
},
|