Explorar el Código

更新 证书管理:列表类型

王智慧 hace 3 años
padre
commit
ec354b668c
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      src/views/workStation/certsManage.vue

+ 3 - 1
src/views/workStation/certsManage.vue

@@ -163,7 +163,9 @@ let certTypes = ref([
 ]);
 async function getCertListType() {
   let { data } = await api.getCertListType({});
-  certTypes.value = data.result;
+  certTypes.value = data.result.filter((item) => {
+    return item.typeName != "船舶保险";
+  });
 }
 
 let currentTypeIndex = ref(0);