Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
company_app
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
毛细亚
company_app
Commits
d33277d2
提交
d33277d2
authored
9月 01, 2025
作者:
毛细亚
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'release' into 6.7
上级
d8d822ea
18a73d01
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
32 行增加
和
1 行删除
+32
-1
index.html
company_app/index.html
+25
-0
main.js
src/main.js
+0
-1
sendGame.vue
src/views/components/quickSendGame/sendGame.vue
+7
-0
没有找到文件。
company_app/index.html
0 → 100644
浏览文件 @
d33277d2
<!DOCTYPE html>
<html
lang=
""
>
<head>
<meta
charset=
"utf-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"viewport"
content=
"width=device-width,initial-scale=1.0"
>
<link
rel=
"icon"
href=
"favicon.ico"
>
<!-- HTTP 1.1 -->
<meta
http-equiv=
"pragma"
content=
"no-cache"
>
<!-- HTTP 1.0 -->
<meta
http-equiv=
"cache-control"
content=
"no-cache"
>
<!-- Prevent caching at the proxy server -->
<meta
http-equiv=
"expires"
content=
"0"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=EmulateIE9"
/>
<title>
company_app
</title>
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,shrink-to-fit=no,user-scalable=no"> -->
<script
src=
"https://g.alicdn.com/dingding/dinglogin/0.0.5/ddLogin.js"
></script>
<script
defer
src=
"static/js/chunk-vendors.js"
></script><script
defer
src=
"static/js/app.js"
></script></head>
<body>
<noscript>
<strong>
We're sorry but company_app doesn't work properly without JavaScript enabled. Please enable it to continue.
</strong>
</noscript>
<div
id=
"app"
></div>
</body>
</html>
src/main.js
浏览文件 @
d33277d2
...
...
@@ -48,7 +48,6 @@ import '@/utils/vconsoleCleanup'
// console.error('Failed to initialize stagewise toolbar:', err);
// });
// }
// 开发环境不收集日志
if
(
process
.
env
.
NODE_ENV
!==
'development'
)
{
errorHandle
.
onload
()
...
...
src/views/components/quickSendGame/sendGame.vue
浏览文件 @
d33277d2
...
...
@@ -530,6 +530,13 @@ export default {
handleConversionGameList
()
{
if
(
this
.
conversionGameList
.
length
>
0
)
{
this
.
conversionGameList
.
forEach
((
item
,
index
)
=>
{
// 隐藏 h5的游戏 912:神权之战
if
(
item
.
game_type
===
2
&&
item
.
children
&&
item
.
children
.
length
>
0
)
{
const
filteredChildren
=
item
.
children
.
filter
(
child
=>
{
return
child
.
game_id
!==
'912'
})
this
.
$set
(
this
.
conversionGameList
[
index
],
'children'
,
filteredChildren
)
}
// 隐藏安卓游戏 安卓游戏 game_type: 3
if
(
item
.
game_type
===
3
&&
item
.
children
&&
item
.
children
.
length
>
0
)
{
// 过滤掉 game_name 为"破日开天"的数据
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论