|
@@ -262,14 +262,7 @@ onActivated(() => {
|
|
|
}
|
|
}
|
|
|
}).then((res) => {
|
|
}).then((res) => {
|
|
|
/// 判断是否能签约
|
|
/// 判断是否能签约
|
|
|
- res.data.forEach(e => {
|
|
|
|
|
- if (e.recordstatus != 3) {
|
|
|
|
|
- hasSignContract.value = false
|
|
|
|
|
- return
|
|
|
|
|
- } else {
|
|
|
|
|
- hasSignContract.value = true
|
|
|
|
|
- }
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ hasSignContract.value = !res.data.map(e => e.recordstatus != 3)
|
|
|
})
|
|
})
|
|
|
})
|
|
})
|
|
|
</script>
|
|
</script>
|