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
0918047a
Commit
0918047a
authored
Apr 23, 2021
by
baihong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add:打卡照片审核
parent
d9dc8421
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
145 additions
and
0 deletions
+145
-0
routers.js
src/router/routers.js
+9
-0
photoReview.vue
src/view/clockEarly/photoReview.vue
+136
-0
No files found.
src/router/routers.js
View file @
0918047a
...
...
@@ -160,6 +160,15 @@ export default [
component
:
()
=>
import
(
"@/view/clockEarly/setTabs.vue"
)
},
{
path
:
"/clockEarly/photoReview"
,
name
:
"clockPhotoReview"
,
meta
:
{
icon
:
"md-grid"
,
title
:
"打卡照片审核"
},
component
:
()
=>
import
(
"@/view/clockEarly/photoReview.vue"
)
},
{
path
:
"/clockEarly/detail"
,
meta
:
{
title
:
"详情"
,
...
...
src/view/clockEarly/photoReview.vue
0 → 100644
View file @
0918047a
<
template
>
<div
class=
"content"
>
<div
class=
"topSearch"
>
<div
class=
"left"
>
用户搜索:
<Input
style=
"width:150px"
enter-button
placeholder=
"请输入"
/>
<span
style=
"margin-left:10px"
>
选择日期:
</span>
<DatePicker
:value=
"value2"
format=
"yyyy/MM/dd"
type=
"daterange"
placement=
"bottom-end"
placeholder=
"Select date"
style=
"width: 200px"
></DatePicker>
<span
style=
"margin-left:10px"
>
审核状态:
</span>
<Select
style=
"width: 150px"
placeholder=
"请选择"
>
<Option
value=
"beijing"
>
真我币
</Option>
<Option
value=
"shanghai"
>
优惠券
</Option>
</Select>
<Button
type=
"primary"
@
click=
"goDetail"
>
查 询
</Button>
<Button
type=
"primary"
ghost
>
重 置
</Button>
</div>
<div
class=
"right"
>
<Button
type=
"primary"
>
导 出
</Button>
</div>
</div>
<Row
style=
"margin:-10px 0 20px 0"
>
<Col
span=
"24"
><Button
type=
"primary"
@
click=
"goDetail"
>
批量通过
</Button
><Button
style=
"margin-left:20px"
type=
"primary"
@
click=
"goDetail"
>
批量拒绝
</Button
></Col
>
</Row>
<Table
:loading=
"$store.state.app.isLoading"
border
ref=
"selection"
:columns=
"columns"
:data=
"data"
>
<template
slot-scope=
"
{ row }" slot="name">
<span>
{{
row
.
details
.
name
}}
</span>
</
template
>
<
template
slot-scope=
"{ row }"
slot=
"title"
>
<span>
{{
row
.
details
.
title
}}
</span>
</
template
>
<
template
slot-scope=
"{ row }"
slot=
"created_at"
>
<span>
{{
row
.
created_at
|
format
}}
</span>
</
template
>
<
template
slot-scope=
"{ row }"
slot=
"enable"
>
<i-switch
:value=
"row.is_enable === 1 ? true : false"
@
on-change=
"
value =>
{
change(value, row);
}
"
/>
</
template
>
<
template
slot-scope=
"{ row }"
slot=
"action"
>
<a
@
click=
"edit(row)"
>
编辑
</a>
</
template
>
<
template
slot-scope=
"{ row }"
slot=
"edit"
>
<a
@
click=
"goTheme(row)"
>
编辑
</a>
</
template
>
</Table>
<Modal
v-model=
"modal1"
title=
"拒绝"
@
on-ok=
"ok"
@
on-cancel=
"cancel"
>
<Input
v-model=
"value5"
type=
"textarea"
placeholder=
"请输入退回原因"
/>
</Modal>
<Modal
v-model=
"modal2"
title=
"通过"
@
on-ok=
"ok"
@
on-cancel=
"cancel"
>
<Form
ref=
"formCustom"
:label-width=
"70"
>
<FormItem
label=
"评论内容"
prop=
"passwd"
>
<Input
v-model=
"value5"
type=
"textarea"
placeholder=
"请输入评论内容"
/>
</FormItem>
<FormItem
label=
"打赏"
prop=
"passwdCheck"
>
<Input
type=
"number"
></Input>
</FormItem>
</Form>
</Modal>
</div>
</template>
<
script
>
import
{
getScenes
,
delScenes
,
editScenes
}
from
"@/api/scenes"
;
export
default
{
name
:
"categories"
,
components
:
{},
data
()
{
return
{
modal1
:
false
,
modal2
:
true
,
data
:
[],
columns
:
[
{
title
:
"活动日期"
,
key
:
"created_at"
},
{
title
:
"姓名"
,
slot
:
"name"
},
{
title
:
"手机号"
,
slot
:
"title"
},
{
title
:
"图片"
,
key
:
"created_at"
},
{
title
:
"上传时间"
,
slot
:
"enable"
},
{
title
:
"审核状态"
,
slot
:
"enable"
},
{
title
:
"操作"
,
slot
:
"action"
}
]
};
},
methods
:
{
goDetail
()
{
this
.
$router
.
push
({
path
:
"/signIn/detail"
,
query
:
{
id
:
"new"
}
});
}
},
mounted
()
{}
};
</
script
>
<
style
lang=
"less"
></
style
>
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