cfel-base-components 2.2.3 → 2.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ {
2
+ "typescript.tsdk": "node_modules/typescript/lib"
3
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cfel-base-components",
3
- "version": "2.2.3",
3
+ "version": "2.2.5",
4
4
  "description": "cfel-base-components",
5
5
  "main": "/src/index.tsx",
6
6
  "types": "src/index.d.ts",
@@ -0,0 +1,10 @@
1
+ // @ts-nocheck
2
+ // This file is generated by Umi automatically
3
+ // DO NOT CHANGE IT MANUALLY!
4
+ import React from 'react';
5
+ import { HelmetProvider } from '/Users/wujingang/Desktop/workspace/base-components/node_modules/@umijs/renderer-react';
6
+ import { context } from './helmetContext';
7
+
8
+ export const innerProvider = (container) => {
9
+ return React.createElement(HelmetProvider, { context }, container);
10
+ }
@@ -0,0 +1,4 @@
1
+ // @ts-nocheck
2
+ // This file is generated by Umi automatically
3
+ // DO NOT CHANGE IT MANUALLY!
4
+ export const context = {};
@@ -5,7 +5,7 @@
5
5
  font-size: 12px;
6
6
  line-height: 20px;
7
7
  padding: 4px 0 8px;
8
- letter-spacing: .8px;
8
+ letter-spacing: .6px;
9
9
 
10
10
  .company-name {
11
11
  margin-right: 12px;
@@ -11,7 +11,7 @@ export default function CopyRight({
11
11
  return (
12
12
  <div className={cx("copy-right")}>
13
13
  <span className={cx("company-name")}>
14
- © {new Date().getFullYear() || ''} 骋风而来
14
+ © {new Date().getFullYear() || ''} 杭州骋风而来数字科技有限公司
15
15
  </span>
16
16
  <span className={cx("icp")}>
17
17
  <a href="https://beian.miit.gov.cn/" target="_blank">浙ICP备2023015664号-1</a>
@@ -49,7 +49,8 @@ body {
49
49
  left: 36px;
50
50
  height: 48px;
51
51
  top: 0;
52
- width: 255px;
52
+ min-width: 255px;
53
+ width: auto;
53
54
  position: absolute;
54
55
  z-index: 1;
55
56
  display: inline-flex;
@@ -4,7 +4,7 @@ import { SwapOutlined, FormOutlined } from '@ant-design/icons';
4
4
  import "./index.scss"
5
5
 
6
6
  export interface LiosLayoutlProps {
7
- appName?: string;
7
+ appName?: any;
8
8
  productCode: string;
9
9
  children: any;
10
10
  menuList: any;
@@ -113,8 +113,7 @@ export default function Account({
113
113
  </a>
114
114
  <a onClick={() => {
115
115
  Modal.confirm({
116
- title: "确认删除吗?",
117
- content: '',
116
+ title: `确认删除${rowdata?.name}吗?`,
118
117
  onOk: () => {
119
118
  DeleteFunc(rowdata?.id)
120
119
  }
@@ -90,7 +90,7 @@ export default function Role({
90
90
  rowdata.source !== "system" &&
91
91
  <a onClick={() => {
92
92
  Modal.confirm({
93
- title: "确认删除吗?",
93
+ title: `确认删除${rowdata?.roleName}吗?`,
94
94
  content: '',
95
95
  onOk: () => {
96
96
  DeleteFunc(rowdata?.roleCode)