Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform-ui
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
youjj
cloud-platform-ui
Commits
a4f0adef
Commit
a4f0adef
authored
Jul 22, 2019
by
denghaorong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
钱包管理和优惠券管理
parent
20a437af
Changes
7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
643 additions
and
11 deletions
+643
-11
cunponManagements.js
src/api/cunponManagements.js
+13
-0
purseManage.js
src/api/purseManage.js
+12
-0
index.js
src/router/index.js
+23
-1
cunponManagement.vue
src/views/cunponManagements/cunponManagement.vue
+386
-0
detail.vue
src/views/order/tourOrderInfo/detail.vue
+17
-8
discountRecord.vue
src/views/purseManage/discountRecord.vue
+190
-0
gainRecord.vue
src/views/purseManage/gainRecord.vue
+2
-2
No files found.
src/api/cunponManagements.js
0 → 100644
View file @
a4f0adef
import
fetch
from
'utils/fetch'
;
/**
* 获取优惠券管理列表
* @param query
*/
export
function
cunponManagementList
(
query
)
{
return
fetch
({
url
:
''
,
method
:
'get'
,
params
:
query
});
}
\ No newline at end of file
src/api/purseManage.js
View file @
a4f0adef
...
...
@@ -47,3 +47,15 @@ export function rewardSetting(data) {
data
:
data
});
}
/**
* 获取收益流水列表
* @param query
*/
export
function
discountList
(
query
)
{
return
fetch
({
url
:
'/api/admin/walletcath/admin/page'
,
method
:
'get'
,
params
:
query
});
}
\ No newline at end of file
src/router/index.js
View file @
a4f0adef
...
...
@@ -416,6 +416,12 @@ export const asyncRouterMap = [{
component
:
_import
(
'purseManage/commissionSettings'
),
name
:
'佣金设置比例'
,
authority
:
'commissionSettings'
},
{
path
:
'discountRecord'
,
component
:
_import
(
'purseManage/discountRecord'
),
name
:
'提现记录'
,
authority
:
'discountRecord'
}
]
},
...
...
@@ -460,4 +466,20 @@ export const asyncRouterMap = [{
authority
:
'appVersion'
}
]
}];
},
{
path
:
'/cunponManagements'
,
component
:
Layout
,
name
:
'优惠券管理'
,
icon
:
'setting'
,
authority
:
'cunponManagements'
,
children
:
[
{
path
:
'cunponManagement'
,
component
:
_import
(
'cunponManagements/cunponManagement'
),
name
:
'优惠券管理'
,
authority
:
'cunponManagement'
}
]
}
];
src/views/cunponManagements/cunponManagement.vue
0 → 100644
View file @
a4f0adef
This diff is collapsed.
Click to expand it.
src/views/order/tourOrderInfo/detail.vue
View file @
a4f0adef
...
...
@@ -60,14 +60,23 @@
</el-form-item>
</el-col>
</el-row>
<!--
<el-table
:data=
"tableData"
border
fit
highlight-current-row
style=
"width: 100%"
>
<el-table-column
width=
"200"
align=
"center"
label=
"房车"
>
<template
scope=
"scope"
>
<span>
{{
scope
.
no
}}
</span>
</
template
>
</el-table-column>
</el-table>
-->
<!--
<table
class=
"orderDetail"
>
<tr>
<td>
房车
</td>
<td>
租借天数
</td>
<td>
费用明细
</td>
</tr>
<tr>
<td>
{{
form
.
name
}}{{
tourCostDetail
}}
</td>
<td>
{{
form
.
orderRentVehicleDetail
.
dayNum
}}
天
</td>
<td>
{{
tourCostDetail
}}
</td>
</tr>
<tr>
<td
></td>
<td
></td>
<td
>
共计:
{{
form
.
realAmount
}}
</td>
</tr>
</table>
-->
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
...
...
src/views/purseManage/discountRecord.vue
0 → 100644
View file @
a4f0adef
<
template
>
<div
class=
"app-container calendar-list-container"
v-loading
.
body=
"showLoadingBody"
>
<div>
<div
class=
"filter-container"
ref=
"filter-container"
>
<el-form
ref=
"queryForm"
:inline=
"inline"
:model=
"listQuery"
label-width=
"100px"
>
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"姓名"
>
<el-input
v-model
.
number=
"listQuery.username"
placeholder=
"请输入姓名"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"手机号"
>
<el-input
v-model
.
number=
"listQuery.phone"
placeholder=
"请输入手机号"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"状态"
prop=
"type"
>
<el-select
class=
"filter-item"
v-model=
"listQuery.state"
placeholder=
"请输入状态"
>
<el-option
v-for=
"(item,index) in typeOptions"
:key=
"index"
:label=
"item.name"
:value=
"item.val"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
</el-form>
<el-button
class=
"filter-item"
type=
"primary"
v-waves
icon=
"search"
@
click=
"handleFilter"
>
搜索
</el-button>
</div>
<el-table
:key=
'tableKey'
:data=
"list"
border
fit
highlight-current-row
style=
"width: 100%;"
>
<el-table-column
type=
"index"
width=
"150"
align=
"center"
label=
"姓名"
>
<template
scope=
"scope"
>
<span>
{{
scope
.
row
.
username
}}
</span>
</
template
>
</el-table-column>
<el-table-column
width=
"200"
align=
"center"
label=
"手机号"
>
<
template
scope=
"scope"
>
<span>
{{
scope
.
row
.
phone
}}
</span>
</
template
>
</el-table-column>
<el-table-column
width=
"200"
align=
"center"
label=
"金额"
>
<
template
scope=
"scope"
>
<span>
{{
scope
.
row
.
amount
}}
</span>
</
template
>
</el-table-column>
<el-table-column
width=
"200"
align=
"center"
label=
"状态"
>
<
template
scope=
"scope"
>
<span
v-if=
"scope.row.stauts==0"
>
未到帐
</span>
<span
v-if=
"scope.row.stauts==1"
>
已到账
</span>
</
template
>
</el-table-column>
<el-table-column
width=
"200"
align=
"center"
label=
"申请时间"
>
<
template
scope=
"scope"
>
<span>
{{
scope
.
row
.
crtTimeStr
}}
</span>
</
template
>
</el-table-column>
<el-table-column
width=
"200"
align=
"center"
label=
"到账时间"
>
<
template
scope=
"scope"
>
<span>
{{
scope
.
row
.
finishTimeStr
}}
</span>
</
template
>
</el-table-column>
</el-table>
<div
v-show=
"!listLoading"
class=
"pagination-container"
>
<el-pagination
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChange"
:current-page
.
sync=
"listQuery.page"
:page-sizes=
"[10,20,30,40,50]"
:page-size=
"listQuery.limit"
layout=
"total, sizes, prev, pager, next, jumper"
:total=
"total"
></el-pagination>
</div>
</div>
</div>
</template>
<
script
>
import
{
formatDate
}
from
'utils/dateFormattor'
;
import
{
toEast8Date
,
deepCopyDate
,
newEast8Date
,
convertDate2Str
,
timestamp2Date
}
from
'utils/dateUtils'
;
import
rsCode
from
'../../utils/rsCode'
;
import
{
mapGetters
}
from
'vuex'
;
import
{
getToken
}
from
'utils/auth'
;
import
{
discountList
}
from
'api/purseManage'
;
import
Element1
from
"../admin/menu/components/element"
;
import
ElRow
from
"element-ui/packages/row/src/row"
;
import
ElCol
from
"element-ui/packages/col/src/col"
;
export
default
{
name
:
'discountRecord'
,
components
:
{
ElCol
,
ElRow
,
Element1
,
},
data
()
{
return
{
typeOptions
:
[
{
"name"
:
'全部'
,
"val"
:
''
},
{
"name"
:
'未到账'
,
"val"
:
'0'
},
{
"name"
:
'已到账'
,
"val"
:
'1'
},
],
BASE_API
:
process
.
env
.
BASE_API
,
showLoadingBody
:
false
,
list
:
null
,
total
:
null
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
limit
:
20
,
phone
:
''
,
//手机号
username
:
''
,
//姓名
state
:
''
,
//状态
},
inline
:
true
,
tableKey
:
0
}
},
created
()
{
this
.
getList
();
},
computed
:
{
...
mapGetters
([
'elements'
])
},
methods
:
{
/**
* 获取提现列表
* */
getList
()
{
this
.
listLoading
=
true
;
discountList
(
this
.
listQuery
).
then
(
response
=>
{
let
totalCountRs
=
undefined
;
let
listRs
=
undefined
;
if
(
!
this
.
$utils
.
isEmpty
(
response
.
data
.
data
)
&&
this
.
$utils
.
isInteger
(
response
.
data
.
totalCount
))
{
listRs
=
response
.
data
.
data
;
totalCountRs
=
response
.
data
.
totalCount
;
listRs
.
map
(
function
(
item
){
item
.
crtTimeStr
=
timestamp2Date
(
item
.
crtTime
);
item
.
finishTimeStr
=
timestamp2Date
(
item
.
finishTime
);
});
}
this
.
listLoading
=
false
;
this
.
list
=
listRs
;
this
.
total
=
totalCountRs
;
})
},
handleFilter
()
{
this
.
listQuery
.
page
=
1
;
this
.
$refs
.
queryForm
.
validate
(
valid
=>
{
if
(
valid
)
{
this
.
getList
();
}
else
{
return
false
;
}
});
},
handleSizeChange
(
val
)
{
this
.
listQuery
.
limit
=
val
;
this
.
getList
();
},
handleCurrentChange
(
val
)
{
this
.
listQuery
.
page
=
val
;
this
.
getList
();
}
}
}
</
script
>
src/views/purseManage/gainRecord.vue
View file @
a4f0adef
<
template
>
<div
class=
"app-container calendar-list-container"
v-loading
.
body=
"showLoadingBody"
>
<div
v-if=
"!oneCampsiteDialogVisible"
>
<div>
<div
class=
"filter-container"
ref=
"filter-container"
>
<el-form
ref=
"queryForm"
:inline=
"inline"
:model=
"listQuery"
label-width=
"100px"
>
<el-row>
...
...
@@ -17,7 +17,7 @@
<el-col
:span=
"8"
>
<el-form-item
label=
"流水类型"
prop=
"type"
>
<el-select
class=
"filter-item"
v-model=
"listQuery.source"
placeholder=
"请输入资源类型"
>
<el-option
v-for=
"
item in typeOptions"
:key=
"item
"
:label=
"item.name"
:value=
"item.val"
>
</el-option>
<el-option
v-for=
"
(item, index) in typeOptions"
:key=
"index
"
:label=
"item.name"
:value=
"item.val"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
...
...
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