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
1579ce0b
Commit
1579ce0b
authored
Aug 22, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
bd6c1064
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
restaurantRankingDetails.vue
src/components/Restaurant/restaurantRankingDetails.vue
+12
-3
No files found.
src/components/Restaurant/restaurantRankingDetails.vue
View file @
1579ce0b
...
...
@@ -293,6 +293,8 @@
{{
scope
.
row
.
TCNUM
}}
(
{{
scope
.
row
.
TCID
}}
)
</
template
>
</el-table-column>
<el-table-column
prop=
"DMCNum"
label=
"地接团号"
>
</el-table-column>
<el-table-column
prop=
"TeamTypeStr"
label=
"团队类型"
>
</el-table-column>
<el-table-column
prop=
"StartDate"
label=
"出发日期"
>
...
...
@@ -301,12 +303,19 @@
</el-table-column>
<el-table-column
prop=
"DNum"
label=
"大/中/小人数"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
DNum
}}
/
{{
scope
.
row
.
ZNum
}}
/
{{
scope
.
row
.
XNum
}}
<span
style=
"text-decoration:underline;cursor:pointer;"
type=
"info"
@
click=
"goUrl('bookDinnerStatisticsDetails',scope.row.TCID)"
>
{{
(
scope
.
row
.
DNum
>
0
&&
scope
.
row
.
DUnitPrice
>
0
)?
scope
.
row
.
DNum
:
0
}}
/
{{
(
scope
.
row
.
ZNum
>
0
&&
scope
.
row
.
ZUnitPrice
>
0
)?
scope
.
row
.
ZNum
:
0
}}
/
{{
(
scope
.
row
.
XNum
>
0
&&
scope
.
row
.
XUnitPrice
>
0
)?
scope
.
row
.
XNum
:
0
}}
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"DUnitPrice"
label=
"大/中/小价格"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
DUnitPrice
}}
/
{{
scope
.
row
.
ZUnitPrice
}}
/
{{
scope
.
row
.
XUnitPrice
}}
<span
style=
"text-decoration:underline;cursor:pointer;"
type=
"info"
@
click=
"goUrl('bookDinnerStatisticsDetails',scope.row.TCID)"
>
{{
(
scope
.
row
.
DNum
>
0
&&
scope
.
row
.
DUnitPrice
>
0
)?
scope
.
row
.
DUnitPrice
:
0
}}
/
{{
(
scope
.
row
.
ZNum
>
0
&&
scope
.
row
.
ZUnitPrice
>
0
)?
scope
.
row
.
ZUnitPrice
:
0
}}
/
{{
(
scope
.
row
.
XNum
>
0
&&
scope
.
row
.
XUnitPrice
>
0
)?
scope
.
row
.
XUnitPrice
:
0
}}
</span>
</
template
>
</el-table-column>
...
...
@@ -436,7 +445,7 @@
query
:
{
id
:
id
,
blank
:
'y'
,
tab
:
'
套餐查询
'
tab
:
'
餐厅预定详情
'
}
});
},
...
...
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