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
09c4db3c
Commit
09c4db3c
authored
Jan 13, 2022
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改一些东西
parent
09912617
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
310 additions
and
7 deletions
+310
-7
customerstudent.js
src/api/customerstudent/customerstudent.js
+11
-0
consult-from.vue
src/components/school/student/consult-from.vue
+259
-0
guestConsultation.vue
src/pages/sale/guestConsultation.vue
+40
-7
No files found.
src/api/customerstudent/customerstudent.js
View file @
09c4db3c
...
@@ -233,4 +233,15 @@ export function SetStuStage(data) {
...
@@ -233,4 +233,15 @@ export function SetStuStage(data) {
method
:
'post'
,
method
:
'post'
,
data
data
})
})
}
/**
* 保存学员咨询信息
* @param {JSON参数} data
*/
export
function
setStudentConsultResults
(
data
)
{
return
request
({
url
:
'/User/SetStudentConsultResults'
,
method
:
'post'
,
data
})
}
}
\ No newline at end of file
src/components/school/student/consult-from.vue
0 → 100644
View file @
09c4db3c
<
template
>
<q-dialog
v-model=
"persistent"
full-height
maximized
position=
"right"
persistent
@
hide=
"closeCutomer"
transition-show=
"slide-left"
>
<div
class=
"customMain"
>
<div
class=
"custom_Top"
>
<div
class=
"custom_HLeft"
>
<div
class=
"nameplate_avatar"
>
<img
v-if=
"baseObj.StuIcon"
style=
"width:100%;height:100%;"
:src=
"baseObj.StuIcon"
alt
/>
<div
class=
"student_Name"
v-else
>
<span
v-if=
"baseObj.StuName"
>
{{
baseObj
.
StuName
.
substring
(
0
,
1
)
}}
</span>
</div>
</div>
<div
class=
"Name_List"
>
<div
class=
"F_16"
>
{{
baseObj
.
StuName
}}
</div>
</div>
</div>
</div>
<div
class=
"custom_Bottom"
>
<div
class=
"detail-travel"
>
<div
class=
"detail_first"
>
<div
class=
"operate_Content"
style=
"flex:1;"
>
<div
class=
"detail_Main"
>
<!-- 操作 -->
<template
>
<div
class=
"operate_Content"
style=
"margin-top:20px;"
>
<q-input
filled
stack-label
:dense=
"false"
v-model=
"addMsg.PlanPrice"
class=
"col-12 q-pb-lg"
label=
"规划课程及报价"
/>
<q-input
filled
stack-label
:dense=
"false"
v-model=
"addMsg.BaseCondition"
type=
"textarea"
autogrow
class=
"col-12 q-pb-lg"
label=
"基本情况"
/>
<q-input
filled
stack-label
:dense=
"false"
v-model=
"addMsg.DemandPoint"
type=
"textarea"
autogrow
class=
"col-12 q-pb-lg"
label=
"需求点"
/>
<q-input
filled
stack-label
:dense=
"false"
v-model=
"addMsg.ResistPoint"
type=
"textarea"
autogrow
class=
"col-12 q-pb-lg"
label=
"抗拒点"
/>
<q-input
filled
stack-label
:dense=
"false"
v-model=
"addMsg.ConsultingResults"
type=
"textarea"
autogrow
class=
"col-12 q-pb-lg"
label=
"咨询结果"
/>
</div>
<div
class=
"process_Btn_List"
>
<q-btn
outline
style=
"color: #111;height: 37px;"
label=
"取消"
@
click=
"closeCutomer"
/>
<q-btn
style=
"margin-left: 10px;"
label=
"保存"
color=
"accent q-mb-lg"
@
click=
"baocun"
/>
</div>
</
template
>
</div>
</div>
</div>
</div>
</div>
<div
class=
"dialog-out-close"
@
click=
"closeCutomer"
>
<i
class=
"iconfont icon-close"
style=
"font-size:26px;"
/>
</div>
</div>
</q-dialog>
</template>
<
script
>
import
{
queryEmployee
}
from
"../../../api/users/user"
;
import
{
ForwardStudent
,
setStudentConsultResults
}
from
"../../../api/customerstudent/customerstudent"
;
import
{
SetStudentAssistBatch
}
from
"../../../api/sale/sale"
;
export
default
{
components
:
{
},
props
:
{
saveObj
:
{
type
:
Object
,
default
:
null
},
},
data
()
{
return
{
persistent
:
true
,
addMsg
:
{},
baseObj
:
{},
};
},
created
()
{
this
.
userInfo
=
this
.
getLocalStorage
();
},
mounted
()
{
this
.
baseObj
=
this
.
saveObj
;
this
.
addMsg
=
{
StuId
:
this
.
baseObj
.
StuId
,
PlanPrice
:
this
.
baseObj
.
PlanPrice
?
this
.
baseObj
.
PlanPrice
:
''
,
BaseCondition
:
this
.
baseObj
.
BaseCondition
?
this
.
baseObj
.
BaseCondition
:
''
,
DemandPoint
:
this
.
baseObj
.
DemandPoint
?
this
.
baseObj
.
DemandPoint
:
''
,
ResistPoint
:
this
.
baseObj
.
ResistPoint
?
this
.
baseObj
.
ResistPoint
:
''
,
ConsultingResults
:
this
.
baseObj
.
ConsultingResults
?
this
.
baseObj
.
ConsultingResults
:
''
,
}
},
methods
:
{
closeCutomer
()
{
this
.
$emit
(
"close"
);
},
baocun
(){
setStudentConsultResults
(
this
.
addMsg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
$q
.
notify
({
icon
:
"iconfont icon-chenggong"
,
color
:
"accent"
,
timeout
:
2000
,
message
:
"保存成功"
,
position
:
"top"
});
}
this
.
$emit
(
"consultsuccess"
,
this
.
addMsg
);
});
}
}
};
</
script
>
<
style
scoped
>
.custom_RModel
{
width
:
500px
;
height
:
100%
;
}
.customMain
{
width
:
450px
!important
;
display
:
flex
;
flex-direction
:
column
;
height
:
100
vh
;
padding
:
15px
17px
0
17px
;
background-color
:
#f4f4f6
;
}
.custom_Top
{
width
:
100%
;
padding
:
22px
;
background
:
#fff
;
border-radius
:
8px
;
display
:
flex
;
justify-content
:
space-between
;
align-items
:
center
;
}
.custom_HLeft
{
display
:
flex
;
}
.process_Btn_List
{
display
:
flex
;
justify-content
:
flex-end
;
padding
:
20px
;
}
.nameplate_avatar
{
width
:
60px
;
height
:
60px
;
flex-shrink
:
0
;
margin-right
:
14px
;
border-radius
:
5px
;
overflow
:
hidden
;
}
.F_16
{
font-size
:
16px
;
}
.Name_List
{
display
:
flex
;
flex-direction
:
column
;
justify-content
:
space-around
;
overflow
:
hidden
;
}
.custom_Bottom
{
margin-top
:
17px
;
flex
:
1
;
display
:
flex
;
margin-top
:
17px
;
overflow
:
hidden
;
}
.Time_TopList
{
display
:
flex
;
justify-content
:
space-between
;
}
.visit_Cont
{
font-size
:
14px
;
}
.visit_delete
{
font-size
:
14px
;
cursor
:
pointer
;
width
:
30px
;
}
.operate_Content
{
overflow
:
auto
;
/* padding-right: 20px; */
}
.operate_Content
::-webkit-scrollbar
{
width
:
6px
;
height
:
8px
;
}
.operate_Content
::-webkit-scrollbar-thumb
{
border-radius
:
4px
;
-webkit-box-shadow
:
inset
0
0
2px
rgba
(
0
,
0
,
0
,
0.2
);
background
:
#c9c9c9
;
}
.operate_Content
::-webkit-scrollbar-thumb
{
-webkit-box-shadow
:
inset
0
0
2px
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
4px
;
background
:
#ededed
;
}
.Log_Content
{
padding
:
10px
;
border-radius
:
5px
;
background-color
:
#f4f4f6
;
color
:
#818194
;
line-height
:
2
;
margin-top
:
10px
;
word-break
:
break-all
;
}
</
style
>
src/pages/sale/guestConsultation.vue
View file @
09c4db3c
...
@@ -57,7 +57,7 @@ th:first-child{position: sticky;left:0px;}
...
@@ -57,7 +57,7 @@ th:first-child{position: sticky;left:0px;}
<div
class=
"page-content"
>
<div
class=
"page-content"
>
<q-table
:pagination=
"msg"
:loading=
"loading"
no-data-label=
"暂无相关数据"
flat
<q-table
:pagination=
"msg"
:loading=
"loading"
no-data-label=
"暂无相关数据"
flat
class=
"sticky-right-column-table sticky-tow-column-table"
separator=
"none"
class=
"sticky-right-column-table sticky-tow-column-table"
separator=
"none"
:data=
"dataList"
:columns=
"columns"
row-key=
"StuId"
hide-bottom
>
:data=
"dataList"
:columns=
"columns"
row-key=
"StuId"
>
<template
v-slot:body-cell-StuName=
"props"
>
<template
v-slot:body-cell-StuName=
"props"
>
...
@@ -72,6 +72,31 @@ th:first-child{position: sticky;left:0px;}
...
@@ -72,6 +72,31 @@ th:first-child{position: sticky;left:0px;}
<q-badge
:color=
"props.row.EnrollState == 1 ? 'negative' : 'primary'"
:label=
"props.row.EnrollState == 1 ? '已报名' : '未成交'"
/>
<q-badge
:color=
"props.row.EnrollState == 1 ? 'negative' : 'primary'"
:label=
"props.row.EnrollState == 1 ? '已报名' : '未成交'"
/>
</q-td>
</q-td>
</
template
>
</
template
>
<
template
v-slot:body-cell-PlanPrice=
"props"
>
<q-td
:props=
"props"
>
<div
class=
"w200text"
>
{{
props
.
row
.
PlanPrice
}}
</div>
</q-td>
</
template
>
<
template
v-slot:body-cell-BaseCondition=
"props"
>
<q-td
:props=
"props"
>
<div
class=
"w200text"
>
{{
props
.
row
.
BaseCondition
}}
</div>
</q-td>
</
template
>
<
template
v-slot:body-cell-DemandPoint=
"props"
>
<q-td
:props=
"props"
>
<div
class=
"w200text"
>
{{
props
.
row
.
DemandPoint
}}
</div>
</q-td>
</
template
>
<
template
v-slot:body-cell-ResistPoint=
"props"
>
<q-td
:props=
"props"
>
<div
class=
"w200text"
>
{{
props
.
row
.
ResistPoint
}}
</div>
</q-td>
</
template
>
<
template
v-slot:body-cell-ConsultingResults=
"props"
>
<q-td
:props=
"props"
>
<div
class=
"w200text"
>
{{
props
.
row
.
ConsultingResults
}}
</div>
</q-td>
</
template
>
<
template
v-slot:body-cell-FURemark=
"props"
>
<
template
v-slot:body-cell-FURemark=
"props"
>
<q-td>
<q-td>
...
@@ -79,6 +104,9 @@ th:first-child{position: sticky;left:0px;}
...
@@ -79,6 +104,9 @@ th:first-child{position: sticky;left:0px;}
<span
style=
"text-decoration: underline;cursor: pointer;color: #2961fe ;"
v-if=
"props.row.FURemark"
@
click=
"lookgengduo(props.row)"
>
查看更多
</span>
<span
style=
"text-decoration: underline;cursor: pointer;color: #2961fe ;"
v-if=
"props.row.FURemark"
@
click=
"lookgengduo(props.row)"
>
查看更多
</span>
</q-td>
</q-td>
</
template
>
</
template
>
<
template
v-slot:bottom
>
<div></div>
</
template
>
</q-table>
</q-table>
</div>
</div>
<q-pagination
class=
"full-width justify-end"
v-model=
"msg.pageIndex"
color=
"primary"
:max=
"PageCount"
<q-pagination
class=
"full-width justify-end"
v-model=
"msg.pageIndex"
color=
"primary"
:max=
"PageCount"
...
@@ -156,6 +184,12 @@ export default {
...
@@ -156,6 +184,12 @@ export default {
label
:
"学生"
,
label
:
"学生"
,
field
:
"StuName"
,
field
:
"StuName"
,
align
:
"left"
align
:
"left"
},
{
name
:
"EnrollState"
,
label
:
"状态"
,
field
:
"EnrollState"
,
align
:
"left"
},
},
{
{
name
:
"StuBirthStr"
,
name
:
"StuBirthStr"
,
...
@@ -181,12 +215,7 @@ export default {
...
@@ -181,12 +215,7 @@ export default {
field
:
"StuChannelName"
,
field
:
"StuChannelName"
,
align
:
"left"
align
:
"left"
},
},
{
name
:
"EnrollState"
,
label
:
"状态"
,
field
:
"EnrollState"
,
align
:
"left"
},
{
{
name
:
"CourseName"
,
name
:
"CourseName"
,
label
:
"报名课程"
,
label
:
"报名课程"
,
...
@@ -347,5 +376,9 @@ export default {
...
@@ -347,5 +376,9 @@ export default {
background-color
:
transparent
;
background-color
:
transparent
;
border
:
none
;
border
:
none
;
}
}
.w200text
{
max-width
:
260px
;
white-space
:
normal
;
word-break
:
break-all
}
</
style
>
</
style
>
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