Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
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
罗超
confucius
Commits
88461c09
Commit
88461c09
authored
Dec 21, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
705aea6e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
24 deletions
+14
-24
consult-form.vue
src/components/finance/consult-form.vue
+14
-24
No files found.
src/components/finance/consult-form.vue
View file @
88461c09
...
...
@@ -94,7 +94,7 @@
<q-card-section>
<div
class=
"text-h6"
>
{{
optionTitle
}}
</div>
</q-card-section>
<q-card-section
class=
"q-pt-none scroll"
style=
"max-height:
7
0vh"
>
<q-card-section
class=
"q-pt-none scroll"
style=
"max-height:
6
0vh"
>
<div
class=
"EmpLine_title"
>
<div
class=
"Emp_Line"
></div>
<div>
基本信息
</div>
...
...
@@ -150,9 +150,12 @@
class=
"col-6 q-pb-lg q-pr-lg"
:options=
"myEmployeeList"
label=
"适用人员"
option-label=
"EmployeeName"
option-value=
"Id"
emit-value
map-options
/>
</div>
<div
class=
"col-6"
>
<q-input
filled
stack-label
maxlength=
"20"
:dense=
"false"
v-model=
"objOption.MonthGoalMoney"
ref=
"MonthGoalMoney"
class=
"col-6 q-pb-lg"
label=
"月度达标金额"
@
keyup
.
native=
"checkPrice(objOption,'MonthGoalMoney')"
/>
</div>
</div>
</q-card-section>
<q-card-section
class=
"q-pt-none scroll"
style=
"max-height: 70vh"
>
<div
class=
"EmpLine_title"
>
<div
class=
"Emp_Line"
></div>
<div>
达标人头数配置
</div>
...
...
@@ -217,6 +220,7 @@
SaleIds
:
''
,
//销售人员
UseCourseIds
:
''
,
//使用课程编号
NotUseCourseIds
:
''
,
//不适用课程编号
MonthGoalMoney
:
''
,
// 月度达标金额
DetailList
:
[]
},
SaleIdsArray
:
[],
...
...
@@ -239,7 +243,7 @@
},
created
()
{
this
.
getEmployeeList
();
this
.
CourseList
();
this
.
get
CourseList
();
},
mounted
()
{
this
.
initObj
()
...
...
@@ -257,7 +261,7 @@
this
.
objOption
.
DetailList
.
push
(
obj
);
},
//获取课程
CourseList
()
{
get
CourseList
()
{
queryCourseDropdownList
({}).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
CourseList
=
res
.
Data
;
...
...
@@ -311,26 +315,11 @@
this
.
objOption
.
UseCourseIds
=
tempData
.
UseCourseIds
;
this
.
objOption
.
NotUseCourseIds
=
tempData
.
NotUseCourseIds
;
this
.
objOption
.
DetailList
=
tempData
.
DetailList
;
this
.
objOption
.
MonthGoalMoney
=
tempData
.
MonthGoalMoney
;
var
dataStrArr
=
tempData
.
SaleIds
.
split
(
","
)
var
dataStrArr2
=
tempData
.
UseCourseIds
.
split
(
","
)
var
dataStrArr3
=
tempData
.
NotUseCourseIds
.
split
(
","
)
if
(
dataStrArr
)
{
this
.
SaleIdsArray
=
dataStrArr
.
map
(
item
=>
{
return
+
item
;
});
}
if
(
dataStrArr2
)
{
this
.
UseCourseIdsArray
=
dataStrArr2
.
map
(
item
=>
{
return
+
item
;
});
}
if
(
dataStrArr3
)
{
this
.
NotUseCourseIdsArray
=
dataStrArr3
.
map
(
item
=>
{
return
+
item
;
});
}
this
.
SaleIdsArray
=
tempData
.
SaleIdList
;
this
.
UseCourseIdsArray
=
tempData
.
UseCourseIdList
;
this
.
NotUseCourseIdsArray
=
tempData
.
NotUseCourseIdList
;
}
})
this
.
optionTitle
=
"修改客户信息"
...
...
@@ -344,6 +333,7 @@
this
.
objOption
.
SaleIds
=
''
;
this
.
objOption
.
UseCourseIds
=
''
;
this
.
objOption
.
NotUseCourseIds
=
''
;
this
.
objOption
.
MonthGoalMoney
=
''
;
this
.
objOption
.
DetailList
=
[];
this
.
optionTitle
=
"新增人头奖金信息"
;
}
...
...
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