|
@@ -902,15 +902,19 @@ const resignClick = async ()=>{
|
|
|
window.$message?.warning('请先勾选已审批的数据')
|
|
|
return
|
|
|
}
|
|
|
- //判断是否满足条件
|
|
|
- const result = rows.every(({ status }) => {
|
|
|
- return status === 2
|
|
|
+ //判断是否满足条件 //一键重迁 全部放开
|
|
|
+ /*const result = rows.every(({ status }) => {
|
|
|
+ if(status ===1 || status ===2){
|
|
|
+ return true;
|
|
|
+ }else{
|
|
|
+ return false;
|
|
|
+ }
|
|
|
})
|
|
|
//判断状态
|
|
|
if (!result) {
|
|
|
window.$message?.warning('只能勾选已审批的数据')
|
|
|
return
|
|
|
- }
|
|
|
+ }*/
|
|
|
resignModal.value = true
|
|
|
|
|
|
|