bug751
This commit is contained in:
parent
4d31d111ac
commit
3609c2ba20
|
@ -21,6 +21,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
|
v-if="checkedListAbility.length != 0"
|
||||||
title="是否进行批量删除?"
|
title="是否进行批量删除?"
|
||||||
ok-text="是"
|
ok-text="是"
|
||||||
cancel-text="否"
|
cancel-text="否"
|
||||||
|
@ -37,10 +38,26 @@
|
||||||
background: #fff;
|
background: #fff;
|
||||||
color: #0558e1;
|
color: #0558e1;
|
||||||
"
|
"
|
||||||
|
@click="ceshiFunction()"
|
||||||
>
|
>
|
||||||
批量删除
|
批量删除
|
||||||
</a-button>
|
</a-button>
|
||||||
</a-popconfirm>
|
</a-popconfirm>
|
||||||
|
<a-button
|
||||||
|
v-else
|
||||||
|
type="primary"
|
||||||
|
style="
|
||||||
|
width: 1rem;
|
||||||
|
height: 0.36rem;
|
||||||
|
margin-right: 0.12rem;
|
||||||
|
border-radius: 2px;
|
||||||
|
background: #fff;
|
||||||
|
color: #0558e1;
|
||||||
|
"
|
||||||
|
@click="ceshiFunction()"
|
||||||
|
>
|
||||||
|
批量删除
|
||||||
|
</a-button>
|
||||||
<a-button
|
<a-button
|
||||||
type="primary"
|
type="primary"
|
||||||
style="
|
style="
|
||||||
|
@ -767,7 +784,13 @@
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//ceshiFunction
|
||||||
|
const ceshiFunction = () => {
|
||||||
|
debugger
|
||||||
|
if (checkedListAbility.value.length == 0) {
|
||||||
|
message.warning('请先选择需要操作的数据!')
|
||||||
|
}
|
||||||
|
}
|
||||||
const delOne = (item, index) => {
|
const delOne = (item, index) => {
|
||||||
// console.log(item)
|
// console.log(item)
|
||||||
sgcDel({
|
sgcDel({
|
||||||
|
|
Loading…
Reference in New Issue