Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
f1019607
Commit
f1019607
authored
Aug 21, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
63b7f6b7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
526 additions
and
13 deletions
+526
-13
restaurantRankingDetails.vue
src/components/Restaurant/restaurantRankingDetails.vue
+498
-0
restaurantRankingList.vue
src/components/Restaurant/restaurantRankingList.vue
+20
-13
config.js
src/router/config.js
+8
-0
No files found.
src/components/Restaurant/restaurantRankingDetails.vue
0 → 100644
View file @
f1019607
This diff is collapsed.
Click to expand it.
src/components/Restaurant/restaurantRankingList.vue
View file @
f1019607
...
@@ -286,24 +286,24 @@
...
@@ -286,24 +286,24 @@
</el-table-column>
</el-table-column>
<el-table-column
prop=
"DinnerRealName"
label=
"餐厅真实名称"
>
<el-table-column
prop=
"DinnerRealName"
label=
"餐厅真实名称"
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"UserNum"
label=
"使用次数"
>
<el-table-column
width=
"150"
prop=
"UserNum"
label=
"使用次数"
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"PriceNormalUseNum"
label=
"常规团使用次数"
>
<el-table-column
width=
"150"
prop=
"PriceNormalUseNum"
label=
"常规团使用次数"
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"PriceNormalPeopleNum"
label=
"常规团使用人数"
>
<el-table-column
width=
"150"
prop=
"PriceNormalPeopleNum"
label=
"常规团使用人数"
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"PriceOneDayTripUseNum"
label=
"小包团使用次数"
>
<el-table-column
width=
"150"
prop=
"PriceOneDayTripUseNum"
label=
"小包团使用次数"
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"PriceOneDayTripPeopleNum"
label=
"小包团使用人数"
>
<el-table-column
width=
"150"
prop=
"PriceOneDayTripPeopleNum"
label=
"小包团使用人数"
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"PricePacketGroupUseNum"
label=
"当地游团使用次数"
>
<el-table-column
width=
"150"
prop=
"PricePacketGroupUseNum"
label=
"当地游团使用次数"
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"PricePacketGroupPeopleNum"
label=
"当地游团使用人数"
>
<el-table-column
width=
"150"
prop=
"PricePacketGroupPeopleNum"
label=
"当地游团使用人数"
>
</el-table-column>
</el-table-column>
<el-table-column
:label=
"$t('system.table_operation')"
width=
"
15
0"
>
<el-table-column
:label=
"$t('system.table_operation')"
width=
"
8
0"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"$t('pub.updateMsg')
"
placement=
"top"
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"餐厅使用详情
"
placement=
"top"
>
<el-button
@
click=
"go
SubInfo('demesticRestaurantInfoManage',scope.row.NewDiningID)"
type=
"primary"
icon=
"el-icon-edit
"
circle
>
<el-button
@
click=
"go
Url('restaurantRankingDetails',scope.row.NewDiningID,scope.row.NewDinnerName,scope.row.DinnerRealName)"
type=
"primary"
icon=
"iconfont icon-menpiao1
"
circle
>
</el-button>
</el-button>
</el-tooltip>
</el-tooltip>
</
template
>
</
template
>
...
@@ -432,13 +432,20 @@
...
@@ -432,13 +432,20 @@
null
null
);
);
},
},
goUrl
(
path
,
id
)
{
goUrl
(
path
,
id
,
NewDinnerName
,
DinnerRealName
)
{
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
path
,
path
:
path
,
query
:
{
query
:
{
id
:
id
,
NewDinnerName
:
NewDinnerName
,
DinnerRealName
:
DinnerRealName
,
QStartDate
:
this
.
msg
.
QStartDate
,
QEndDate
:
this
.
msg
.
QEndDate
,
OutBranchId
:
this
.
msg
.
OutBranchId
,
PlaceID
:
this
.
msg
.
PlaceID
,
TeamType
:
this
.
msg
.
TeamType
,
DiningId
:
id
,
blank
:
'y'
,
blank
:
'y'
,
tab
:
'
套餐查询
'
tab
:
'
餐厅使用详情
'
}
}
});
});
},
},
...
...
src/router/config.js
View file @
f1019607
...
@@ -1529,6 +1529,14 @@ export default {
...
@@ -1529,6 +1529,14 @@ export default {
title
:
'餐厅使用排行'
title
:
'餐厅使用排行'
},
},
},
},
{
path
:
'/restaurantRankingDetails'
,
//餐厅使用排行详情
name
:
'restaurantRankingDetails'
,
component
:
resolve
=>
require
([
'@/components/Restaurant/restaurantRankingDetails'
],
resolve
),
meta
:
{
title
:
'餐厅使用排行详情'
},
},
{
{
path
:
'/domesticRestaurantList'
,
//餐厅使用排行
path
:
'/domesticRestaurantList'
,
//餐厅使用排行
name
:
'domesticRestaurantList'
,
name
:
'domesticRestaurantList'
,
...
...
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