Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
saas-manage
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chehuidong
saas-manage
Commits
5b7d99c8
Commit
5b7d99c8
authored
Jul 17, 2025
by
wusiyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 操作符管理添加操作日志
parent
060c243e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
src/common/components/base/CustomForm.vue
+1
-0
src/views/system/operationFee.vue
+10
-2
No files found.
src/common/components/base/CustomForm.vue
View file @
5b7d99c8
...
...
@@ -145,6 +145,7 @@ export default {
clearable
step
=
{
item
.
step
||
1
}
min
=
{
item
.
min
??
-
Infinity
}
precision
=
{
item
.
precision
??
0
}
controls
-
position
=
{
item
.
position
||
'right'
}
style
=
"width: 100%;"
><
/el-input-number
>
)}
...
...
src/views/system/operationFee.vue
View file @
5b7d99c8
...
...
@@ -63,8 +63,11 @@
:visible
.
sync=
"noteVisible"
width=
"500px"
>
<ul
style=
"color: #333; font-size: 12px; height: 400px; overflow: auto"
>
<li
v-for=
"(item, index) in logList"
:key=
"index"
style=
"height: 30px"
>
(
{{
index
+
1
}}
)、
{{
item
.
userName
+
':'
+
item
.
msg
}}
<li
v-for=
"(item, index) in logList"
:key=
"index"
style=
"margin-bottom: 10px"
>
{{
item
.
createTime
+
':'
+
item
.
msg
}}
</li>
</ul>
</el-dialog>
...
...
@@ -87,6 +90,7 @@ export default {
sourceData
:
[],
formData
:
{},
queryFormData
:
{},
logList
:
[],
queryformConfig
:
[
{
prop
:
'name'
,
...
...
@@ -142,6 +146,7 @@ export default {
name
:
'固定费用'
,
step
:
0.01
,
min
:
0
,
precision
:
2
,
renderRules
:
(
item
)
=>
[
{
required
:
true
,
...
...
@@ -180,6 +185,7 @@ export default {
name
:
'起收费用'
,
step
:
0.01
,
min
:
0
,
precision
:
2
,
renderRules
:
(
item
)
=>
[
{
required
:
true
,
...
...
@@ -195,6 +201,7 @@ export default {
name
:
'每件加收'
,
step
:
0.01
,
min
:
0
,
precision
:
2
,
renderRules
:
(
item
)
=>
[
{
required
:
true
,
...
...
@@ -210,6 +217,7 @@ export default {
name
:
'上限费用 '
,
step
:
0.01
,
min
:
0
,
precision
:
2
,
renderRules
:
(
formData
)
=>
[
{
required
:
true
,
...
...
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