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
a9f448ad
Commit
a9f448ad
authored
Apr 19, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Plain Diff
页面修改
parents
11098f75
af7bf440
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
42 deletions
+20
-42
eduinfo-form.vue
src/components/sale/eduinfo-form.vue
+18
-41
orderlist.vue
src/components/sale/orderlist.vue
+1
-1
GetWOrkTransferPageLis.vue
...ges/financial/financalDocument/GetWOrkTransferPageLis.vue
+1
-0
No files found.
src/components/sale/eduinfo-form.vue
View file @
a9f448ad
...
...
@@ -304,15 +304,7 @@
</q-input>
</td>
<td>
<q-input
filled
disable
class=
"col-6 q-pb-lg"
mask=
"date"
>
<
template
v-slot:append
>
<q-icon
name=
"event"
class=
"cursor-pointer"
>
<q-popup-proxy
ref=
"qDateProxy3"
transition-show=
"scale"
transition-hide=
"scale"
>
<q-date
@
input=
"() => $refs.qDateProxy3.hide()"
/>
</q-popup-proxy>
</q-icon>
</
template
>
</q-input>
</td>
</tr>
</table>
...
...
@@ -353,8 +345,8 @@
persistent
:
true
,
objOption
:
{
Id
:
0
,
OrderId
:
0
,
GuestId
:
0
,
OrderId
:
0
,
GuestId
:
0
,
CType
:
1
,
//类型1培训 2留学
StudentName
:
''
,
//学生姓名
StuBirth
:
''
,
//学生生日
...
...
@@ -407,29 +399,27 @@
fourthTotal
:
0
,
// 培训课件费总计
fifthTotal
:
0
,
// 折让价格
sixthTotal
:
0
,
// 费用总计
firstFYXJ
:
0
,
secondFYXJ
:
0
,
thirdFYXJ
:
0
,
fyxjTotal
:
0
,
saveLoading
:
false
,
StudentMsg
:{
OrderId
:
0
,
GuestId
:
0
StudentMsg
:
{
OrderId
:
0
,
GuestId
:
0
}
}
},
created
()
{},
mounted
()
{
if
(
this
.
setingObj
)
{
if
(
this
.
setingObj
)
{
this
.
StudentMsg
.
OrderId
=
this
.
setingObj
.
OrderId
;
this
.
StudentMsg
.
GuestId
=
this
.
setingObj
.
GuestId
;
this
.
objOption
.
OrderId
=
this
.
setingObj
.
OrderId
;
this
.
objOption
.
GuestId
=
this
.
setingObj
.
GuestId
;
if
(
this
.
setingObj
.
ContractId
>
0
)
{
if
(
this
.
setingObj
.
ContractId
>
0
)
{
this
.
getInfoList
();
}
else
{
}
else
{
this
.
getStudentContract
();
}
}
...
...
@@ -463,7 +453,6 @@
}
})
},
//计算培训课件费总价
getTotalClassFee
()
{
let
arr
=
[
this
.
objOption
.
FirstClassFee
,
this
.
objOption
.
SecondClassFee
,
this
.
objOption
.
ThirdClassFee
];
...
...
@@ -474,7 +463,6 @@
}
})
},
//计算折让价格总价
getTotalDiscountMoney
()
{
let
arr
=
[
this
.
objOption
.
FirstDiscountMoney
,
this
.
objOption
.
SecondDiscountMoney
,
this
.
objOption
...
...
@@ -487,8 +475,6 @@
}
})
},
//计算第一列费用小计
getFirstFYXJ
()
{
let
arr
=
[
this
.
objOption
.
FirstCourseFee
,
this
.
objOption
.
FirstBookFee
,
this
.
objOption
.
FirstClassFee
];
...
...
@@ -500,7 +486,6 @@
})
this
.
getTotalFYXJ
();
},
//计算第二列费用小计
getSecondFYXJ
()
{
let
arr
=
[
this
.
objOption
.
SecondCourseFee
,
this
.
objOption
.
SecondBookFee
,
this
.
objOption
.
SecondClassFee
];
...
...
@@ -512,7 +497,6 @@
})
this
.
getTotalFYXJ
();
},
//计算第三列费用小计
getthirdFYXJ
()
{
let
arr
=
[
this
.
objOption
.
ThirdCourseFee
,
this
.
objOption
.
ThirdBookFee
,
this
.
objOption
.
ThirdClassFee
];
...
...
@@ -524,8 +508,6 @@
})
this
.
getTotalFYXJ
();
},
//获取费用小计总计
getTotalFYXJ
()
{
let
arr
=
[
this
.
firstFYXJ
,
this
.
secondFYXJ
,
this
.
thirdFYXJ
];
...
...
@@ -536,7 +518,6 @@
}
})
},
//计算第一列费用总计
getfirstFeiyongTotal
()
{
if
(
this
.
firstFYXJ
!=
''
&&
this
.
objOption
.
FirstDiscountMoney
!=
''
)
{
...
...
@@ -545,7 +526,6 @@
}
this
.
getTotal
();
},
//计算第二列费用总计
getsecondFeiyongTotal
()
{
if
(
this
.
secondFYXJ
!=
''
&&
this
.
objOption
.
SecondDiscountMoney
!=
''
)
{
...
...
@@ -562,7 +542,6 @@
}
this
.
getTotal
();
},
//获取费用总计合计
getTotal
()
{
let
arr
=
[
this
.
objOption
.
FirstMoney
,
this
.
objOption
.
SecondMoney
,
this
.
objOption
.
ThirdMoney
]
...
...
@@ -573,9 +552,9 @@
}
})
},
//保存合同
saveContract
()
{
this
.
objOption
.
Money
=
this
.
sixthTotal
;
SetEducationContractInfo
(
this
.
objOption
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
$q
.
notify
({
...
...
@@ -595,7 +574,7 @@
this
.
persistent
=
false
},
//获取学生信息
getStudentContract
(){
getStudentContract
()
{
GetStudentInfo
(
this
.
StudentMsg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
var
tempData
=
res
.
Data
;
...
...
@@ -633,19 +612,19 @@
})
},
//获取详情
getInfoList
(){
getInfoList
()
{
let
msg
=
{
ContractId
:
this
.
setingObj
.
ContractId
ContractId
:
this
.
setingObj
.
ContractId
}
GetEducationContractInfo
(
msg
).
then
(
res
=>
{
console
.
log
(
res
,
'详情数据'
);
if
(
res
.
Code
==
1
)
{
var
tempData
=
res
.
Data
;
this
.
objOption
.
Id
=
tempData
.
Id
;
this
.
objOption
.
StudentName
=
tempData
.
StudentName
;
this
.
objOption
.
StuTel
=
tempData
.
StuTel
;
this
.
objOption
.
StuSex
=
tempData
.
StuSex
;
this
.
objOption
.
StuEmail
=
tempData
.
StuEmail
;
this
.
objOption
.
StuBirth
=
tempData
.
StuBirth
;
this
.
objOption
.
StuBirth
=
tempData
.
StuBirth
Str
;
this
.
objOption
.
StuAddress
=
tempData
.
StuAddress
;
this
.
objOption
.
StartLevel
=
tempData
.
StartLevel
;
this
.
objOption
.
SchoolPrincipal
=
tempData
.
SchoolPrincipal
;
...
...
@@ -653,7 +632,7 @@
this
.
objOption
.
Payee
=
tempData
.
Payee
;
this
.
objOption
.
Money
=
tempData
.
Money
;
this
.
objOption
.
FirstMoney
=
tempData
.
FirstMoney
;
this
.
objOption
.
FirstPayDate
=
tempData
.
FirstPayDate
;
this
.
objOption
.
FirstPayDate
=
tempData
.
FirstPayDate
Str
;
this
.
objOption
.
FirstDiscountMoney
=
tempData
.
FirstDiscountMoney
;
this
.
objOption
.
FirstCourseFee
=
tempData
.
FirstCourseFee
;
this
.
objOption
.
FirstClassHours
=
tempData
.
FirstClassHours
;
...
...
@@ -665,14 +644,14 @@
this
.
objOption
.
SecondClassFee
=
tempData
.
SecondClassFee
;
this
.
objOption
.
SecondDiscountMoney
=
tempData
.
SecondDiscountMoney
;
this
.
objOption
.
SecondMoney
=
tempData
.
SecondMoney
;
this
.
objOption
.
SecondPayDate
=
tempData
.
SecondPayDate
;
this
.
objOption
.
SecondPayDate
=
tempData
.
SecondPayDate
Str
;
this
.
objOption
.
ThirdClassHours
=
tempData
.
ThirdClassHours
;
this
.
objOption
.
ThirdCourseFee
=
tempData
.
ThirdCourseFee
;
this
.
objOption
.
ThirdBookFee
=
tempData
.
ThirdBookFee
;
this
.
objOption
.
ThirdClassFee
=
tempData
.
ThirdClassFee
;
this
.
objOption
.
ThirdDiscountMoney
=
tempData
.
ThirdDiscountMoney
;
this
.
objOption
.
ThirdMoney
=
tempData
.
ThirdMoney
;
this
.
objOption
.
ThirdPayDate
=
tempData
.
ThirdPayDate
;
this
.
objOption
.
ThirdPayDate
=
tempData
.
ThirdPayDate
Str
;
this
.
objOption
.
CourseName
=
tempData
.
CourseName
;
this
.
objOption
.
CourseConsultant
=
tempData
.
CourseConsultant
;
this
.
objOption
.
CNYCaps
=
tempData
.
CNYCaps
;
...
...
@@ -699,13 +678,11 @@
this
.
getTotal
();
}
})
}
},
}
</
script
>
<
style
>
</
style
>
src/components/sale/orderlist.vue
View file @
a9f448ad
...
...
@@ -549,7 +549,7 @@
<viewquotation-form
v-if=
"isShowviewQuo"
:rId=
"offerId"
:isShowCancle=
"1"
@
close=
"closeQuota"
@
success=
"refreshOrder"
>
</viewquotation-form>
<!--合同信息-->
<eduinfo-form
v-if=
"isShowEduForm"
:seting-obj=
"eduObj"
@
close=
"closeEdudia"
@
success=
"refreshPage"
>
</eduinfo-form>
...
...
src/pages/financial/financalDocument/GetWOrkTransferPageLis.vue
View file @
a9f448ad
<
style
scoped
>
@import
"../css/cssReset.css"
;
.page_fnDm
{
background-color
:
white
}
.query-box
{
overflow
:
inherit
}
._nav
{
margin
:
20px
0
0
0
;
background-color
:
#f5f5f5
;}
...
...
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