|
@@ -57,7 +57,7 @@ const TypeCSParaWidget = ({
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- const pageParam = articleId.split("-");
|
|
|
|
|
|
|
+ const pageParam = articleId.split("_");
|
|
|
if (pageParam.length !== 3) {
|
|
if (pageParam.length !== 3) {
|
|
|
console.error("pageParam 必须为三个");
|
|
console.error("pageParam 必须为三个");
|
|
|
return;
|
|
return;
|
|
@@ -121,7 +121,7 @@ const TypeCSParaWidget = ({
|
|
|
if (typeof articleId === "undefined") {
|
|
if (typeof articleId === "undefined") {
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|
|
|
- const pageParam = articleId.split("-");
|
|
|
|
|
|
|
+ const pageParam = articleId.split("_");
|
|
|
if (pageParam.length !== 3) {
|
|
if (pageParam.length !== 3) {
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|
|
@@ -140,7 +140,7 @@ const TypeCSParaWidget = ({
|
|
|
if (typeof articleId === "undefined") {
|
|
if (typeof articleId === "undefined") {
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|
|
|
- const pageParam = articleId.split("-");
|
|
|
|
|
|
|
+ const pageParam = articleId.split("_");
|
|
|
if (pageParam.length < 3) {
|
|
if (pageParam.length < 3) {
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|