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
b88e412c
Commit
b88e412c
authored
Mar 21, 2022
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
dcac0eb9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
6 deletions
+22
-6
tickMode.vue
src/components/school/student/transfer-order/tickMode.vue
+2
-1
companyday.vue
src/pages/sale/companyday.vue
+13
-4
orderStatistics.vue
src/pages/sale/orderStatistics.vue
+2
-1
studyOrderStatistics.vue
src/pages/sale/studyOrderStatistics.vue
+5
-0
No files found.
src/components/school/student/transfer-order/tickMode.vue
View file @
b88e412c
...
...
@@ -63,7 +63,8 @@
.box-businessModel
{
cursor
:
pointer
;
width
:
209px
;
// width: 209px;
width
:
314px
;
height
:
198px
;
background
:
#f9f9f9
;
border-radius
:
5px
;
...
...
src/pages/sale/companyday.vue
View file @
b88e412c
...
...
@@ -41,10 +41,16 @@
separator=
"none"
:data=
"dataList"
:columns=
"columns"
row-key=
""
>
<
template
v-slot:body-cell-OrderMoney=
"props"
>
<q-td>
<span
class=
"com_CanClick"
v-if=
"isChinese(props.row.DateStr)"
@
click=
"goDetails(props.row.DateStr)"
>
{{
props
.
row
.
OrderMoney
}}
</span>
<span
class=
"com_CanClick"
v-if=
"isChinese(props.row.DateStr)"
@
click=
"goDetails(props.row.DateStr
,1
)"
>
{{
props
.
row
.
OrderMoney
}}
</span>
<span
v-else
>
{{
props
.
row
.
OrderMoney
}}
</span>
</q-td>
</
template
>
<
template
v-slot:body-cell-StudyOrderMoney=
"props"
>
<q-td>
<span
class=
"com_CanClick"
v-if=
"isChinese(props.row.DateStr)"
@
click=
"goDetails(props.row.DateStr,2)"
>
{{
props
.
row
.
StudyOrderMoney
}}
</span>
<span
v-else
>
{{
props
.
row
.
StudyOrderMoney
}}
</span>
</q-td>
</
template
>
<
template
v-slot:bottom
>
</
template
>
</q-table>
...
...
@@ -302,8 +308,7 @@
return
true
}
},
goDetails
(
dateStr
){
console
.
log
(
this
.
myDate
,
'mydate'
);
goDetails
(
dateStr
,
type
){
let
year
=
''
if
(
this
.
myDate
){
year
=
this
.
myDate
.
split
(
'-'
)[
0
]
...
...
@@ -312,7 +317,11 @@
const
obj
=
{
NewDate
:
NewDate
};
this
.
OpenNewUrl
(
"/sale/orderStatistics"
,
obj
);
if
(
type
==
1
){
this
.
OpenNewUrl
(
"/sale/orderStatistics"
,
obj
);
}
else
{
this
.
OpenNewUrl
(
"/sale/studyOrderStatistics"
,
obj
);
}
},
//下载数据
downloadStudentStatic
()
{
...
...
src/pages/sale/orderStatistics.vue
View file @
b88e412c
...
...
@@ -273,7 +273,8 @@
this
.
msg
.
ClassName
=
decodeURI
(
this
.
$route
.
query
.
ClassName
);
}
if
(
this
.
$route
.
query
.
NewDate
)
{
this
.
msg
.
StartTime
=
this
.
$route
.
query
.
NewDate
this
.
msg
.
StartTime
=
this
.
$route
.
query
.
NewDate
;
this
.
msg
.
EndTime
=
this
.
$route
.
query
.
NewDate
}
this
.
queryCourseSubject
();
this
.
getOrderState
();
...
...
src/pages/sale/studyOrderStatistics.vue
View file @
b88e412c
...
...
@@ -182,6 +182,11 @@
if
(
this
.
$route
.
query
.
OrderId
)
{
this
.
msg
.
OrderId
=
this
.
$route
.
query
.
OrderId
;
}
if
(
this
.
$route
.
query
.
NewDate
)
{
this
.
dateList
[
0
]
=
this
.
$route
.
query
.
NewDate
;
this
.
dateList
[
1
]
=
this
.
$route
.
query
.
NewDate
;
}
let
userinfo
=
this
.
getLocalStorage
();
userinfo
.
ActionMenuList
.
map
(
x
=>
{
//判断权限
if
(
x
.
FunctionCode
==
"SA_Order_confirm"
){
//留学和就业订单确认按钮
...
...
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