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