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
f3f60cd6
Commit
f3f60cd6
authored
Mar 26, 2021
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增页面
parent
026fea48
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
864 additions
and
4 deletions
+864
-4
quotationstudy-form.vue
src/components/sale/quotationstudy-form.vue
+515
-0
coursejob.vue
src/pages/course/coursejob.vue
+1
-1
myoffer.vue
src/pages/sale/myoffer.vue
+20
-3
studyjob.vue
src/pages/sale/studyjob.vue
+323
-0
routes.js
src/router/routes.js
+5
-0
No files found.
src/components/sale/quotationstudy-form.vue
0 → 100644
View file @
f3f60cd6
This diff is collapsed.
Click to expand it.
src/pages/course/coursejob.vue
View file @
f3f60cd6
...
...
@@ -170,7 +170,7 @@
JobId
:
jobId
}
});
window
.
open
(
tempRouter
.
href
,
'_blank'
)
window
.
open
(
tempRouter
.
href
,
'_blank'
)
},
}
}
...
...
src/pages/sale/myoffer.vue
View file @
f3f60cd6
...
...
@@ -186,6 +186,10 @@
<q-dialog
v-model=
"showForm"
persistent
>
<quotation-form
:obj=
"offerObj"
@
save=
"refreshPage()"
></quotation-form>
</q-dialog>
<!-- 新增修改留学就业报价单 -->
<q-dialog
v-model=
"showStudyForm"
persistent
>
<quotationstudy-form
:obj=
"offerObj"
@
save=
"refreshPage()"
></quotationstudy-form>
</q-dialog>
<!-- 报价单转订单 -->
<q-dialog
v-model=
"showOrderForm"
persistent
>
<offertransorder-form
:obj=
"offerObj"
@
save=
"refreshPage()"
></offertransorder-form>
...
...
@@ -218,7 +222,8 @@
<
script
>
import
quotationForm
from
'../../components/sale/quotation-form'
import
offertransorderForm
from
'../../components/sale/offertransorder-form'
//留学报价单
import
quotationstudyForm
from
'../../components/sale/quotationstudy-form'
import
viewquotationForm
from
'../../components/sale/viewquotation-form'
import
{
queryCourseOfferPage
,
...
...
@@ -234,6 +239,7 @@
},
components
:
{
quotationForm
,
quotationstudyForm
,
offertransorderForm
,
viewquotationForm
},
...
...
@@ -267,6 +273,12 @@
field
:
"Name"
,
align
:
"left"
},
{
name
:
"OfferTypeName"
,
label
:
"类型"
,
field
:
"OfferTypeName"
,
align
:
"left"
},
{
name
:
"CustomerName"
,
required
:
true
,
...
...
@@ -339,6 +351,7 @@
isShowviewQuo
:
false
,
rId
:
0
,
isShowUpPrice
:
false
,
showStudyForm
:
false
,
//是否显示留学就业报价单
uppriceMsg
:
{
Id
:
0
,
ApplyReason
:
''
...
...
@@ -399,11 +412,11 @@
this
.
offerObj
=
item
;
this
.
showOrderForm
=
true
;
},
//刷新页面
refreshPage
()
{
this
.
showForm
=
false
;
this
.
showOrderForm
=
false
;
this
.
showStudyForm
=
false
;
this
.
getcourseofferpage
();
},
gotoDetails
(
item
)
{
...
...
@@ -412,7 +425,11 @@
},
//显示报价单
editQuotation
(
item
)
{
this
.
showForm
=
true
;
if
(
item
.
OfferType
==
1
)
{
this
.
showForm
=
true
;
}
else
{
this
.
showStudyForm
=
true
;
}
this
.
offerObj
=
item
;
},
//重新查询
...
...
src/pages/sale/studyjob.vue
0 → 100644
View file @
f3f60cd6
This diff is collapsed.
Click to expand it.
src/router/routes.js
View file @
f3f60cd6
...
...
@@ -436,6 +436,11 @@ const routes = [{
component
:
()
=>
import
(
"pages/sale/courseList.vue"
)
},
{
path
:
"/sale/studyjob"
,
//留学就业产品
component
:
()
=>
import
(
"pages/sale/studyjob.vue"
)
},
{
path
:
"/sale/courseoffer"
,
//销售 报价单管理
component
:
()
=>
...
...
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