|
@@ -186,7 +186,30 @@
|
|
{{ data.pen.globalAlpha }}
|
|
{{ data.pen.globalAlpha }}
|
|
</span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
-
|
|
|
|
|
|
+ <template
|
|
|
|
+ v-if="
|
|
|
|
+ data.pen.name === 'combine' && data.pen.showChild !== undefined
|
|
|
|
+ "
|
|
|
|
+ >
|
|
|
|
+ <t-divider style="margin: -8px 0" />
|
|
|
|
+ <div class="form-item px-16" style="margin-top: -12px">
|
|
|
|
+ <label>状态</label>
|
|
|
|
+ <t-select
|
|
|
|
+ v-model="data.pen.showChild"
|
|
|
|
+ placeholder="状态"
|
|
|
|
+ @change="changeValue('showChild')"
|
|
|
|
+ style="width: 150px"
|
|
|
|
+ >
|
|
|
|
+ <t-option
|
|
|
|
+ v-for="(a, index) in data.pen.children"
|
|
|
|
+ :key="index"
|
|
|
|
+ :value="index"
|
|
|
|
+ >
|
|
|
|
+ 状态{{ index + 1 }}</t-option
|
|
|
|
+ >
|
|
|
|
+ </t-select>
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
<t-collapse
|
|
<t-collapse
|
|
:defaultValue="['1', '2', '3', '4', '5']"
|
|
:defaultValue="['1', '2', '3', '4', '5']"
|
|
expandIconPlacement="right"
|
|
expandIconPlacement="right"
|