Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cocktail-party-server
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
cocktail-party
cocktail-party-server
Commits
b4317032
提交
b4317032
authored
5月 17, 2021
作者:
RuoYi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
导出按钮点击之后添加遮罩
上级
99726be9
隐藏空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
60 行增加
和
10 行删除
+60
-10
index.vue
ruoyi-ui/src/views/monitor/job/index.vue
+6
-1
log.vue
ruoyi-ui/src/views/monitor/job/log.vue
+6
-1
index.vue
ruoyi-ui/src/views/monitor/logininfor/index.vue
+6
-1
index.vue
ruoyi-ui/src/views/monitor/operlog/index.vue
+6
-1
index.vue
ruoyi-ui/src/views/system/config/index.vue
+6
-1
data.vue
ruoyi-ui/src/views/system/dict/data.vue
+6
-1
index.vue
ruoyi-ui/src/views/system/dict/index.vue
+6
-1
index.vue
ruoyi-ui/src/views/system/post/index.vue
+6
-1
index.vue
ruoyi-ui/src/views/system/role/index.vue
+6
-1
index.vue
ruoyi-ui/src/views/system/user/index.vue
+6
-1
没有找到文件。
ruoyi-ui/src/views/monitor/job/index.vue
浏览文件 @
b4317032
...
...
@@ -75,6 +75,7 @@
plain
icon=
"el-icon-download"
size=
"mini"
:loading=
"exportLoading"
@
click=
"handleExport"
v-hasPermi=
"['monitor:job:export']"
>
导出
</el-button>
...
...
@@ -274,6 +275,8 @@ export default {
return
{
// 遮罩层
loading
:
true
,
// 导出遮罩层
exportLoading
:
false
,
// 选中数组
ids
:
[],
// 非单个禁用
...
...
@@ -477,10 +480,12 @@ export default {
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}).
then
(
function
()
{
}).
then
(()
=>
{
this
.
exportLoading
=
true
;
return
exportJob
(
queryParams
);
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
}
}
...
...
ruoyi-ui/src/views/monitor/job/log.vue
浏览文件 @
b4317032
...
...
@@ -89,6 +89,7 @@
plain
icon=
"el-icon-download"
size=
"mini"
:loading=
"exportLoading"
@
click=
"handleExport"
v-hasPermi=
"['monitor:job:export']"
>
导出
</el-button>
...
...
@@ -175,6 +176,8 @@ export default {
return
{
// 遮罩层
loading
:
true
,
// 导出遮罩层
exportLoading
:
false
,
// 选中数组
ids
:
[],
// 非多个禁用
...
...
@@ -288,10 +291,12 @@ export default {
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}).
then
(
function
()
{
}).
then
(()
=>
{
this
.
exportLoading
=
true
;
return
exportJobLog
(
queryParams
);
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
}
}
...
...
ruoyi-ui/src/views/monitor/logininfor/index.vue
浏览文件 @
b4317032
...
...
@@ -83,6 +83,7 @@
plain
icon=
"el-icon-download"
size=
"mini"
:loading=
"exportLoading"
@
click=
"handleExport"
v-hasPermi=
"['monitor:logininfor:export']"
>
导出
</el-button>
...
...
@@ -126,6 +127,8 @@ export default {
return
{
// 遮罩层
loading
:
true
,
// 导出遮罩层
exportLoading
:
false
,
// 选中数组
ids
:
[],
// 非多个禁用
...
...
@@ -221,10 +224,12 @@ export default {
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}).
then
(
function
()
{
}).
then
(()
=>
{
this
.
exportLoading
=
true
;
return
exportLogininfor
(
queryParams
);
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
}
}
...
...
ruoyi-ui/src/views/monitor/operlog/index.vue
浏览文件 @
b4317032
...
...
@@ -99,6 +99,7 @@
plain
icon=
"el-icon-download"
size=
"mini"
:loading=
"exportLoading"
@
click=
"handleExport"
v-hasPermi=
"['monitor:operlog:export']"
>
导出
</el-button>
...
...
@@ -195,6 +196,8 @@ export default {
return
{
// 遮罩层
loading
:
true
,
// 导出遮罩层
exportLoading
:
false
,
// 选中数组
ids
:
[],
// 非多个禁用
...
...
@@ -309,10 +312,12 @@ export default {
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}).
then
(
function
()
{
}).
then
(()
=>
{
this
.
exportLoading
=
true
;
return
exportOperlog
(
queryParams
);
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
}
}
...
...
ruoyi-ui/src/views/system/config/index.vue
浏览文件 @
b4317032
...
...
@@ -88,6 +88,7 @@
plain
icon=
"el-icon-download"
size=
"mini"
:loading=
"exportLoading"
@
click=
"handleExport"
v-hasPermi=
"['system:config:export']"
>
导出
</el-button>
...
...
@@ -188,6 +189,8 @@ export default {
return
{
// 遮罩层
loading
:
true
,
// 导出遮罩层
exportLoading
:
false
,
// 选中数组
ids
:
[],
// 非单个禁用
...
...
@@ -344,10 +347,12 @@ export default {
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}).
then
(
function
()
{
}).
then
(()
=>
{
this
.
exportLoading
=
true
;
return
exportConfig
(
queryParams
);
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
},
/** 清理缓存按钮操作 */
...
...
ruoyi-ui/src/views/system/dict/data.vue
浏览文件 @
b4317032
...
...
@@ -75,6 +75,7 @@
plain
icon=
"el-icon-download"
size=
"mini"
:loading=
"exportLoading"
@
click=
"handleExport"
v-hasPermi=
"['system:dict:export']"
>
导出
</el-button>
...
...
@@ -169,6 +170,8 @@ export default {
return
{
// 遮罩层
loading
:
true
,
// 导出遮罩层
exportLoading
:
false
,
// 选中数组
ids
:
[],
// 非单个禁用
...
...
@@ -343,10 +346,12 @@ export default {
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}).
then
(
function
()
{
}).
then
(()
=>
{
this
.
exportLoading
=
true
;
return
exportData
(
queryParams
);
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
}
}
...
...
ruoyi-ui/src/views/system/dict/index.vue
浏览文件 @
b4317032
...
...
@@ -94,6 +94,7 @@
plain
icon=
"el-icon-download"
size=
"mini"
:loading=
"exportLoading"
@
click=
"handleExport"
v-hasPermi=
"['system:dict:export']"
>
导出
</el-button>
...
...
@@ -196,6 +197,8 @@ export default {
return
{
// 遮罩层
loading
:
true
,
// 导出遮罩层
exportLoading
:
false
,
// 选中数组
ids
:
[],
// 非单个禁用
...
...
@@ -348,10 +351,12 @@ export default {
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}).
then
(
function
()
{
}).
then
(()
=>
{
this
.
exportLoading
=
true
;
return
exportType
(
queryParams
);
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
},
/** 清理缓存按钮操作 */
...
...
ruoyi-ui/src/views/system/post/index.vue
浏览文件 @
b4317032
...
...
@@ -74,6 +74,7 @@
plain
icon=
"el-icon-download"
size=
"mini"
:loading=
"exportLoading"
@
click=
"handleExport"
v-hasPermi=
"['system:post:export']"
>
导出
</el-button>
...
...
@@ -163,6 +164,8 @@ export default {
return
{
// 遮罩层
loading
:
true
,
// 导出遮罩层
exportLoading
:
false
,
// 选中数组
ids
:
[],
// 非单个禁用
...
...
@@ -315,10 +318,12 @@ export default {
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}).
then
(
function
()
{
}).
then
(()
=>
{
this
.
exportLoading
=
true
;
return
exportPost
(
queryParams
);
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
}
}
...
...
ruoyi-ui/src/views/system/role/index.vue
浏览文件 @
b4317032
...
...
@@ -94,6 +94,7 @@
plain
icon=
"el-icon-download"
size=
"mini"
:loading=
"exportLoading"
@
click=
"handleExport"
v-hasPermi=
"['system:role:export']"
>
导出
</el-button>
...
...
@@ -258,6 +259,8 @@ export default {
return
{
// 遮罩层
loading
:
true
,
// 导出遮罩层
exportLoading
:
false
,
// 选中数组
ids
:
[],
// 非单个禁用
...
...
@@ -599,10 +602,12 @@ export default {
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}).
then
(
function
()
{
}).
then
(()
=>
{
this
.
exportLoading
=
true
;
return
exportRole
(
queryParams
);
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
}
}
...
...
ruoyi-ui/src/views/system/user/index.vue
浏览文件 @
b4317032
...
...
@@ -131,6 +131,7 @@
plain
icon=
"el-icon-download"
size=
"mini"
:loading=
"exportLoading"
@
click=
"handleExport"
v-hasPermi=
"['system:user:export']"
>
导出
</el-button>
...
...
@@ -356,6 +357,8 @@ export default {
return
{
// 遮罩层
loading
:
true
,
// 导出遮罩层
exportLoading
:
false
,
// 选中数组
ids
:
[],
// 非单个禁用
...
...
@@ -637,10 +640,12 @@ export default {
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}).
then
(
function
()
{
}).
then
(()
=>
{
this
.
exportLoading
=
true
;
return
exportUser
(
queryParams
);
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
},
/** 导入按钮操作 */
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论