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
680820d2
Commit
680820d2
authored
Dec 24, 2020
by
Mac
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/confucius
parents
ddbac70f
947164bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
18 deletions
+23
-18
backinfo-form.vue
src/components/sale/backinfo-form.vue
+23
-18
No files found.
src/components/sale/backinfo-form.vue
View file @
680820d2
...
...
@@ -182,7 +182,7 @@
:rules=
"[val => !!val || '请填退课金额']"
/>
</span>
<span>
系统计算课时费为:
(课时)*30(课单价)=7200
元,请你最终确认退款金额
系统计算课时费为:
{{
(
classPriceObj
.
ClassHours
-
classPriceObj
.
FinishHours
)
}}
(课时)*
{{
classPriceObj
.
classHourPrice
}}
(课单价)=
{{
classPriceObj
.
backMoney
}}
元,请你最终确认退款金额
</span>
</
template
>
<div
v-if=
"showType==2"
>
...
...
@@ -294,7 +294,6 @@
}).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
classPriceObj
=
res
.
Data
;
console
.
log
(
" this.classPriceObj"
,
this
.
classPriceObj
);
}
});
},
...
...
@@ -304,24 +303,30 @@
},
//退课单据审核
saveBackClassInfo
()
{
console
.
log
(
"this.tempPeople"
,
this
.
tempPeople
)
;
var
str
=
""
;
if
(
this
.
tempPeople
&&
this
.
tempPeople
.
length
>
0
)
{
this
.
tempPeople
.
forEach
(
item
=>
{
str
+=
","
+
item
;
})
}
if
(
str
&&
str
!=
''
)
{
str
=
str
.
substr
(
1
);
}
// saveBackBillAduit(this.backBillMsg).then(res => {
// if (res.Code == 1) {
// this.$q.notify({
// icon: 'iconfont icon-chenggong',
// color: 'accent',
// timeout: 2000,
// message: '审核成功!',
// position: 'top'
// })
// //调用父页面成功方法
// this.$emit('success');
// this.$emit('close');
// }
// })
this
.
backBillMsg
.
RecipientIds
=
str
;
saveBackBillAduit
(
this
.
backBillMsg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
$q
.
notify
({
icon
:
'iconfont icon-chenggong'
,
color
:
'accent'
,
timeout
:
2000
,
message
:
'审核成功!'
,
position
:
'top'
})
//调用父页面成功方法
this
.
$emit
(
'success'
);
this
.
$emit
(
'close'
);
}
})
},
//获取员工列表
getEmployee
()
{
...
...
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