Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
company_app
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
毛细亚
company_app
Commits
ee211a0d
提交
ee211a0d
authored
9月 05, 2025
作者:
毛细亚
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
🐞
fix: 调整按钮样式,优化活动列表展示
上级
1ac12a0e
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
12 行增加
和
8 行删除
+12
-8
roleInfoPanel.vue
src/views/components/roleInfo/roleInfoPanel.vue
+1
-1
RecentActivitiesList.vue
...RecentActivitiesPopup/components/RecentActivitiesList.vue
+11
-7
没有找到文件。
src/views/components/roleInfo/roleInfoPanel.vue
浏览文件 @
ee211a0d
...
...
@@ -6,7 +6,7 @@
<p
class=
"textInfo"
>
角色充值金额信息会有5-10分钟延迟,请以订单信息为准
</p>
<el-button
type=
"primary"
size=
"
medium"
class=
"h-[32
px]"
@
click
.
stop=
"appealLayer()"
>
申诉
</el-button>
<el-button
type=
"primary"
size=
"
small"
class=
"h-[30
px]"
@
click
.
stop=
"appealLayer()"
>
申诉
</el-button>
</div>
<el-collapse
v-model=
"collapseActive"
@
change=
"handleChange"
>
<div
v-for=
"(items, indexs) in roleList"
:key=
"indexs"
class=
"contentItem mb-[10px]"
>
...
...
src/views/popup/RecentActivitiesPopup/components/RecentActivitiesList.vue
浏览文件 @
ee211a0d
<!--
* @Author: maoxiya 937667504@qq.com
* @Date: 2025-09-03 14:05:20
* @LastEditors: maoxiya 937667504@qq.com
* @LastEditTime: 2025-09-05 16:35:19
* @FilePath: /company_app/src/views/popup/RecentActivitiesPopup/components/RecentActivitiesList.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<
template
>
<div
v-loading=
"loading"
>
<div
class=
"px-[20px] h-full gap-y-[8px] overflow-y-auto"
>
<template
v-if=
"list.length"
>
<RecentActivities
@
handleUpdate=
"query"
:item=
"item"
v-for=
"item in list"
:key=
"item.activity_rule_id"
/>
<RecentActivities
@
handleUpdate=
"query"
:item=
"item"
v-for=
"item in list"
:key=
"item.activity_rule_id"
/>
</
template
>
<svg-icon
v-else
icon-class=
"noContent"
class=
"text-[280px]"
/>
</div>
...
...
@@ -34,7 +37,8 @@ export default {
const
{
data
}
=
await
getRoleRecentActivityListApi
({
role_id
:
this
.
role_id
,
});
this
.
list
=
data
.
data
;
this
.
list
=
data
.
data
.
reverse
()
}
catch
(
error
)
{
}
finally
{
this
.
loading
=
false
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论