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
6244c6fe
Commit
6244c6fe
authored
Mar 21, 2022
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
ee3300ec
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
411 additions
and
1 deletion
+411
-1
vipcourse-form.vue
src/components/flow/vipcourse-form.vue
+366
-0
companyday.vue
src/pages/sale/companyday.vue
+30
-0
orderStatistics.vue
src/pages/sale/orderStatistics.vue
+3
-0
processSet.vue
src/pages/system/processSet.vue
+12
-1
No files found.
src/components/flow/vipcourse-form.vue
0 → 100644
View file @
6244c6fe
This diff is collapsed.
Click to expand it.
src/pages/sale/companyday.vue
View file @
6244c6fe
...
@@ -12,6 +12,11 @@
...
@@ -12,6 +12,11 @@
background
:
yellow
!important
;
background
:
yellow
!important
;
z-index
:
1
!important
;
z-index
:
1
!important
;
}
}
.com_CanClick
{
color
:
blue
;
text-decoration
:
underline
;
cursor
:
pointer
;
}
</
style
>
</
style
>
<
template
>
<
template
>
<div
class=
"page-body"
>
<div
class=
"page-body"
>
...
@@ -34,6 +39,12 @@
...
@@ -34,6 +39,12 @@
<q-table
:pagination=
"msg"
ref=
"table"
:loading=
"loading"
:style=
"{'height':tableHeight+'px'}"
<q-table
:pagination=
"msg"
ref=
"table"
:loading=
"loading"
:style=
"{'height':tableHeight+'px'}"
no-data-label=
"暂无相关数据"
flat
class=
"sticky-column-table sticky-header-column-table no-bottom-table myTable_Zk"
no-data-label=
"暂无相关数据"
flat
class=
"sticky-column-table sticky-header-column-table no-bottom-table myTable_Zk"
separator=
"none"
:data=
"dataList"
:columns=
"columns"
row-key=
""
>
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
v-else
>
{{
props
.
row
.
OrderMoney
}}
</span>
</q-td>
</
template
>
<
template
v-slot:bottom
>
<
template
v-slot:bottom
>
</
template
>
</
template
>
</q-table>
</q-table>
...
@@ -284,6 +295,25 @@
...
@@ -284,6 +295,25 @@
this
.
getList
();
this
.
getList
();
},
},
methods
:
{
methods
:
{
isChinese
(
temp
){
if
(
temp
==
'上期总数'
||
temp
==
'总数'
||
temp
==
'环比成长'
||
temp
==
'月总数'
){
return
false
}
else
{
return
true
}
},
goDetails
(
dateStr
){
console
.
log
(
this
.
myDate
,
'mydate'
);
let
year
=
''
if
(
this
.
myDate
){
year
=
this
.
myDate
.
split
(
'-'
)[
0
]
}
let
NewDate
=
year
+
'-'
+
dateStr
;
const
obj
=
{
NewDate
:
NewDate
};
this
.
OpenNewUrl
(
"/sale/orderStatistics"
,
obj
);
},
//下载数据
//下载数据
downloadStudentStatic
()
{
downloadStudentStatic
()
{
this
.
loading
=
true
;
this
.
loading
=
true
;
...
...
src/pages/sale/orderStatistics.vue
View file @
6244c6fe
...
@@ -272,6 +272,9 @@
...
@@ -272,6 +272,9 @@
if
(
this
.
$route
.
query
.
ClassName
)
{
if
(
this
.
$route
.
query
.
ClassName
)
{
this
.
msg
.
ClassName
=
decodeURI
(
this
.
$route
.
query
.
ClassName
);
this
.
msg
.
ClassName
=
decodeURI
(
this
.
$route
.
query
.
ClassName
);
}
}
if
(
this
.
$route
.
query
.
NewDate
)
{
this
.
msg
.
StartTime
=
this
.
$route
.
query
.
NewDate
}
this
.
queryCourseSubject
();
this
.
queryCourseSubject
();
this
.
getOrderState
();
this
.
getOrderState
();
this
.
getCourseList
();
this
.
getCourseList
();
...
...
src/pages/system/processSet.vue
View file @
6244c6fe
...
@@ -51,6 +51,11 @@
...
@@ -51,6 +51,11 @@
<!-- 投稿审批 -->
<!-- 投稿审批 -->
<tougao-form></tougao-form>
<tougao-form></tougao-form>
</
template
>
</
template
>
<
template
v-if=
"tabCheck == '9'"
>
<!-- vip课程申请 -->
<vipcourse-form></vipcourse-form>
</
template
>
</div>
</div>
</div>
</div>
</template>
</template>
...
@@ -63,6 +68,7 @@ import temporaryClassForm from "../../components/flow/temporaryClass-form";
...
@@ -63,6 +68,7 @@ import temporaryClassForm from "../../components/flow/temporaryClass-form";
import
separateForm
from
"../../components/flow/separate-form"
;
import
separateForm
from
"../../components/flow/separate-form"
;
import
leaveForm
from
"../../components/flow/leave-form"
;
import
leaveForm
from
"../../components/flow/leave-form"
;
import
tougaoForm
from
"../../components/flow/tougao-form"
;
import
tougaoForm
from
"../../components/flow/tougao-form"
;
import
vipcourseForm
from
"../../components/flow/vipcourse-form"
;
export
default
{
export
default
{
meta
:
{
meta
:
{
title
:
"流程设置"
,
title
:
"流程设置"
,
...
@@ -75,7 +81,8 @@ export default {
...
@@ -75,7 +81,8 @@ export default {
temporaryClassForm
,
temporaryClassForm
,
separateForm
,
separateForm
,
leaveForm
,
leaveForm
,
tougaoForm
tougaoForm
,
vipcourseForm
},
},
data
()
{
data
()
{
return
{
return
{
...
@@ -111,6 +118,10 @@ export default {
...
@@ -111,6 +118,10 @@ export default {
{
{
name
:
"8"
,
name
:
"8"
,
label
:
"投稿审批"
label
:
"投稿审批"
},
{
name
:
"9"
,
label
:
"vip课程申请"
}
}
],
],
tabCheck
:
"1"
,
tabCheck
:
"1"
,
...
...
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