Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
company_app
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
毛细亚
company_app
Commits
d06bcbbc
提交
d06bcbbc
authored
9月 17, 2025
作者:
毛细亚
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
更新代码
上级
aca54f16
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
11 行增加
和
4 行删除
+11
-4
vip.svg
src/assets/icon/svg/vip.svg
+2
-0
game.js
src/store/modules/game.js
+0
-4
sendGame.vue
src/views/components/quickSendGame/sendGame.vue
+1
-0
sendVipLevelPoster.vue
src/views/components/quickSendGame/sendVipLevelPoster.vue
+0
-0
quickSendGame.vue
src/views/quickSendGame.vue
+8
-0
没有找到文件。
src/assets/icon/svg/vip.svg
0 → 100644
浏览文件 @
d06bcbbc
<svg
t=
"1678332723840"
class=
"icon"
viewBox=
"0 0 1024 1024"
version=
"1.1"
xmlns=
"http://www.w3.org/2000/svg"
p-id=
"2801"
width=
"200"
height=
"200"
><path
d=
"M897 47 122 47c-28.667 0-53.167 10-73.5 30S18 121.333 18 150l0 724c0 28.667 10.167 53 30.5 73s44.833 30 73.5 30l775 0c28.667 0 53-10 73-30s30-44.333 30-73L1000 150c0-18.667-4.5-36-13.5-52S965 69.5 949 60.5 915.667 47 897 47zM949 874c0 9.333-2.333 18-7 26s-11 14.333-19 19-16.667 7-26 7L122 926c-14.667 0-27-5.167-37-15.5S70 888 70 874L70 150c0-9.333 2.333-18 7-26s11-14.167 19-18.5 16.667-6.5 26-6.5l775 0c9.333 0 18 2.167 26 6.5s14.333 10.5 19 18.5 7 16.667 7 26L949 874zM256 678 138 377c-1.333-5.333-2-11.667-2-19 1.333-24 14.667-37.333 40-40 16 1.333 28 10.333 36 27l85 224 82-224c10-18 22.667-27 38-27 25.333 2.667 39.333 16 42 40-1.333 7.333-2.667 13.667-4 19L337 678c-10 18.667-23.333 28-40 28C277 706 263.333 696.667 256 678zM480 668 480 360c0-26.667 13.333-40.667 40-42 25.333 1.333 38.667 15.333 40 42l0 308c-1.333 25.333-14.667 38-40 38C493.333 706 480 693.333 480 668zM609 668 609 365c0-26.667 13.333-40.667 40-42l97 0c85.333 5.333 131 48 137 128-6 80-51 123-135 129l-59 0 0 88c-2 25.333-15.333 38-40 38C622.333 706 609 693.333 609 668zM689 394l0 114 54 0c34-1.333 52.333-20.333 55-57-2.667-35.333-21-54.333-55-57L689 394z"
p-id=
"2802"
></path></svg>
\ No newline at end of file
src/store/modules/game.js
浏览文件 @
d06bcbbc
...
@@ -16,7 +16,6 @@ const state = {
...
@@ -16,7 +16,6 @@ const state = {
chatUserInfo
:
{},
// 当前选中的用户的详情
chatUserInfo
:
{},
// 当前选中的用户的详情
viewLoading
:
false
,
// 查看用户详情的时候 加载状态
viewLoading
:
false
,
// 查看用户详情的时候 加载状态
taskDetails
:
{},
// 任务详情
taskDetails
:
{},
// 任务详情
vipRoleInfo
:
{},
// VIP等级信息
// 任务数据
// 任务数据
taskData
:
{
taskData
:
{
user_task
:
0
,
user_task
:
0
,
...
@@ -54,9 +53,6 @@ const mutations = {
...
@@ -54,9 +53,6 @@ const mutations = {
...
data
,
...
data
,
lastUpdateTime
:
Date
.
now
()
lastUpdateTime
:
Date
.
now
()
}
}
},
set_vipRoleInfo
(
state
,
data
)
{
state
.
vipRoleInfo
=
data
}
}
}
}
...
...
src/views/components/quickSendGame/sendGame.vue
浏览文件 @
d06bcbbc
...
@@ -253,6 +253,7 @@ export default {
...
@@ -253,6 +253,7 @@ export default {
showLayer
:
false
,
showLayer
:
false
,
showSendChannel
:
false
,
showSendChannel
:
false
,
channelInfoList
:
{},
channelInfoList
:
{},
sendChatMessage
:
sendChatMessage
,
transMemberStatus
:
true
transMemberStatus
:
true
}
}
},
},
...
...
src/views/components/quickSendGame/sendVipLevelPoster.vue
0 → 100644
浏览文件 @
d06bcbbc
差异被折叠。
点击展开。
src/views/quickSendGame.vue
浏览文件 @
d06bcbbc
...
@@ -20,6 +20,12 @@
...
@@ -20,6 +20,12 @@
>
>
<sendQrCode
v-if=
"activeName === 'sendQrCode'"
/>
<sendQrCode
v-if=
"activeName === 'sendQrCode'"
/>
</el-tab-pane>
-->
</el-tab-pane>
-->
<el-tab-pane
label=
"发送 SVIP 海报"
name=
"sendVipPoster"
>
<sendVipPoster
v-if=
"activeName === 'sendVipPoster'"
/>
</el-tab-pane>
</el-tabs>
</el-tabs>
</div>
</div>
</div>
</div>
...
@@ -30,12 +36,14 @@ import vipTools from './components/quickSendGame/vipTools.vue'
...
@@ -30,12 +36,14 @@ import vipTools from './components/quickSendGame/vipTools.vue'
import
sendGame
from
'./components/quickSendGame/sendGame.vue'
import
sendGame
from
'./components/quickSendGame/sendGame.vue'
import
{
mapActions
}
from
'vuex'
import
{
mapActions
}
from
'vuex'
import
sendQrCode
from
'./components/quickSendGame//ServiceMessageDialog.vue'
import
sendQrCode
from
'./components/quickSendGame//ServiceMessageDialog.vue'
import
sendVipPoster
from
'./components/quickSendGame/sendVipLevelPoster.vue'
export
default
{
export
default
{
name
:
'quickSendGame'
,
name
:
'quickSendGame'
,
components
:
{
components
:
{
vipTools
,
vipTools
,
sendGame
,
sendGame
,
sendQrCode
,
sendQrCode
,
sendVipPoster
,
},
},
data
()
{
data
()
{
return
{
return
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论