Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ElectricitySheep
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
黄媛媛
ElectricitySheep
Commits
0b4e1235
Commit
0b4e1235
authored
Feb 01, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
5cff4763
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
263 additions
and
0 deletions
+263
-0
educationIndex.vue
src/components/education/educationIndex.vue
+3
-0
userPointDetailList.vue
src/components/education/userPointDetailList.vue
+254
-0
index.js
src/router/index.js
+6
-0
No files found.
src/components/education/educationIndex.vue
View file @
0b4e1235
...
...
@@ -208,6 +208,9 @@
<li
class=
"menu_item"
:class=
"
{'Fchecked':isChecked=='/pointOrderList'}" @click="isChecked='/pointOrderList',CommonJump('pointOrderList')">
<i
class=
"el-icon-menu"
></i><span>
排课订单
</span>
</li>
<li
class=
"menu_item"
:class=
"
{'Fchecked':isChecked=='/userPointDetailList'}" @click="isChecked='/userPointDetailList',CommonJump('userPointDetailList')">
<i
class=
"el-icon-menu"
></i><span>
点数明细
</span>
</li>
</ul>
</div>
</div>
...
...
src/components/education/userPointDetailList.vue
0 → 100644
View file @
0b4e1235
<
template
>
<div
class=
"userPointDetailList"
>
<div
class=
"el-card__header"
>
<span>
点数明细列表
</span>
</div>
<div
class=
"content"
>
<div
style=
"display: flex;flex-direction: row;align-items: center"
>
<div
class=
"block"
>
<div
class=
"searchInput"
style=
"width:250px"
>
<el-input
style=
"display:inline-block;width:225px;height:30px"
placeholder=
"请输入订单号搜索"
v-model=
"msg.OrderId"
size=
"small"
@
clear=
"getList"
@
keyup
.
enter
.
native=
"getList"
clearable
>
</el-input>
<span
@
click=
"getList"
class=
"el-icon-search"
style=
"color:#979dad;font-size:14px;position:relative;top:1px"
></span>
</div>
<span>
类型
</span>
<el-select
class=
"w120"
@
change=
"getList()"
style=
"margin-right: 10px;"
v-model=
"msg.Type"
size=
"small"
placeholder=
"请选择"
>
<el-option
v-for=
"item in TypeList"
:key=
"item.Id"
:label=
"item.Name"
:value=
"item.Id"
>
</el-option>
</el-select>
<span>
用户
</span>
<el-select
class=
"w120"
@
change=
"getList()"
v-model=
"msg.UserId"
size=
"small"
:filter-method=
"ChangeListName"
filterable
placeholder=
"请选择"
>
<el-option
label=
"不限"
:value=
"0"
></el-option>
<el-option
v-for=
"item in userList"
:key=
"item.Id"
:label=
"item.Name"
:value=
"item.Id"
>
</el-option>
</el-select>
</div>
</div>
</div>
<div
style=
"padding: 20px;background: #fff;margin-top: 20px"
>
<el-table
:data=
"tableData"
header-cell-class-name=
"headClass"
style=
"width: 100%"
border
>
<el-table-column
prop=
"Id"
label=
"ID"
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"Type"
label=
"类型"
>
<template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
Type
==
1
?
'收入'
:
'支出'
}}
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"Name"
label=
"用户信息"
>
<
template
slot-scope=
"scope"
>
<div
class=
"app-image"
:style=
"
{backgroundImage:'url(' + scope.row.UserPhoto + ')',backgroundSize:'cover'}">
</div>
<div
flex=
"dir:left cross:center"
>
{{
scope
.
row
.
UserName
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"PonitNum"
width=
"100"
label=
"点数"
>
</el-table-column>
<el-table-column
prop=
"Remarks"
label=
"备注"
>
</el-table-column>
<el-table-column
prop=
"CreateDate"
label=
"创建时间"
>
</el-table-column>
<!-- <el-table-column-->
<!-- fixed="right"-->
<!-- label="操作"-->
<!-- width="180"-->
<!-- >-->
<!-- <template slot-scope="scope">-->
<!-- <el-tooltip class="item" effect="dark" content="编辑" placement="top" >-->
<!-- <img src="../../assets/img/setup/edit.png" alt="" class="imgstyle" @click="Edit(scope.row)">-->
<!-- </el-tooltip>-->
<!-- <el-tooltip class="item" effect="dark" content="删除" placement="top" >-->
<!-- <img src="../../assets/img/setup/del.png" alt="" class="imgstyle" @click="delete_b(scope.row)">-->
<!-- </el-tooltip>-->
<!-- </template>-->
<!-- </el-table-column>-->
</el-table>
<el-pagination
style=
"text-align:right"
background
@
current-change=
"handleCurrentChange"
:page-size=
"msg.pageSize"
layout=
"prev, pager, next"
:current-page
.
sync=
"msg.pageIndex"
:total=
"count"
>
</el-pagination>
</div>
</div>
</template>
<
script
>
export
default
{
name
:
"userPointDetailList"
,
data
(){
return
{
msg
:{
pageIndex
:
1
,
pageSize
:
15
,
Type
:
0
,
UserId
:
0
,
OrderId
:
''
,
},
changeState
:
false
,
dateList
:[],
TypeList
:[
{
Name
:
'不限'
,
Id
:
0
},
{
Name
:
'收入'
,
Id
:
1
},
{
Name
:
'支出'
,
Id
:
2
},
],
tableData
:[],
count
:
0
,
loading
:
false
,
EnableMsg
:{
Ids
:
''
,
TeacherStatus
:
0
,
},
userList
:[],
usermsg
:{
pageIndex
:
1
,
pageSize
:
20
,
Name
:
''
,
Source
:
0
,
MemberGrade
:
0
,
Id
:
0
,
Moblie
:
''
}
}
},
created
(){
this
.
getDateList
();
//获取数据
this
.
getyonghuid
()
},
methods
:{
ChangeListName
(
val
)
{
this
.
usermsg
.
Name
=
val
;
this
.
getyonghuid
();
},
getyonghuid
(){
this
.
apipost
(
"/api/user/GetMemberUserDropDownList"
,
this
.
usermsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
let
pageData
=
res
.
data
.
data
.
pageData
;
this
.
userList
=
pageData
;
}
})
},
getDateList
(){
this
.
loading
=
true
;
let
msg
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
msg
))
if
(
msg
.
OrderId
==
''
){
msg
.
OrderId
=
0
}
msg
.
OrderId
=
Number
(
msg
.
OrderId
)
this
.
apipost
(
"/api/Point/GetUserPointDetailPageList"
,
msg
,
res
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
){
this
.
tableData
=
res
.
data
.
data
.
pageData
;
this
.
count
=
res
.
data
.
data
.
count
;
}
else
{
this
.
Info
(
res
.
data
.
message
);
}
})
},
getList
(){
this
.
msg
.
pageIndex
=
1
this
.
getDateList
()
},
handleCurrentChange
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
getDateList
();
},
},
}
</
script
>
<
style
>
.userPointDetailList
.el-card__header
{
display
:
flex
;
flex-direction
:
row
;
align-items
:
center
;
justify-content
:
space-between
;
background
:
#fff
;
}
.userPointDetailList
.el-button--small
{
padding
:
9px
15px
;
}
.userPointDetailList
.content
.searchInput
{
border
:
1px
solid
#DCDFE6
;
border-radius
:
4px
;
/*margin-left: 10px;*/
}
.userPointDetailList
.content
.searchInput
.el-input__inner
{
border
:
none
;
outline
:
none
;
height
:
30px
;
line-height
:
30px
;
}
.userPointDetailList
.content
.searchInput
{
line-height
:
normal
;
display
:
inline-table
;
border-collapse
:
separate
;
border-spacing
:
0
;
width
:
250px
;
}
.userPointDetailList
.content
{
background
:
#fff
;
margin-top
:
10px
;
padding
:
15px
;
box-sizing
:
border-box
;
}
.userPointDetailList
.el-tag
{
margin-right
:
5px
;
}
.userPointDetailList
.app-image
{
background-position
:
center
center
;
width
:
50px
;
height
:
50px
;
border-radius
:
0%
;
float
:
left
;
margin-right
:
8px
;
}
</
style
>
src/router/index.js
View file @
0b4e1235
...
...
@@ -427,6 +427,12 @@ export default new Router({
path
:
'/pointOrderList'
,
name
:
'pointOrderList'
,
component
:
resolve
=>
require
([
'@/components/education/pointOrderList'
],
resolve
),
},
//网课 明细列表
{
path
:
'/userPointDetailList'
,
name
:
'userPointDetailList'
,
component
:
resolve
=>
require
([
'@/components/education/userPointDetailList'
],
resolve
),
}
]
},
...
...
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