wupengfei
3 天以前 f873a599918eb31e4e6e937601294100f03ef73b
src/views/CustomerManage/CustomerManage.vue
@@ -79,6 +79,14 @@
      onClick: (role) => goAddOrEdit(role),
    },
  },
  insureConfigureBtn: {
    emits: {
      onClick: (role) => goInsureProductConfigure(role),
    },
    extraProps: {
      hide: (role) => false,
    },
  },
};
const { checkSubModuleItemShow, column, operationBtns } = useAccess({
@@ -178,4 +186,13 @@
    },
  });
}
function goInsureProductConfigure(row: API.GetPartyAEnterprisesQueryResultItem) {
  router.push({
    name: 'InsureProductConfigure',
    params: {
      id: row?.id ?? '',
    },
  });
}
</script>