feat: 去除注释

This commit is contained in:
2025-10-01 16:54:04 +08:00
parent 0efcd36aa7
commit e729ee6ac5

View File

@@ -24,11 +24,6 @@ import {
GameManagePopup, GameManagePopup,
Comments, Comments,
} from "@/components"; } from "@/components";
// import {
// EvaluateType,
// SceneType,
// DisplayConditionType,
// } from "@/components/NTRPEvaluatePopup";
import DetailService, { import DetailService, {
MATCH_STATUS, MATCH_STATUS,
IsSubstituteSupported, IsSubstituteSupported,
@@ -36,7 +31,6 @@ import DetailService, {
import * as LoginService from "@/services/loginService"; import * as LoginService from "@/services/loginService";
import OrderService from "@/services/orderService"; import OrderService from "@/services/orderService";
import { getCurrentLocation, calculateDistance } from "@/utils/locationUtils"; import { getCurrentLocation, calculateDistance } from "@/utils/locationUtils";
// import { getCurrentFullPath } from "@/utils";
import { useUserInfo, useUserActions } from "@/store/userStore"; import { useUserInfo, useUserActions } from "@/store/userStore";
import { EvaluateCallback, EvaluateScene } from "@/store/evaluateStore"; import { EvaluateCallback, EvaluateScene } from "@/store/evaluateStore";
import img from "@/config/images"; import img from "@/config/images";
@@ -55,22 +49,22 @@ function GameTags(props) {
const { userInfo, handleViewUserInfo } = props; const { userInfo, handleViewUserInfo } = props;
const { avatar_url, id } = userInfo; const { avatar_url, id } = userInfo;
const tags = [ const tags = [
{ // {
name: "🕙 急招", // name: "🕙 急招",
icon: "", // icon: "",
}, // },
{ // {
name: "🔥 本周热门", // name: "🔥 本周热门",
icon: "", // icon: "",
}, // },
{ // {
name: "🎉 新活动", // name: "🎉 新活动",
icon: "", // icon: "",
}, // },
{ // {
name: "官方组织", // name: "官方组织",
icon: "", // icon: "",
}, // },
]; ];
return ( return (
<View className="detail-page-content-avatar-tags"> <View className="detail-page-content-avatar-tags">
@@ -145,7 +139,6 @@ function Coursel(props) {
}, [image_list]); }, [image_list]);
function previewImage(current_url) { function previewImage(current_url) {
// console.log(image_list, "image_list");
Taro.previewImage({ Taro.previewImage({
current: current_url, current: current_url,
urls: list?.length > 0 ? list.map((c) => c.url) : [], urls: list?.length > 0 ? list.map((c) => c.url) : [],