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
19924cd1
提交
19924cd1
authored
6月 03, 2021
作者:
RuoYi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复关闭confirm提示框控制台报错问题
上级
85470a15
隐藏空白字符变更
内嵌
并排
正在显示
19 个修改的文件
包含
36 行增加
和
36 行删除
+36
-36
index-tree.vue.vm
ruoyi-generator/src/main/resources/vm/vue/index-tree.vue.vm
+1
-1
index.vue.vm
ruoyi-generator/src/main/resources/vm/vue/index.vue.vm
+2
-2
Navbar.vue
ruoyi-ui/src/layout/components/Navbar.vue
+1
-1
request.js
ruoyi-ui/src/utils/request.js
+1
-1
index.vue
ruoyi-ui/src/views/monitor/job/index.vue
+3
-3
log.vue
ruoyi-ui/src/views/monitor/job/log.vue
+3
-3
index.vue
ruoyi-ui/src/views/monitor/logininfor/index.vue
+3
-3
index.vue
ruoyi-ui/src/views/monitor/online/index.vue
+1
-1
index.vue
ruoyi-ui/src/views/monitor/operlog/index.vue
+3
-3
index.vue
ruoyi-ui/src/views/system/config/index.vue
+2
-2
index.vue
ruoyi-ui/src/views/system/dept/index.vue
+1
-1
data.vue
ruoyi-ui/src/views/system/dict/data.vue
+2
-2
index.vue
ruoyi-ui/src/views/system/dict/index.vue
+2
-2
index.vue
ruoyi-ui/src/views/system/menu/index.vue
+2
-2
index.vue
ruoyi-ui/src/views/system/notice/index.vue
+1
-1
index.vue
ruoyi-ui/src/views/system/post/index.vue
+2
-2
index.vue
ruoyi-ui/src/views/system/role/index.vue
+2
-2
index.vue
ruoyi-ui/src/views/system/user/index.vue
+2
-2
index.vue
ruoyi-ui/src/views/tool/gen/index.vue
+2
-2
没有找到文件。
ruoyi-generator/src/main/resources/vm/vue/index-tree.vue.vm
浏览文件 @
19924cd1
...
...
@@ -532,7 +532,7 @@ export default {
}).then(() => {
this.getList();
this.msgSuccess("删除成功");
})
})
.catch(() => {});
}
}
};
...
...
ruoyi-generator/src/main/resources/vm/vue/index.vue.vm
浏览文件 @
19924cd1
...
...
@@ -590,7 +590,7 @@ export default {
}).then(() => {
this.getList();
this.msgSuccess("删除成功");
})
})
.catch(() => {});
},
#if($table.sub)
/** ${subTable.functionName}序号 */
...
...
@@ -639,7 +639,7 @@ export default {
}).then(response => {
this.download(response.msg);
this.exportLoading = false;
})
})
.catch(() => {});
}
}
};
...
...
ruoyi-ui/src/layout/components/Navbar.vue
浏览文件 @
19924cd1
...
...
@@ -104,7 +104,7 @@ export default {
this
.
$store
.
dispatch
(
'LogOut'
).
then
(()
=>
{
location
.
href
=
'/index'
;
})
})
})
.
catch
(()
=>
{});
}
}
}
...
...
ruoyi-ui/src/utils/request.js
浏览文件 @
19924cd1
...
...
@@ -63,7 +63,7 @@ service.interceptors.response.use(res => {
store
.
dispatch
(
'LogOut'
).
then
(()
=>
{
location
.
href
=
'/index'
;
})
})
})
.
catch
(()
=>
{});
}
else
if
(
code
===
500
)
{
Message
({
message
:
msg
,
...
...
ruoyi-ui/src/views/monitor/job/index.vue
浏览文件 @
19924cd1
...
...
@@ -410,7 +410,7 @@ export default {
return
runJob
(
row
.
jobId
,
row
.
jobGroup
);
}).
then
(()
=>
{
this
.
msgSuccess
(
"执行成功"
);
})
})
.
catch
(()
=>
{});
},
/** 任务详细信息 */
handleView
(
row
)
{
...
...
@@ -471,7 +471,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
})
})
.
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
...
...
@@ -486,7 +486,7 @@ export default {
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
})
.
catch
(()
=>
{});
}
}
};
...
...
ruoyi-ui/src/views/monitor/job/log.vue
浏览文件 @
19924cd1
...
...
@@ -269,7 +269,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
})
})
.
catch
(()
=>
{});
},
/** 清空按钮操作 */
handleClean
()
{
...
...
@@ -282,7 +282,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"清空成功"
);
})
})
.
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
...
...
@@ -297,7 +297,7 @@ export default {
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
})
.
catch
(()
=>
{});
}
}
};
...
...
ruoyi-ui/src/views/monitor/logininfor/index.vue
浏览文件 @
19924cd1
...
...
@@ -202,7 +202,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
})
})
.
catch
(()
=>
{});
},
/** 清空按钮操作 */
handleClean
()
{
...
...
@@ -215,7 +215,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"清空成功"
);
})
})
.
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
...
...
@@ -230,7 +230,7 @@ export default {
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
})
.
catch
(()
=>
{});
}
}
};
...
...
ruoyi-ui/src/views/monitor/online/index.vue
浏览文件 @
19924cd1
...
...
@@ -120,7 +120,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"强退成功"
);
})
})
.
catch
(()
=>
{});
}
}
};
...
...
ruoyi-ui/src/views/monitor/operlog/index.vue
浏览文件 @
19924cd1
...
...
@@ -290,7 +290,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
})
})
.
catch
(()
=>
{});
},
/** 清空按钮操作 */
handleClean
()
{
...
...
@@ -303,7 +303,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"清空成功"
);
})
})
.
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
...
...
@@ -318,7 +318,7 @@ export default {
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
})
.
catch
(()
=>
{});
}
}
};
...
...
ruoyi-ui/src/views/system/config/index.vue
浏览文件 @
19924cd1
...
...
@@ -338,7 +338,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
})
})
.
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
...
...
@@ -353,7 +353,7 @@ export default {
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
})
.
catch
(()
=>
{});
},
/** 刷新缓存按钮操作 */
handleRefreshCache
()
{
...
...
ruoyi-ui/src/views/system/dept/index.vue
浏览文件 @
19924cd1
...
...
@@ -310,7 +310,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
})
})
.
catch
(()
=>
{});
}
}
};
...
...
ruoyi-ui/src/views/system/dict/data.vue
浏览文件 @
19924cd1
...
...
@@ -337,7 +337,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
})
})
.
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
...
...
@@ -352,7 +352,7 @@ export default {
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
})
.
catch
(()
=>
{});
}
}
};
...
...
ruoyi-ui/src/views/system/dict/index.vue
浏览文件 @
19924cd1
...
...
@@ -342,7 +342,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
})
})
.
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
...
...
@@ -357,7 +357,7 @@ export default {
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
})
.
catch
(()
=>
{});
},
/** 刷新缓存按钮操作 */
handleRefreshCache
()
{
...
...
ruoyi-ui/src/views/system/menu/index.vue
浏览文件 @
19924cd1
...
...
@@ -163,7 +163,7 @@
</el-col>
<el-col
:span=
"12"
>
<el-form-item
v-if=
"form.menuType != 'M'"
label=
"权限标识"
>
<el-input
v-model=
"form.perms"
placeholder=
"请权限标识"
maxlength=
"100"
/>
<el-input
v-model=
"form.perms"
placeholder=
"请
输入
权限标识"
maxlength=
"100"
/>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
...
...
@@ -393,7 +393,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
})
})
.
catch
(()
=>
{});
}
}
};
...
...
ruoyi-ui/src/views/system/notice/index.vue
浏览文件 @
19924cd1
...
...
@@ -336,7 +336,7 @@ export default {
}
).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
}
)
}
)
.
catch
(()
=>
{
}
);
}
}
}
;
...
...
ruoyi-ui/src/views/system/post/index.vue
浏览文件 @
19924cd1
...
...
@@ -309,7 +309,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
})
})
.
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
...
...
@@ -324,7 +324,7 @@ export default {
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
})
.
catch
(()
=>
{});
}
}
};
...
...
ruoyi-ui/src/views/system/role/index.vue
浏览文件 @
19924cd1
...
...
@@ -593,7 +593,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
})
})
.
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
...
...
@@ -608,7 +608,7 @@ export default {
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
})
.
catch
(()
=>
{});
}
}
};
...
...
ruoyi-ui/src/views/system/user/index.vue
浏览文件 @
19924cd1
...
...
@@ -631,7 +631,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
})
})
.
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
...
...
@@ -646,7 +646,7 @@ export default {
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
})
})
.
catch
(()
=>
{});
},
/** 导入按钮操作 */
handleImport
()
{
...
...
ruoyi-ui/src/views/tool/gen/index.vue
浏览文件 @
19924cd1
...
...
@@ -283,7 +283,7 @@ export default {
return
synchDb
(
tableName
);
}).
then
(()
=>
{
this
.
msgSuccess
(
"同步成功"
);
})
})
.
catch
(()
=>
{});
},
/** 打开导入表弹窗 */
openImportTable
()
{
...
...
@@ -333,7 +333,7 @@ export default {
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
})
})
.
catch
(()
=>
{});
}
}
};
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论