diff --git a/src/pages/HighQualityOperation/Home/index.tsx b/src/pages/HighQualityOperation/Home/index.tsx
index 554b2c1..8d4f746 100644
--- a/src/pages/HighQualityOperation/Home/index.tsx
+++ b/src/pages/HighQualityOperation/Home/index.tsx
@@ -33,8 +33,6 @@ const formItemLayout = {
wrapperCol: { span: 17 },
};
-const learnUrl = START_ENV == "PROD" ? "https://m.campus.chinaunicom.cn/#/checkidentity?dataId=376&type=THEME" : null;
-
//卡片头
const LeftCardTop = (props: any) => {
return (
@@ -409,6 +407,12 @@ const Home: React.FC<{}> = () => {
setContactData([...totalContactData.slice(0, 3)]);
}
}
+ //right learn click
+ const learnClick = (rightData: any[], index: number) => {
+ if (rightData && rightData.length > 0 && START_ENV == "PROD") {
+ window.open(rightData[index].dataValue);
+ }
+ }
const handleChange = (tag: string, checked: boolean) => {
const nextSelectedTag = checked ? tag : '';
getContactList(nextSelectedTag);
@@ -573,13 +577,13 @@ const Home: React.FC<{}> = () => {