加入需求管理界面控件值储存功能。

This commit is contained in:
2023-02-06 16:43:40 +08:00
parent 9b57dbb772
commit 8e72f3bccd
10 changed files with 291 additions and 71 deletions

View File

@@ -2,8 +2,8 @@
* @Author: Kane
* @Date: 2023-01-04 11:39:04
* @LastEditors: Kane
* @LastEditTime: 2023-02-04 01:09:49
* @FilePath: \IT工具综合平台\src\layout\components\Header.vue
* @LastEditTime: 2023-02-06 10:17:22
* @FilePath: /IT/src/layout/components/Header.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
@@ -23,26 +23,16 @@
</template>
<script>
//import { ElMessage } from "element-plus";
import { ElMessageBox } from "element-plus";
import { Logout } from "../../utils/api/info/account";
export default {
name: "AppBanner",
data()
setup(props, context)
{
return {};
},
// created() {
// console.log("banner请求数据");
// },
mounted()
{
//console.log("banner请求数据");
},
methods: {
logout()
const logout = () =>
{
this.$confirm("是否退出系统?", "请确认", {
ElMessageBox.confirm("是否退出系统?", "请确认", {
confirmButtonText: "是",
cancelButtonText: "否",
type: "warning",
@@ -50,7 +40,9 @@ export default {
{
Logout();
});
},
};
return { logout, };
},
};
</script>