fix: bug#10987
This commit is contained in:
parent
9dab329841
commit
783010bcb1
|
@ -327,7 +327,7 @@
|
|||
<j-button v-else @click="onAdd">点击配置执行动作</j-button>
|
||||
</div>
|
||||
<div class="item-number">{{ name + 1 }}</div>
|
||||
<j-popconfirm title="确认删除?" @confirm="onDelete">
|
||||
<j-popconfirm title="确认删除?" @confirm="onDelete" :overlayStyle='{minWidth: "180px"}'>
|
||||
<div class="item-delete">
|
||||
<AIcon type="DeleteOutlined" />
|
||||
</div>
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
<j-popconfirm
|
||||
title='确认删除?'
|
||||
@confirm='onDelete'
|
||||
:overlayStyle='{minWidth: "180px"}'
|
||||
>
|
||||
<div v-if='!isFirst' class='terms-params-delete danger show'>
|
||||
<AIcon type='DeleteOutlined' />
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
v-model:source='paramsValue.value.source'
|
||||
@select='valueSelect'
|
||||
/>
|
||||
<j-popconfirm title='确认删除?' @confirm='onDelete'>
|
||||
<j-popconfirm title='确认删除?' @confirm='onDelete' :overlayStyle='{minWidth: "180px"}'>
|
||||
<div v-show='showDelete' class='button-delete'> <AIcon type='CloseOutlined' /></div>
|
||||
</j-popconfirm>
|
||||
</div>
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
>
|
||||
<j-popconfirm
|
||||
title='确认删除?'
|
||||
:overlayStyle='{minWidth: "180px"}'
|
||||
@confirm='onDelete'
|
||||
>
|
||||
<div v-show='showDelete' class='terms-params-delete'>
|
||||
|
|
Loading…
Reference in New Issue