Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
48f06aba
Commit
48f06aba
authored
Jun 26, 2025
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
c7e0f204
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
3 deletions
+15
-3
TicketBatchFInance.vue
...components/FinancialModule/HandFee/TicketBatchFInance.vue
+15
-3
No files found.
src/components/FinancialModule/HandFee/TicketBatchFInance.vue
View file @
48f06aba
...
...
@@ -94,7 +94,7 @@
<
/el-select
>
<
/el-form-item
>
<
/el-col
>
<
el
-
col
:
span
=
"
3
"
>
<
el
-
col
:
span
=
"
4
"
>
<
el
-
form
-
item
label
=
"预设OP"
>
<
el
-
select
class
=
"w150"
filterable
clearable
v
-
model
=
"msg.PlatformAccountId"
:
placeholder
=
"$t('pub.pleaseSel')"
>
<
el
-
option
v
-
for
=
"item in EmployeeList"
:
label
=
"item.EmName"
:
value
=
"item.EmployeeId"
:
key
=
"item.EmployeeId"
>
...
...
@@ -102,6 +102,11 @@
<
/el-select
>
<
/el-form-item
>
<
/el-col
>
<
el
-
col
:
span
=
"3"
>
<
el
-
form
-
item
label
=
"预设一定金额"
>
<
el
-
input
v
-
model
=
"Money"
@
change
=
"updateMoney()"
><
/el-input
>
<
/el-form-item
>
<
/el-col
>
<
/el-row
>
<
/el-form
>
<
ul
class
=
"clearfix"
>
...
...
@@ -238,7 +243,7 @@
loading
:
false
,
isUploadAttachment
:
false
,
imgLength
:
0
,
Money
:
0
,
showProgress
:
false
,
progressNum
:
1
}
...
...
@@ -300,6 +305,7 @@
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
DataList
=
res
.
data
.
data
;
this
.
updateMoney
();
}
}
,
err
=>
{
...
...
@@ -445,7 +451,13 @@
this
.
$message
.
success
(
"制单成功!"
);
}
}
,
updateMoney
(){
if
(
this
.
Money
>
0
&&
this
.
DataList
&&
this
.
DataList
.
length
>
0
){
this
.
DataList
.
forEach
(
x
=>
{
x
.
Money
=
this
.
Money
;
}
)
}
}
}
}
...
...
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