尝试解决一些ts的类型问题。

This commit is contained in:
Kane 2023-03-27 00:30:33 +08:00
parent 5325a283a5
commit 892e09de77
6 changed files with 67 additions and 7 deletions

View File

@ -78,14 +78,25 @@
// @ts-expect-error // @ts-expect-error
import { hasOnlyChild } from "@/router/index.js"; import { hasOnlyChild } from "@/router/index.js";
import { useRoute, useRouter } from "vue-router"; import { useRoute, useRouter } from "vue-router";
// import { useRoute, useRouter, type RouteRecordNormalized, type _RouteRecordBase } from "vue-router";
import { computed } from "vue"; import { computed } from "vue";
// declare interface SideBarRouteRecordNormalized extends RouteRecordNormalized
// {
// hidden?: boolean;
// }
// declare interface SideBarRouteRecordSingleView extends _RouteRecordBase
// {
// }
export default { export default {
name: "LayoutAside", name: "LayoutAside",
setup() setup()
{ {
const router = useRouter(); const router = useRouter();
const routes = router.getRoutes(); const routes = router.getRoutes();// as SideBarRouteRecordNormalized[];
const currentPath = computed(() => const currentPath = computed(() =>
{ {

View File

@ -0,0 +1,20 @@
/*
* @Author: Kane
* @Date: 2023-03-26 23:30:16
* @LastEditors: Kane
* @FilePath: /task_schedule/src/router/index.d.ts
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
import { type RouteRecordNormalized, type RouteRecordRaw } from "vue-router";
export declare interface SideBarRouteRecordNormalized extends RouteRecordNormalized
{
hidden?: boolean;
}
export declare let route: SideBarRouteRecordNormalized;
// export declare interface SideBarRouteRecordRaw extends RouteRecordRaw
// {}

View File

@ -38,8 +38,7 @@
"src/**/*.tsx", "src/**/*.tsx",
"src/**/*.vue", "src/**/*.vue",
"*.d.ts", "*.d.ts",
"src/router/index.ts", "src/router/index.d.ts",
"src/router/index.ts",
], ],
"exclude": [ "exclude": [
"./node_modules", "./node_modules",

View File

@ -0,0 +1,29 @@
/*
* @Author: Kane
* @Date: 2023-03-26 21:08:27
* @LastEditors: Kane
* @FilePath: /desktop_archievement_backend/.prettierrc.js
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
module.exports = {
printWidth: 80, //单行长度
tabWidth: 4, //缩进长度
useTabs: false, //使用空格代替tab缩进
semi: true, //句末使用分号
singleQuote: false, //使用单引号
quoteProps: 'as-needed', //仅在必需时为对象的key添加引号
jsxSingleQuote: true, // jsx中使用单引号
trailingComma: 'all', //多行时尽可能打印尾随逗号
bracketSpacing: true, //在对象前后添加空格-eg: { foo: bar }
jsxBracketSameLine: true, //多属性html标签的>’折行放置
arrowParens: 'always', //单参数箭头函数参数周围使用圆括号-eg: (x) => x
requirePragma: false, //无需顶部注释即可格式化
insertPragma: false, //在已被preitter格式化的文件顶部加上标注
proseWrap: 'preserve', //不知道怎么翻译
htmlWhitespaceSensitivity: 'ignore', //对HTML全局空白不敏感
vueIndentScriptAndStyle: false, //不对vue中的script及style标签缩进
endOfLine: 'lf', //结束行形式
embeddedLanguageFormatting: 'auto', //对引用代码进行格式化
};

View File

@ -2,20 +2,20 @@
* @Author: Kane * @Author: Kane
* @Date: 2022-12-15 14:08:28 * @Date: 2022-12-15 14:08:28
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2023-02-28 23:24:07 * @LastEditTime: 2023-03-26 22:26:21
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/utils/account/CpicXIMStaffInfo.java * @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/utils/account/CpicXIMStaffInfo.java
* @Description: 产险厦门分公司员工信息对象 * @Description: 产险厦门分公司员工信息对象
* *
* Copyright (c) ${2022} by Kane, All Rights Reserved. * Copyright (c) ${2022} by Kane, All Rights Reserved.
*/ */
package com.cpic.xim.utils.account; package com.cpic.xim.utils.account;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.sql.Connection; import java.sql.Connection;
import java.sql.DriverManager; import java.sql.DriverManager;
import java.sql.PreparedStatement; import java.sql.PreparedStatement;
import java.sql.ResultSet; import java.sql.ResultSet;
import java.sql.SQLException; import java.sql.SQLException;
import com.fasterxml.jackson.annotation.JsonProperty;
/***************************************************** /*****************************************************
* 厦门太保员工信息 * 厦门太保员工信息
@ -23,6 +23,7 @@ import com.fasterxml.jackson.annotation.JsonProperty;
*****************************************************/ *****************************************************/
public class CpicXIMStaffInfo public class CpicXIMStaffInfo
{ {
/***************************************************** /*****************************************************
* 查询员工信息 * 查询员工信息
* @param uidOrCode p13账号或p09账号 * @param uidOrCode p13账号或p09账号

Binary file not shown.