Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
CivManage
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ReactWeb5
CivManage
Commits
2e5407fb
Commit
2e5407fb
authored
Apr 20, 2023
by
皮倩雯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
排水户
parent
2599d191
Pipeline
#71227
waiting for manual action with stages
Changes
4
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
92 additions
and
25 deletions
+92
-25
font.css
src/assets/font/font.css
+67
-0
BookConfig.jsx
src/pages/bsmanager/base/standingBook/BookConfig.jsx
+25
-25
demo.jsx
src/pages/bsmanager/base/tablemanager/filedConfig/demo.jsx
+0
-0
demo.jsx
src/pages/userCenter/userManage/demo.jsx
+0
-0
No files found.
src/assets/font/font.css
0 → 100644
View file @
2e5407fb
/*font汉化*/
.ql-snow
.ql-picker.ql-font
.ql-picker-label
[
data-value
=
SimSun
]
::before
,
.ql-snow
.ql-picker.ql-font
.ql-picker-item
[
data-value
=
SimSun
]
::before
{
content
:
"宋体"
;
font-family
:
"SimSun"
;
}
.ql-snow
.ql-picker.ql-font
.ql-picker-label
[
data-value
=
SimHei
]
::before
,
.ql-snow
.ql-picker.ql-font
.ql-picker-item
[
data-value
=
SimHei
]
::before
{
content
:
"黑体"
;
font-family
:
"SimHei"
;
}
.ql-snow
.ql-picker.ql-font
.ql-picker-label
[
data-value
=
Microsoft-YaHei
]
::before
,
.ql-snow
.ql-picker.ql-font
.ql-picker-item
[
data-value
=
Microsoft-YaHei
]
::before
{
content
:
"微软雅黑"
;
font-family
:
"Microsoft YaHei"
;
}
.ql-snow
.ql-picker.ql-font
.ql-picker-label
[
data-value
=
KaiTi
]
::before
,
.ql-snow
.ql-picker.ql-font
.ql-picker-item
[
data-value
=
KaiTi
]
::before
{
content
:
"楷体"
;
font-family
:
"KaiTi"
;
}
.ql-snow
.ql-picker.ql-font
.ql-picker-label
[
data-value
=
FangSong
]
::before
,
.ql-snow
.ql-picker.ql-font
.ql-picker-item
[
data-value
=
FangSong
]
::before
{
content
:
"仿宋"
;
font-family
:
"FangSong"
;
}
.ql-snow
.ql-picker.ql-font
.ql-picker-label
[
data-value
=
Arial
]
::before
,
.ql-snow
.ql-picker.ql-font
.ql-picker-item
[
data-value
=
Arial
]
::before
{
content
:
"Arial"
;
font-family
:
"Arial"
;
}
.ql-snow
.ql-picker.ql-font
.ql-picker-label
[
data-value
=
Times-New-Roman
]
::before
,
.ql-snow
.ql-picker.ql-font
.ql-picker-item
[
data-value
=
Times-New-Roman
]
::before
{
content
:
"Times New Roman"
;
font-family
:
"Times New Roman"
;
}
.ql-snow
.ql-picker.ql-font
.ql-picker-label
[
data-value
=
sans-serif
]
::before
,
.ql-snow
.ql-picker.ql-font
.ql-picker-item
[
data-value
=
sans-serif
]
::before
{
content
:
"sans-serif"
;
font-family
:
"sans-serif"
;
}
.ql-font-SimSun
{
font-family
:
"SimSun"
;
}
.ql-font-SimHei
{
font-family
:
"SimHei"
;
}
.ql-font-Microsoft-YaHei
{
font-family
:
"Microsoft YaHei"
;
}
.ql-font-KaiTi
{
font-family
:
"KaiTi"
;
}
.ql-font-FangSong
{
font-family
:
"FangSong"
;
}
.ql-font-Arial
{
font-family
:
"Arial"
;
}
.ql-font-Times-New-Roman
{
font-family
:
"Times New Roman"
;
}
.ql-font-sans-serif
{
font-family
:
"sans-serif"
;
}
\ No newline at end of file
src/pages/bsmanager/base/standingBook/BookConfig.jsx
View file @
2e5407fb
...
...
@@ -16,7 +16,6 @@ import ChangeAdd from './changeAdd';
const
{
Option
}
=
Select
;
const
{
TextArea
}
=
Input
;
const
BookConfig
=
props
=>
{
const
{
callBackSubmit
,
type
,
...
...
@@ -243,7 +242,7 @@ const BookConfig = props => {
return
(
<
Drawer
title=
{
`${type === 'add' ? '台账配置' : '台账编辑'}`
}
width=
"50
0px"
width=
"57
0px"
visible=
{
visible
}
onClose=
{
onCancel
}
destroyOnClose
...
...
@@ -324,6 +323,7 @@ const BookConfig = props => {
</>
}
name=
"Fields"
rules=
{
[{
required
:
true
,
message
:
'请选择台账表'
}]
}
>
<
div
style=
{
{
display
:
'flex'
}
}
>
<
Form
.
Item
name=
"Fields"
style=
{
{
marginBottom
:
0
,
width
:
'100%'
}
}
>
...
...
@@ -342,28 +342,28 @@ const BookConfig = props => {
<
Item
label=
{
<>
{
form
.
getFieldValue
(
'outSearch
Fields'
)
>
0
?
(
<
Tooltip
title=
{
`外部字段${form.getFieldValue('outSearch
Fields')}个`
}
>
{
form
.
getFieldValue
(
'outAdd
Fields'
)
>
0
?
(
<
Tooltip
title=
{
`外部字段${form.getFieldValue('outAdd
Fields')}个`
}
>
<
InfoCircleOutlined
style=
{
{
color
:
'red'
,
margin
:
'2px 3px 0 3px'
}
}
/>
</
Tooltip
>
)
:
(
''
)
}
<
span
>
检索
字段
</
span
>
<
span
>
添加
字段
</
span
>
</>
}
name=
"Search
Fields"
name=
"Add
Fields"
>
<
div
style=
{
{
display
:
'flex'
}
}
>
<
Form
.
Item
name=
"Search
Fields"
style=
{
{
marginBottom
:
0
,
width
:
'100%'
}
}
>
<
TextArea
placeholder=
"前端列表检索
字段"
allowClear
/>
<
Form
.
Item
name=
"Add
Fields"
style=
{
{
marginBottom
:
0
,
width
:
'100%'
}
}
>
<
TextArea
placeholder=
"前端数据添加
字段"
allowClear
/>
</
Form
.
Item
>
<
Button
type=
"dashed"
style=
{
{
height
:
'54px'
,
width
:
'50px'
,
marginLeft
:
'10px'
}
}
icon=
{
<
PlusOutlined
/>
}
onClick=
{
()
=>
{
pickFiled
(
'Search
Fields'
);
pickFiled
(
'Add
Fields'
);
}
}
/>
</
div
>
...
...
@@ -371,28 +371,28 @@ const BookConfig = props => {
<
Item
label=
{
<>
{
form
.
getFieldValue
(
'outAdd
Fields'
)
>
0
?
(
<
Tooltip
title=
{
`外部字段${form.getFieldValue('outAdd
Fields')}个`
}
>
{
form
.
getFieldValue
(
'outEdit
Fields'
)
>
0
?
(
<
Tooltip
title=
{
`外部字段${form.getFieldValue('outEdit
Fields')}个`
}
>
<
InfoCircleOutlined
style=
{
{
color
:
'red'
,
margin
:
'2px 3px 0 3px'
}
}
/>
</
Tooltip
>
)
:
(
''
)
}
<
span
>
添加
字段
</
span
>
<
span
>
编辑
字段
</
span
>
</>
}
name=
"Add
Fields"
name=
"Edit
Fields"
>
<
div
style=
{
{
display
:
'flex'
}
}
>
<
Form
.
Item
name=
"Add
Fields"
style=
{
{
marginBottom
:
0
,
width
:
'100%'
}
}
>
<
TextArea
placeholder=
"前端数据添加
字段"
allowClear
/>
<
Form
.
Item
name=
"Edit
Fields"
style=
{
{
marginBottom
:
0
,
width
:
'100%'
}
}
>
<
TextArea
placeholder=
"前端可编辑
字段"
allowClear
/>
</
Form
.
Item
>
<
Button
type=
"dashed"
style=
{
{
height
:
'54px'
,
width
:
'50px'
,
marginLeft
:
'10px'
}
}
icon=
{
<
PlusOutlined
/>
}
onClick=
{
()
=>
{
pickFiled
(
'Add
Fields'
);
pickFiled
(
'Edit
Fields'
);
}
}
/>
</
div
>
...
...
@@ -400,28 +400,28 @@ const BookConfig = props => {
<
Item
label=
{
<>
{
form
.
getFieldValue
(
'outEdit
Fields'
)
>
0
?
(
<
Tooltip
title=
{
`外部字段${form.getFieldValue('outEdit
Fields')}个`
}
>
{
form
.
getFieldValue
(
'outSearch
Fields'
)
>
0
?
(
<
Tooltip
title=
{
`外部字段${form.getFieldValue('outSearch
Fields')}个`
}
>
<
InfoCircleOutlined
style=
{
{
color
:
'red'
,
margin
:
'2px 3px 0 3px'
}
}
/>
</
Tooltip
>
)
:
(
''
)
}
<
span
>
编辑
字段
</
span
>
<
span
>
检索
字段
</
span
>
</>
}
name=
"Edit
Fields"
name=
"Search
Fields"
>
<
div
style=
{
{
display
:
'flex'
}
}
>
<
Form
.
Item
name=
"Edit
Fields"
style=
{
{
marginBottom
:
0
,
width
:
'100%'
}
}
>
<
TextArea
placeholder=
"前端可编辑
字段"
allowClear
/>
<
Form
.
Item
name=
"Search
Fields"
style=
{
{
marginBottom
:
0
,
width
:
'100%'
}
}
>
<
TextArea
placeholder=
"前端列表检索
字段"
allowClear
/>
</
Form
.
Item
>
<
Button
type=
"dashed"
style=
{
{
height
:
'54px'
,
width
:
'50px'
,
marginLeft
:
'10px'
}
}
icon=
{
<
PlusOutlined
/>
}
onClick=
{
()
=>
{
pickFiled
(
'Edit
Fields'
);
pickFiled
(
'Search
Fields'
);
}
}
/>
</
div
>
...
...
@@ -436,7 +436,7 @@ const BookConfig = props => {
)
:
(
''
)
}
<
span
>
前端
字段
</
span
>
<
span
>
显示列
字段
</
span
>
</>
}
name=
"WebFields"
...
...
@@ -465,7 +465,7 @@ const BookConfig = props => {
)
:
(
''
)
}
<
span
>
手持
字段
</
span
>
<
span
>
手持显示列
字段
</
span
>
</>
}
name=
"MobileFields"
...
...
src/pages/bsmanager/base/tablemanager/filedConfig/demo.jsx
0 → 100644
View file @
2e5407fb
src/pages/userCenter/userManage/demo.jsx
0 → 100644
View file @
2e5407fb
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment