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
f4965de2
Commit
f4965de2
authored
Jul 01, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改样式
parent
72c300d0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
180 additions
and
48 deletions
+180
-48
baseSet.vue
src/pages/course/baseSet.vue
+2
-2
classManage.vue
src/pages/course/classManage.vue
+11
-4
TeamRevenueReport.vue
src/pages/financial/TeamRevenueReport.vue
+0
-4
orderCompleteStatistics.vue
src/pages/financial/orderCompleteStatistics.vue
+3
-1
studentsClassfee.vue
src/pages/financial/studentsClassfee.vue
+1
-0
teacherclassfee.vue
src/pages/financial/teacherclassfee.vue
+1
-0
personalData.vue
src/pages/user/personalData.vue
+162
-37
No files found.
src/pages/course/baseSet.vue
View file @
f4965de2
...
@@ -127,8 +127,8 @@
...
@@ -127,8 +127,8 @@
<q-input
filled
stack-label
:dense=
"false"
maxlength=
"8"
v-model=
"addMsg.DefaultClassNum"
label=
"默认班级人数"
<q-input
filled
stack-label
:dense=
"false"
maxlength=
"8"
v-model=
"addMsg.DefaultClassNum"
label=
"默认班级人数"
ref=
"DefaultClassNum"
class=
"q-pb-lg"
@
keyup
.
native=
"checkInteger(addMsg,'DefaultClassNum')"
ref=
"DefaultClassNum"
class=
"q-pb-lg"
@
keyup
.
native=
"checkInteger(addMsg,'DefaultClassNum')"
:rules=
"[val => !!val || '请填写默认班级人数']"
/>
:rules=
"[val => !!val || '请填写默认班级人数']"
/>
<q-input
filled
stack-label
:dense=
"false"
maxlength=
"8"
v-model=
"addMsg.ClassNoPrefix"
label=
"班级编码"
<q-input
filled
stack-label
maxlength=
"8"
v-model=
"addMsg.ClassNoPrefix"
label=
"班级编码"
ref=
"ClassNoPrefix"
class=
"q-pb-lg"
@
keyup
.
native=
"checkInteger(addMsg,'ClassNoPrefix
')"
class=
"q-pb-lg"
@
input=
"this.value=this.value.replace(/[^a-zA-Z]/g,'
')"
/>
/>
<q-card-actions
align=
"right"
class=
"bg-white"
>
<q-card-actions
align=
"right"
class=
"bg-white"
>
...
...
src/pages/course/classManage.vue
View file @
f4965de2
...
@@ -65,10 +65,17 @@
...
@@ -65,10 +65,17 @@
</
template
>
</
template
>
<
template
v-slot:body-cell-ClassName=
"props"
>
<
template
v-slot:body-cell-ClassName=
"props"
>
<q-td
auto-width
:props=
"props"
>
<q-td
auto-width
:props=
"props"
>
<q-avatar
size=
"md"
style=
"background:#d4dfff;color:#2961FE;font-weight:bold;"
v-if=
"props.row.ClassName"
>
<div
style=
"display: flex;align-items: center;"
>
{{
GetFirst
(
props
.
row
.
ClassName
)
}}
</q-avatar>
<q-avatar
size=
"md"
style=
"background:#d4dfff;color:#2961FE;font-weight:bold;"
v-if=
"props.row.ClassName"
>
<span
style=
"color:#2961FE;margin-left:10px;cursor:pointer;"
@
click=
"getClassInfo(props.row)"
{{
GetFirst
(
props
.
row
.
ClassName
)
}}
</q-avatar>
title=
"点击查看详情"
>
{{
props
.
row
.
ClassName
}}
</span>
<div
>
<span
style=
"color:#2961FE;margin-left:10px;cursor:pointer;"
@
click=
"getClassInfo(props.row)"
title=
"点击查看详情"
>
{{
props
.
row
.
ClassName
}}
</span>
<div
style=
"margin-left: 10px;"
>
{{
props
.
row
.
ClassNo
}}
</div>
</div>
</div>
</q-td>
</q-td>
</
template
>
</
template
>
<
template
v-slot:body-cell-OtherCourseName=
"props"
>
<
template
v-slot:body-cell-OtherCourseName=
"props"
>
...
...
src/pages/financial/TeamRevenueReport.vue
View file @
f4965de2
...
@@ -1069,7 +1069,6 @@
...
@@ -1069,7 +1069,6 @@
titleAlign
:
"left"
,
titleAlign
:
"left"
,
columnAlign
:
"left"
,
columnAlign
:
"left"
,
isResize
:
true
,
isResize
:
true
,
isFrozen
:
true
,
},
},
{
{
field
:
"ClassState"
,
field
:
"ClassState"
,
...
@@ -1080,7 +1079,6 @@
...
@@ -1080,7 +1079,6 @@
isResize
:
true
,
isResize
:
true
,
result
:
[],
result
:
[],
type
:
"select"
,
type
:
"select"
,
isFrozen
:
true
,
formatter
:
function
(
rowData
,
rowIndex
,
pagingIndex
,
field
)
{
formatter
:
function
(
rowData
,
rowIndex
,
pagingIndex
,
field
)
{
let
state
=
rowData
.
ClassState
let
state
=
rowData
.
ClassState
let
text
=
''
let
text
=
''
...
@@ -1104,7 +1102,6 @@
...
@@ -1104,7 +1102,6 @@
isResize
:
true
,
isResize
:
true
,
result
:
[],
result
:
[],
type
:
"select"
,
type
:
"select"
,
isFrozen
:
true
},
},
{
{
field
:
"TeacherName"
,
field
:
"TeacherName"
,
...
@@ -1113,7 +1110,6 @@
...
@@ -1113,7 +1110,6 @@
titleAlign
:
"left"
,
titleAlign
:
"left"
,
columnAlign
:
"left"
,
columnAlign
:
"left"
,
isResize
:
true
,
isResize
:
true
,
isFrozen
:
true
,
},
},
{
{
field
:
"YingShou"
,
field
:
"YingShou"
,
...
...
src/pages/financial/orderCompleteStatistics.vue
View file @
f4965de2
...
@@ -182,6 +182,7 @@
...
@@ -182,6 +182,7 @@
<th
:width=
'200'
>
签订时间
</th>
<th
:width=
'200'
>
签订时间
</th>
<th
:width=
'220'
>
合同编号
</th>
<th
:width=
'220'
>
合同编号
</th>
<th
:width=
'400'
>
产品名称
</th>
<th
:width=
'400'
>
产品名称
</th>
<th
:width=
'200'
>
班号
</th>
<th
:width=
'400'
>
班级
</th>
<th
:width=
'400'
>
班级
</th>
<th
:width=
'150'
>
学员名称
</th>
<th
:width=
'150'
>
学员名称
</th>
<th
:width=
'120'
>
业务员
</th>
<th
:width=
'120'
>
业务员
</th>
...
@@ -223,7 +224,8 @@
...
@@ -223,7 +224,8 @@
<td>
{{
item
.
CreateTime
}}
</td>
<td>
{{
item
.
CreateTime
}}
</td>
<td
@
click=
"goUrl('/sale/contractManage',item.ContractNo)"
><span
style=
"cursor: pointer;text-decoration: underline;"
>
{{
item
.
ContractNo
}}
</span></td>
<td
@
click=
"goUrl('/sale/contractManage',item.ContractNo)"
><span
style=
"cursor: pointer;text-decoration: underline;"
>
{{
item
.
ContractNo
}}
</span></td>
<td
@
click=
"goUrl('/course/course',item.CourseName)"
><span
style=
"cursor: pointer;text-decoration: underline;"
>
{{
item
.
CourseName
}}
</span></td>
<td
@
click=
"goUrl('/course/course',item.CourseName)"
><span
style=
"cursor: pointer;text-decoration: underline;"
>
{{
item
.
CourseName
}}
</span></td>
<td
@
click=
"goUrl2('/course/classManage',item.ClassName)"
><span
style=
"cursor: pointer;text-decoration: underline;"
>
{{
item
.
ClassName
}}
</span></td>
<td
>
{{
item
.
ClassNo
}}
</td>
<td
@
click=
"goUrl2('/course/classManage',item.ClassName)"
><div
style=
"cursor: pointer;text-decoration: underline;"
>
{{
item
.
ClassName
}}
</div></td>
<td>
{{
item
.
StudentName
}}
</td>
<td>
{{
item
.
StudentName
}}
</td>
<td>
{{
item
.
CreateByName
}}
</td>
<td>
{{
item
.
CreateByName
}}
</td>
<td>
{{
item
.
TotalClassHours
}}
</td>
<td>
{{
item
.
TotalClassHours
}}
</td>
...
...
src/pages/financial/studentsClassfee.vue
View file @
f4965de2
...
@@ -139,6 +139,7 @@
...
@@ -139,6 +139,7 @@
<el-table-column
prop=
"ClassDate"
label=
"上课日期"
></el-table-column>
<el-table-column
prop=
"ClassDate"
label=
"上课日期"
></el-table-column>
<el-table-column
prop=
"TimeBucket"
label=
"上课时间段"
>
</el-table-column>
<el-table-column
prop=
"TimeBucket"
label=
"上课时间段"
>
</el-table-column>
<el-table-column
prop=
"GuestName"
label=
"学生名称"
>
</el-table-column>
<el-table-column
prop=
"GuestName"
label=
"学生名称"
>
</el-table-column>
<el-table-column
prop=
"ClassNo"
width=
'120'
label=
"班号"
></el-table-column>
<el-table-column
prop=
"ClassName"
label=
"上课班级"
width=
'200'
>
</el-table-column>
<el-table-column
prop=
"ClassName"
label=
"上课班级"
width=
'200'
>
</el-table-column>
<el-table-column
prop=
"CourseName"
label=
"课程"
width=
'200'
></el-table-column>
<el-table-column
prop=
"CourseName"
label=
"课程"
width=
'200'
></el-table-column>
<el-table-column
prop=
"TeacherName"
label=
"老师名称"
></el-table-column>
<el-table-column
prop=
"TeacherName"
label=
"老师名称"
></el-table-column>
...
...
src/pages/financial/teacherclassfee.vue
View file @
f4965de2
...
@@ -121,6 +121,7 @@
...
@@ -121,6 +121,7 @@
<el-table-column
prop=
"Date"
label=
"上课日期"
></el-table-column>
<el-table-column
prop=
"Date"
label=
"上课日期"
></el-table-column>
<el-table-column
prop=
"TimeBucket"
label=
"上课时间段"
>
</el-table-column>
<el-table-column
prop=
"TimeBucket"
label=
"上课时间段"
>
</el-table-column>
<el-table-column
prop=
"TeacherName"
label=
"老师名称"
></el-table-column>
<el-table-column
prop=
"TeacherName"
label=
"老师名称"
></el-table-column>
<el-table-column
prop=
"ClassNo"
label=
"班号"
></el-table-column>
<el-table-column
prop=
"ClassName"
label=
"上课班级"
width=
'200'
>
</el-table-column>
<el-table-column
prop=
"ClassName"
label=
"上课班级"
width=
'200'
>
</el-table-column>
<el-table-column
prop=
"CourseName"
label=
"课程"
width=
'230'
></el-table-column>
<el-table-column
prop=
"CourseName"
label=
"课程"
width=
'230'
></el-table-column>
<el-table-column
prop=
"UnitPrice"
label=
"课时单价"
></el-table-column>
<el-table-column
prop=
"UnitPrice"
label=
"课时单价"
></el-table-column>
...
...
src/pages/user/personalData.vue
View file @
f4965de2
This diff is collapsed.
Click to expand it.
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