Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_web
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
pseer
gxpt_web
Commits
983dc45b
Commit
983dc45b
authored
Jan 25, 2024
by
hayden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
系统管理-日志管理-扫呗支付日志:新增筛选条件门店、房间
parent
04ad5374
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
1 deletions
+40
-1
index.vue
src/views/system/saobeiApiLog/index.vue
+40
-1
No files found.
src/views/system/saobeiApiLog/index.vue
View file @
983dc45b
<
template
>
<div
class=
"app-container"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"100px"
>
<el-form-item
label=
"所属门店"
prop=
"storeId"
>
<el-select
v-model=
"queryParams.storeId"
placeholder=
"请选择所属门店"
@
change=
"onGetRoomListByStoreId"
clearable
>
<el-option
v-for=
"item in stores"
:key=
"item.id"
:label=
"item.name"
:value=
"item.id"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"所属房间"
prop=
"roomId"
>
<el-select
v-model=
"queryParams.roomId"
placeholder=
"请选择所属房间"
clearable
>
<el-option
v-for=
"item in rooms"
:key=
"item.id"
:label=
"item.name"
:value=
"item.id"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"扫呗订单号"
prop=
"outTradeNo"
>
<el-input
v-model=
"queryParams.outTradeNo"
...
...
@@ -177,12 +198,16 @@
<
script
>
import
{
listLog
,
getLog
,
delLog
,
addLog
,
updateLog
}
from
"@/api/system/saobeiApiLog"
;
import
{
allList
}
from
"@/api/system/store"
;
import
{
queryRoom
}
from
"@/api/system/room"
;
export
default
{
name
:
"SaobeiApiLog"
,
dicts
:
[
'saobei_service_type'
,
'saobei_status'
,
'saobei_pay_type'
],
data
()
{
return
{
stores
:
[],
rooms
:
[],
// 遮罩层
loading
:
true
,
// 选中数组
...
...
@@ -218,7 +243,9 @@ export default {
responseParams
:
null
,
result
:
null
,
resultMsg
:
null
,
flag
:
null
flag
:
null
,
roomId
:
null
,
storeId
:
null
}
,
// 表单参数
form
:
{
}
,
...
...
@@ -229,8 +256,20 @@ export default {
}
,
created
()
{
this
.
getList
();
this
.
onGetAllStoreList
();
}
,
methods
:
{
onGetAllStoreList
(){
allList
().
then
(
res
=>
{
this
.
stores
=
res
.
data
}
)
}
,
onGetRoomListByStoreId
(
id
)
{
this
.
queryParams
.
roomId
=
null
;
queryRoom
().
then
(
res
=>
{
this
.
rooms
=
res
.
data
.
filter
(
item
=>
item
.
storeId
===
id
)
}
)
}
,
/** 查询扫呗接口调用日志列表 */
getList
()
{
this
.
loading
=
true
;
...
...
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