Compare commits

..

No commits in common. "8dd5f27d47a9b518c81019588182652e13908d73" and "46cfdc28a6e730a0c0a82edac0c66ecb3558b4a5" have entirely different histories.

7 changed files with 27 additions and 28 deletions

View File

@ -37,5 +37,14 @@ class CpicximStuff
}
};
class A
{
public static _x: string = "A";
}
export { CpicximStuff };
class B extends A
{
}
export { CpicximStuff, A, B };

View File

@ -1,13 +1,3 @@
/*
* @Author: Kane
* @Date: 2023-02-21 17:39:01
* @LastEditors: Kane
* @LastEditTime: 2023-02-22 14:08:48
* @FilePath: //src/DataType/Template.ts
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
interface Point
{
@ -15,9 +5,9 @@ interface Point
y: number;
}
function radius<TPoint>(x: TPoint): TPoint
function radius<TPoint>(): TPoint
{
const result: TPoint = x;
result: TPoint;
return result;
}

View File

@ -16,7 +16,7 @@
"strictPropertyInitialization":true,
"sourceMap": true,
"allowJs": true,
"checkJs": true,
"checkJs": false,
"moduleResolution": "node",
"module": "CommonJS",
"target": "ES2015"

View File

@ -2,8 +2,8 @@
* @Author: Kane
* @Date: 2023-01-06 20:33:57
* @LastEditors: Kane
* @LastEditTime: 2023-02-22 17:10:18
* @FilePath: /IT/src/components/svg/SvgIcon.vue
* @LastEditTime: 2023-01-07 17:10:07
* @FilePath: \admin_system\src\components\svg\SvgIcon.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
@ -18,10 +18,10 @@ export default {
data()
{
return {
iconName: "",
iconName: ""
};
},
props: ["icon",],
props: ["icon"],
created()
{
console.log("svg");
@ -31,4 +31,6 @@ export default {
};
</script>
<style scoped></style>
<style scoped>
</style>

View File

@ -2,7 +2,7 @@
* @Author: Kane
* @Date: 2023-01-04 11:39:04
* @LastEditors: Kane
* @LastEditTime: 2023-02-22 17:10:54
* @LastEditTime: 2023-02-06 10:17:22
* @FilePath: /IT/src/layout/components/Header.vue
* @Description:
*
@ -28,7 +28,7 @@ import { Logout } from "../../utils/api/info/account";
export default {
name: "AppBanner",
setup()
setup(props, context)
{
const logout = () =>
{

View File

@ -2,8 +2,8 @@
* @Author: Kane
* @Date: 2022-12-22 17:16:53
* @LastEditors: Kane
* @LastEditTime: 2023-02-22 14:49:58
* @FilePath: /IT/src/utils/api/common.js
* @LastEditTime: 2022-12-22 20:48:03
* @FilePath: \admin_system\src\utils\api\common.js
* @Description: 通用请求
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
@ -15,8 +15,6 @@ const URL_GET_VALIDATE_CODE = "";
/**
* 获取验证码
* @param {*} data 承载数据的对象
* @returns Promise对象
*/
export function GetValidate(data)
{

View File

@ -2,7 +2,7 @@
* @Author: Kane
* @Date: 2023-02-04 15:48:00
* @LastEditors: Kane
* @LastEditTime: 2023-02-22 17:08:26
* @LastEditTime: 2023-02-06 00:28:23
* @FilePath: /IT/src/utils/api/requirement/requirement.js
* @Description:
*
@ -16,7 +16,7 @@ import router from "@/router/index";
* 从后台获取需求管理页面所需数据存放到vuex中
* @param ui 保存ui标志位的对象
* @param store 保存在vuex中需求相关的对象
* @param {string} error_page_name 提示错误页面的路径
* @param error_page_name 提示错误页面的路径
*****************************************************/
function query_requirement_ui(requirement_store, error_page_name)
{