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
e59dbf76
Commit
e59dbf76
authored
Jul 13, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改样式
parent
d28b8ef1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
15 deletions
+25
-15
cycleList.vue
src/pages/financial/cycleList.vue
+5
-4
cycleOrderList.vue
src/pages/financial/cycleOrderList.vue
+5
-4
userCommissionDetails.vue
src/pages/financial/userCommissionDetails.vue
+15
-7
No files found.
src/pages/financial/cycleList.vue
View file @
e59dbf76
...
@@ -100,7 +100,7 @@
...
@@ -100,7 +100,7 @@
:header-cell-style=
"
{backgroundColor:'#f5f6f7', color: '#a8a8b3'}"
:header-cell-style=
"
{backgroundColor:'#f5f6f7', color: '#a8a8b3'}"
border
border
style="width: 100%">
style="width: 100%">
<el-table-column
prop=
"SchoolName"
label=
"校区"
></el-table-column>
<el-table-column
prop=
"SchoolName"
label=
"校区"
width=
'150'
></el-table-column>
<el-table-column
prop=
"DeptName"
label=
"部门"
></el-table-column>
<el-table-column
prop=
"DeptName"
label=
"部门"
></el-table-column>
<el-table-column
prop=
"UserName"
label=
"销售"
>
</el-table-column>
<el-table-column
prop=
"UserName"
label=
"销售"
>
</el-table-column>
<el-table-column
width=
'170'
prop=
"ClassName"
label=
"班级信息"
>
<el-table-column
width=
'170'
prop=
"ClassName"
label=
"班级信息"
>
...
@@ -112,7 +112,7 @@
...
@@ -112,7 +112,7 @@
</el-table-column>
</el-table-column>
<el-table-column
prop=
"OrderId"
label=
"订单号"
>
<el-table-column
prop=
"OrderId"
label=
"订单号"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<div
style=
"cursor: pointer;text-decoration: underline;"
@
click=
"goUrlorderList('/sale/orderStatistics',scope.row
.OrderId
)"
>
{{
scope
.
row
.
OrderId
}}
</div>
<div
style=
"cursor: pointer;text-decoration: underline;"
@
click=
"goUrlorderList('/sale/orderStatistics',scope.row)"
>
{{
scope
.
row
.
OrderId
}}
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
...
@@ -402,9 +402,10 @@
...
@@ -402,9 +402,10 @@
ClassName
:
Name
,
ClassName
:
Name
,
});
});
},
},
goUrlorderList
(
path
,
ID
){
//订单跳转
goUrlorderList
(
path
,
row
){
//订单跳转
this
.
OpenNewUrl
(
path
,
{
this
.
OpenNewUrl
(
path
,
{
OrderId
:
ID
,
OrderId
:
row
.
OrderId
,
EnterID
:
row
.
UserId
});
});
},
},
},
},
...
...
src/pages/financial/cycleOrderList.vue
View file @
e59dbf76
...
@@ -52,7 +52,7 @@
...
@@ -52,7 +52,7 @@
<template>
<template>
<el-table
ref=
"filterTable"
:data=
"tableData"
v-loading=
'loading'
<el-table
ref=
"filterTable"
:data=
"tableData"
v-loading=
'loading'
:header-cell-style=
"
{backgroundColor:'#f5f6f7', color: '#a8a8b3'}" border style="width: 100%">
:header-cell-style=
"
{backgroundColor:'#f5f6f7', color: '#a8a8b3'}" border style="width: 100%">
<el-table-column
prop=
"SchoolName"
label=
"校区"
:filters=
'SchoolNamelist'
:filter-method=
"filterHandler"
>
<el-table-column
prop=
"SchoolName"
label=
"校区"
width=
'150'
:filters=
'SchoolNamelist'
:filter-method=
"filterHandler"
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"DeptName"
label=
"部门"
:filters=
'DeptNamelist'
:filter-method=
"filterHandler"
>
<el-table-column
prop=
"DeptName"
label=
"部门"
:filters=
'DeptNamelist'
:filter-method=
"filterHandler"
>
</el-table-column>
</el-table-column>
...
@@ -67,7 +67,7 @@
...
@@ -67,7 +67,7 @@
</el-table-column>
</el-table-column>
<el-table-column
prop=
"OrderId"
label=
"订单号"
>
<el-table-column
prop=
"OrderId"
label=
"订单号"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<div
style=
"cursor: pointer;text-decoration: underline;"
@
click=
"goUrlorderList('/sale/orderStatistics',scope.row
.OrderId
)"
>
{{
scope
.
row
.
OrderId
}}
</div>
<div
style=
"cursor: pointer;text-decoration: underline;"
@
click=
"goUrlorderList('/sale/orderStatistics',scope.row)"
>
{{
scope
.
row
.
OrderId
}}
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
...
@@ -302,9 +302,10 @@
...
@@ -302,9 +302,10 @@
ClassName
:
Name
,
ClassName
:
Name
,
});
});
},
},
goUrlorderList
(
path
,
ID
){
//订单跳转
goUrlorderList
(
path
,
row
){
//订单跳转
this
.
OpenNewUrl
(
path
,
{
this
.
OpenNewUrl
(
path
,
{
OrderId
:
ID
,
OrderId
:
row
.
OrderId
,
EnterID
:
row
.
UserId
});
});
},
},
...
...
src/pages/financial/userCommissionDetails.vue
View file @
e59dbf76
...
@@ -68,7 +68,7 @@
...
@@ -68,7 +68,7 @@
<
template
>
<
template
>
<el-table
ref=
"filterTable"
:data=
"tableData"
v-loading=
'loading'
<el-table
ref=
"filterTable"
:data=
"tableData"
v-loading=
'loading'
:header-cell-style=
"
{backgroundColor:'#f5f6f7', color: '#a8a8b3'}" border style="width: 100%">
:header-cell-style=
"
{backgroundColor:'#f5f6f7', color: '#a8a8b3'}" border style="width: 100%">
<el-table-column
prop=
"SchoolName"
label=
"校区"
></el-table-column>
<el-table-column
prop=
"SchoolName"
width=
'150'
label=
"校区"
></el-table-column>
<el-table-column
prop=
"DeptName"
label=
"部门"
></el-table-column>
<el-table-column
prop=
"DeptName"
label=
"部门"
></el-table-column>
<el-table-column
prop=
"UserName"
label=
"销售"
>
</el-table-column>
<el-table-column
prop=
"UserName"
label=
"销售"
>
</el-table-column>
<el-table-column
width=
'170'
prop=
"ClassName"
label=
"班级信息"
>
<el-table-column
width=
'170'
prop=
"ClassName"
label=
"班级信息"
>
...
@@ -80,15 +80,22 @@
...
@@ -80,15 +80,22 @@
</el-table-column>
</el-table-column>
<el-table-column
prop=
"OrderId"
label=
"订单号"
>
<el-table-column
prop=
"OrderId"
label=
"订单号"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<div
v-if=
"scope.row.OrderId"
style=
"cursor: pointer;text-decoration: underline;"
@
click=
"goUrlorderList('/sale/orderStatistics',scope.row
.OrderId
)"
>
<div
v-if=
"scope.row.OrderId"
style=
"cursor: pointer;text-decoration: underline;"
@
click=
"goUrlorderList('/sale/orderStatistics',scope.row)"
>
{{
scope
.
row
.
OrderId
}}
{{
scope
.
row
.
OrderId
}}
</div>
</div>
<div
v-if=
"scope.row.OrderId"
style=
"cursor: pointer;text-decoration: underline;"
@
click=
'goorderUrl(scope.row.OrderId)'
>
发放次数
</
template
>
</el-table-column>
<el-table-column
prop=
"IssueNum"
label=
"发放次数"
width=
'94'
>
<
template
slot-scope=
"scope"
>
<div
v-if=
"scope.row.IssueNum"
style=
"cursor: pointer;text-decoration: underline;"
@
click=
'goorderUrl(scope.row.OrderId)'
>
发放第
{{
scope
.
row
.
IssueNum
}}
次
</div>
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
width=
'130'
prop=
"TotalCommissionMoney"
label=
"订单发放信息"
>
<el-table-column
width=
'130'
prop=
"TotalCommissionMoney"
label=
"订单发放信息"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<div
v-if=
"scope.row.TotalCommissionMoney"
style=
"color: rgb(255, 156, 0);"
>
应发:
{{
scope
.
row
.
TotalCommissionMoney
}}
</div>
<div
v-if=
"scope.row.TotalCommissionMoney"
style=
"color: rgb(255, 156, 0);"
>
应发:
{{
scope
.
row
.
TotalCommissionMoney
}}
</div>
...
@@ -130,7 +137,7 @@
...
@@ -130,7 +137,7 @@
<div
style=
"color: rgb(233, 82, 82);"
>
{{
scope
.
row
.
YFMoney
}}
</div>
<div
style=
"color: rgb(233, 82, 82);"
>
{{
scope
.
row
.
YFMoney
}}
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
width=
'
85
'
prop=
"Periods"
label=
"期数"
>
</el-table-column>
<el-table-column
width=
'
90
'
prop=
"Periods"
label=
"期数"
>
</el-table-column>
<el-table-column
prop=
"Remark"
width=
'160'
label=
"备注"
>
</el-table-column>
<el-table-column
prop=
"Remark"
width=
'160'
label=
"备注"
>
</el-table-column>
</el-table>
</el-table>
</template>
</template>
...
@@ -296,9 +303,10 @@
...
@@ -296,9 +303,10 @@
goreturn
()
{
goreturn
()
{
this
.
$router
.
go
(
-
1
);
this
.
$router
.
go
(
-
1
);
},
},
goUrlorderList
(
path
,
ID
){
//订单跳转
goUrlorderList
(
path
,
row
){
//订单跳转
this
.
OpenNewUrl
(
path
,
{
this
.
OpenNewUrl
(
path
,
{
OrderId
:
ID
,
OrderId
:
row
.
OrderId
,
EnterID
:
row
.
UserId
});
});
},
},
goUrlclass
(
path
,
Names
){
//班级
goUrlclass
(
path
,
Names
){
//班级
...
...
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