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
d6070f02
Commit
d6070f02
authored
Jun 30, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
2279f88f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
32 deletions
+31
-32
eduinfo-form.vue
src/components/sale/eduinfo-form.vue
+16
-16
orderlist.vue
src/components/sale/orderlist.vue
+14
-15
studentList.vue
src/pages/sale/studentList.vue
+1
-1
No files found.
src/components/sale/eduinfo-form.vue
View file @
d6070f02
...
...
@@ -115,7 +115,7 @@
<tr>
<td>
培训课程内容
</td>
<td>
<q-input
filled
v-model=
"objOption.CourseName"
/>
<q-input
filled
disable
v-model=
"objOption.CourseName"
/>
</td>
<td>
校区名称
</td>
<td>
...
...
@@ -155,15 +155,15 @@
<tr>
<td>
培训课时数
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'FirstClassHours')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'FirstClassHours')"
@
input=
"calcTotal()"
v-model=
"objOption.FirstClassHours"
/>
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'SecondClassHours')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'SecondClassHours')"
@
input=
"calcTotal()"
v-model=
"objOption.SecondClassHours"
/>
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'ThirdClassHours')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'ThirdClassHours')"
@
input=
"calcTotal()"
v-model=
"objOption.ThirdClassHours"
/>
</td>
<td>
...
...
@@ -173,15 +173,15 @@
<tr>
<td>
培训课程费
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'FirstCourseFee')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'FirstCourseFee')"
@
input=
"calcTotal()"
v-model=
"objOption.FirstCourseFee"
/>
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'SecondCourseFee')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'SecondCourseFee')"
@
input=
"calcTotal()"
v-model=
"objOption.SecondCourseFee"
/>
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'ThirdCourseFee')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'ThirdCourseFee')"
@
input=
"calcTotal()"
v-model=
"objOption.ThirdCourseFee"
/>
</td>
<td>
...
...
@@ -191,15 +191,15 @@
<tr>
<td>
培训教材费
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'FirstBookFee')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'FirstBookFee')"
@
input=
"calcTotal()"
v-model=
"objOption.FirstBookFee"
/>
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'SecondBookFee')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'SecondBookFee')"
@
input=
"calcTotal()"
v-model=
"objOption.SecondBookFee"
/>
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'ThirdBookFee')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'ThirdBookFee')"
@
input=
"calcTotal()"
v-model=
"objOption.ThirdBookFee"
/>
</td>
<td>
...
...
@@ -209,15 +209,15 @@
<tr>
<td>
培训课件费
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'FirstClassFee')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'FirstClassFee')"
@
input=
"calcTotal()"
v-model=
"objOption.FirstClassFee"
/>
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'SecondClassFee')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'SecondClassFee')"
@
input=
"calcTotal()"
v-model=
"objOption.SecondClassFee"
/>
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'ThirdClassFee')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'ThirdClassFee')"
@
input=
"calcTotal()"
v-model=
"objOption.ThirdClassFee"
/>
</td>
<td>
...
...
@@ -242,15 +242,15 @@
<tr>
<td>
折让价格
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'FirstDiscountMoney')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'FirstDiscountMoney')"
@
input=
"calcTotal()"
v-model=
"objOption.FirstDiscountMoney"
/>
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'SecondDiscountMoney')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'SecondDiscountMoney')"
@
input=
"calcTotal()"
v-model=
"objOption.SecondDiscountMoney"
/>
</td>
<td>
<q-input
filled
@
keyup
.
native=
"checkPrice(objOption,'ThirdDiscountMoney')"
@
input=
"calcTotal()"
<q-input
filled
disable
@
keyup
.
native=
"checkPrice(objOption,'ThirdDiscountMoney')"
@
input=
"calcTotal()"
v-model=
"objOption.ThirdDiscountMoney"
/>
</td>
<td>
...
...
src/components/sale/orderlist.vue
View file @
d6070f02
...
...
@@ -283,7 +283,7 @@
<q-btn
color=
"accent"
size=
"sm"
@
click=
"takeContractTwo(item,subItem)"
label=
"领取合同"
/>
</
template
>
<
template
v-else
>
<q-btn
color=
"secondary"
size=
"sm"
@
click=
"goContractMannage()"
label=
"查看合同"
/>
<q-btn
color=
"secondary"
size=
"sm"
@
click=
"goContractMannage(
subItem
)"
label=
"查看合同"
/>
</
template
>
</td>
</tr>
...
...
@@ -1204,16 +1204,16 @@
}
})
}
//
if (obj.OrderType == 1 && ContractNo == '') {
//
this.$q.notify({
//
icon: 'close',
//
color: 'accent',
//
timeout: 2000,
//
message: '请完善合同信息',
//
position: 'top'
//
})
//
return
//
}
if
(
obj
.
OrderType
==
1
&&
ContractNo
==
''
)
{
this
.
$q
.
notify
({
icon
:
'close'
,
color
:
'accent'
,
timeout
:
2000
,
message
:
'请完善合同信息'
,
position
:
'top'
})
return
}
//留学就业订单
if
(
obj
&&
obj
.
OrderType
==
2
)
{
//财务单据类型【教育留学】
...
...
@@ -1292,10 +1292,9 @@
this
.
isShowEduForm
=
true
;
},
//跳转至合同管理
goContractMannage
()
{
this
.
$router
.
push
({
path
:
'/sale/contractManage'
,
query
:
{}
goContractMannage
(
subItem
)
{
this
.
OpenNewUrl
(
"/contractView"
,
{
ContractId
:
subItem
.
ContractId
});
},
gourltx
(
OrderId
){
...
...
src/pages/sale/studentList.vue
View file @
d6070f02
...
...
@@ -75,7 +75,7 @@
</
template
>
</q-input>
<q-input
clearable
filled
class=
"col-6 q-pb-lg q-pr-lg"
maxlength=
"5"
v-model=
"addMsg.TotalHours"
<q-input
clearable
filled
class=
"col-6 q-pb-lg q-pr-lg"
maxlength=
"5"
disable
v-model=
"addMsg.TotalHours"
label=
"总课时"
:rules=
"[val => !!val || '请填写总课时']"
@
keyup
.
native=
"checkInteger(addMsg,'TotalHours')"
/>
<q-input
clearable
filled
class=
"col-6 q-pb-lg"
ref=
"Mobile"
maxlength=
"20"
v-model=
"addMsg.Mobile"
label=
"电话"
:rules=
"[val => !!val || '电话']"
/>
...
...
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