Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
admin
Overview
Overview
Details
Activity
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
baihong
admin
Commits
9eade40f
Commit
9eade40f
authored
Apr 27, 2021
by
baihong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
打卡记录
parent
3cf2e67e
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
74 additions
and
38 deletions
+74
-38
activityClocks.js
src/api/clock/activityClocks.js
+4
-0
detail.vue
src/view/clockEarly/detail.vue
+68
-35
userList.vue.vue
src/view/clockEarly/userList.vue.vue
+2
-3
No files found.
src/api/clock/activityClocks.js
View file @
9eade40f
...
@@ -36,6 +36,10 @@ export const getActivityConfigByPay = (data) => {
...
@@ -36,6 +36,10 @@ export const getActivityConfigByPay = (data) => {
export
const
updateRule
=
(
data
)
=>
{
export
const
updateRule
=
(
data
)
=>
{
return
$http
.
putObj
(
'/cms/configs/updateRule'
,
data
)
return
$http
.
putObj
(
'/cms/configs/updateRule'
,
data
)
}
}
//打卡记录
export
const
activityClockRecords
=
(
data
)
=>
{
return
$http
.
get
(
'/cms/activityClockRecords'
,
data
)
}
//缴费配置
//缴费配置
export
const
update
=
(
data
)
=>
{
export
const
update
=
(
data
)
=>
{
return
$http
.
putObj
(
'/cms/configs/update'
,
data
)
return
$http
.
putObj
(
'/cms/configs/update'
,
data
)
...
...
src/view/clockEarly/detail.vue
View file @
9eade40f
<
template
>
<
template
>
<div
class=
"detail"
>
<div
class=
"detail"
>
<Card
dis-hover
:padding=
'30'
>
<Card
dis-hover
:padding=
"30"
>
<p
slot=
"title"
>
基础信息
</p>
<p
slot=
"title"
>
基础信息
</p>
<Row>
<Row>
<Col
span=
"8"
>
用户ID:
123123123
</Col>
<Col
span=
"8"
>
用户ID:
{{
row
.
user_uuid
}}
</Col>
<Col
span=
"8"
>
头像:
<Avatar
icon=
"ios-person
"
/></Col>
<Col
span=
"8"
>
头像:
<Avatar
:src=
"row.default_avatar
"
/></Col>
<Col
span=
"8"
>
姓名:
阿斯顿马丁
</Col>
<Col
span=
"8"
>
姓名:
{{
row
.
nick_name
}}
</Col>
</Row>
</Row>
<Row
style=
"margin-top: 40px;"
>
<Row
style=
"margin-top: 40px;"
>
<Col
span=
"8"
>
手机号:17762662211
</Col>
<Col
span=
"8"
>
手机号:
{{
row
.
phone
}}
</Col>
<Col
span=
"8"
>
真我币:1233123
</Col>
<Col
span=
"8"
>
真我币:
{{
row
.
sign_in_score
}}
</Col>
<Col
span=
"8"
>
签到次数:365
</Col>
<Col
span=
"8"
>
打卡次数:
{{
row
.
user_sign_in_vo
&&
row
.
user_sign_in_vo
.
cumulative_sign_in
}}
</Col
>
</Row>
</Row>
</Card>
</Card>
<div
class=
"pc-main"
>
<div
class=
"pc-main"
>
...
@@ -19,7 +21,7 @@
...
@@ -19,7 +21,7 @@
<TabPane
label=
"优惠卷"
name=
"2"
></TabPane>
<TabPane
label=
"优惠卷"
name=
"2"
></TabPane>
</Tabs>
</Tabs>
<Table
<Table
v-if=
"tab===
'1'"
v-if=
"tab ===
'1'"
:loading=
"$store.state.app.isLoading"
:loading=
"$store.state.app.isLoading"
border
border
ref=
"selection"
ref=
"selection"
...
@@ -64,6 +66,11 @@
...
@@ -64,6 +66,11 @@
<a
@
click=
"edit(row)"
>
编辑
</a>
<a
@
click=
"edit(row)"
>
编辑
</a>
</
template
>
</
template
>
</Table>
</Table>
<Pager
class=
"margin-top-10"
:config=
"config"
@
on-change=
"handlePager"
></Pager>
</div>
</div>
<div
class=
"btn"
>
<div
class=
"btn"
>
<Button
type=
"primary"
@
click=
"$router.go(-1)"
>
返回
</Button>
<Button
type=
"primary"
@
click=
"$router.go(-1)"
>
返回
</Button>
...
@@ -72,59 +79,85 @@
...
@@ -72,59 +79,85 @@
</template>
</template>
<
script
>
<
script
>
import
{
getScenes
,
delScenes
,
editScenes
}
from
'@/api/scenes'
import
{
activityClockRecords
}
from
"@/api/clock/activityClocks"
;
import
Pager
from
"@/view/common/Pager.vue"
;
export
default
{
export
default
{
name
:
'categories'
,
name
:
"categories"
,
components
:
{},
components
:
{
data
()
{
Pager
},
data
()
{
return
{
return
{
tab
:
'1'
,
tab
:
"1"
,
config
:
{
total
:
0
,
size
:
10
,
current
:
1
},
pageIndex
:
1
,
pageSize
:
10
,
row
:
this
.
$route
.
query
.
row
,
data
:
[],
data
:
[],
yhqcolumns
:
[
yhqcolumns
:
[
{
{
title
:
'优惠卷名称'
,
title
:
"优惠卷名称"
,
key
:
'created_at'
key
:
"created_at"
},
},
{
{
title
:
'获奖时间'
,
title
:
"获奖时间"
,
slot
:
'name'
slot
:
"name"
}
}
],
],
columns
:
[
columns
:
[
{
{
title
:
'活动日期'
,
title
:
"活动日期"
,
key
:
'created_at'
slot
:
"activity_date"
},
},
{
{
title
:
'打卡状态'
,
title
:
"打卡状态"
,
slot
:
'name'
key
:
"status_name"
},
},
{
{
title
:
'支付金额(真我币)'
,
title
:
"支付金额(真我币)"
,
slot
:
'title'
key
:
"pay_amount"
},
},
{
{
title
:
'报名时间'
,
title
:
"报名时间"
,
key
:
'created_at'
slot
:
"applyTime"
},
},
{
{
title
:
'打开时间'
,
title
:
"打卡时间"
,
slot
:
'enable'
slot
:
"clockTime"
},
},
{
{
title
:
'本场瓜分(真我币)'
,
title
:
"本场瓜分(真我币)"
,
slot
:
'enable'
key
:
"expense_amount"
},
},
{
{
title
:
'操作'
,
title
:
"操作"
,
slot
:
'action'
slot
:
"action"
}
}
]
]
};
},
methods
:
{
handlePager
(
pager
)
{
this
.
pageIndex
=
pager
.
current
;
this
.
pageSize
=
pager
.
size
;
this
.
search
();
},
search
()
{
let
params
=
{
uuid
:
this
.
row
.
user_uuid
,
pageIndex
:
this
.
pageIndex
,
pageSize
:
this
.
pageSize
};
activityClockRecords
(
params
).
then
(
res
=>
{
this
.
config
.
total
=
res
.
total
;
this
.
data
=
res
.
data
;
});
}
}
},
},
methods
:
{},
mounted
()
{
mounted
()
{}
this
.
search
()
}
}
};
</
script
>
</
script
>
<
style
lang=
"less"
scoped
>
<
style
lang=
"less"
scoped
>
...
@@ -140,5 +173,5 @@ export default {
...
@@ -140,5 +173,5 @@ export default {
background-color
:
#fff
;
background-color
:
#fff
;
bottom
:
10px
;
bottom
:
10px
;
padding
:
10px
30px
;
padding
:
10px
30px
;
}
}
</
style
>
</
style
>
src/view/clockEarly/userList.vue.vue
View file @
9eade40f
...
@@ -91,7 +91,6 @@ export default {
...
@@ -91,7 +91,6 @@ export default {
let
params
=
{
let
params
=
{
search
:
this
.
keyword
,
search
:
this
.
keyword
,
activity_type
:
1
,
activity_type
:
1
,
user_uuid
:
sessionStorage
.
getItem
(
'admin_uuid'
),
page_index
:
this
.
pageIndex
,
page_index
:
this
.
pageIndex
,
page_size
:
this
.
pageSize
page_size
:
this
.
pageSize
};
};
...
@@ -100,8 +99,8 @@ export default {
...
@@ -100,8 +99,8 @@ export default {
this
.
data
=
res
.
data
;
this
.
data
=
res
.
data
;
});
});
},
},
goDetail
()
{
goDetail
(
row
)
{
this
.
$router
.
push
({
path
:
"/
signIn/detail"
,
query
:
{
id
:
"new"
}
});
this
.
$router
.
push
({
path
:
"/
clockEarly/detail"
,
query
:
{
row
:
row
}
});
}
}
},
},
mounted
()
{
mounted
()
{
...
...
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