Quellcode durchsuchen

Merge branch 'v20' of http://47.101.159.18:3000/Muchinfo/MTP20_WEB_GLOBAL into v20

li.shaoyi vor 1 Jahr
Ursprung
Commit
255cf52ed6
1 geänderte Dateien mit 1 neuen und 8 gelöschten Zeilen
  1. 1 8
      src/packages/gcszt/views/mine/Index.vue

+ 1 - 8
src/packages/gcszt/views/mine/Index.vue

@@ -262,14 +262,7 @@ onActivated(() => {
         }
     }).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>