Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
HotelProject
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
zhengke
HotelProject
Commits
2c2abf2f
Commit
2c2abf2f
authored
Feb 13, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
547d2c52
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
9 deletions
+14
-9
HotelOrder.vue
src/components/assetsman/HotelOrder.vue
+14
-9
No files found.
src/components/assetsman/HotelOrder.vue
View file @
2c2abf2f
...
@@ -43,9 +43,12 @@
...
@@ -43,9 +43,12 @@
.commonOrderTable
.tdCenter
{
.commonOrderTable
.tdCenter
{
text-align
:
center
;
text-align
:
center
;
}
}
.commonOrderTable
tbody
tr
:last-child
,
.commonOrderTable
tr
:first-child
td
:first-child
{
.commonOrderTable
tbody
tr
:last-child
,
.commonOrderTable
tr
:first-child
td
:first-child
{
border-bottom
:
2px
solid
#333
;
border-bottom
:
2px
solid
#333
;
}
}
</
style
>
</
style
>
<
template
>
<
template
>
<div
class=
"HotelOrder"
>
<div
class=
"HotelOrder"
>
...
@@ -107,13 +110,16 @@
...
@@ -107,13 +110,16 @@
<th
title=
"订房数量"
style=
"width:60px"
class=
"tdCenter"
>
注文数
</th>
<th
title=
"订房数量"
style=
"width:60px"
class=
"tdCenter"
>
注文数
</th>
<th
title=
"总金额"
style=
"width:60px"
class=
"tdCenter"
>
総額
</th>
<th
title=
"总金额"
style=
"width:60px"
class=
"tdCenter"
>
総額
</th>
<th
title=
"入住信息"
style=
"width:130px"
class=
"tdCenter"
>
入居情報
</th>
<th
title=
"入住信息"
style=
"width:130px"
class=
"tdCenter"
>
入居情報
</th>
<th
title=
"联系信息"
style=
"width:100px"
class=
"tdCenter"
>
連絡先情報
</th>
<th
title=
"订单状态"
style=
"width:70px"
class=
"tdCenter"
>
注文状態
</th>
<th
title=
"订单状态"
style=
"width:70px"
class=
"tdCenter"
>
注文状態
</th>
<th
title=
"操作"
style=
"width:100px"
class=
"tdCenter"
>
操作
</th>
<th
title=
"操作"
style=
"width:100px"
class=
"tdCenter"
>
操作
</th>
</tr>
</tr>
<tbody
v-for=
"(item,index) in dataList"
:key=
"index"
>
<tbody
v-for=
"(item,index) in dataList"
:key=
"index"
>
<tr>
<tr>
<td
rowspan=
"2"
class=
"tdCenter"
>
{{
item
.
OrderId
}}
</td>
<td
rowspan=
"2"
class=
"tdCenter"
>
{{
item
.
OrderId
}}
<br
/>
{{
item
.
EmName
}}
<br
/>
{{
item
.
CreateTime
}}
</td>
<td
class=
"tdLeft"
>
<td
class=
"tdLeft"
>
<span
class=
"colorRed"
>
{{
item
.
SHotelName
}}
</span>
<span
class=
"colorRed"
>
{{
item
.
SHotelName
}}
</span>
<br
/>
<br
/>
...
@@ -142,14 +148,12 @@
...
@@ -142,14 +148,12 @@
<td
class=
"tdLeft"
>
<td
class=
"tdLeft"
>
入居期日:
<span
title=
"入住日期"
class=
"colorRed"
>
{{
item
.
CheckInDate
}}
</span>
<br
/>
入居期日:
<span
title=
"入住日期"
class=
"colorRed"
>
{{
item
.
CheckInDate
}}
</span>
<br
/>
チェックアウト日時:
<span
title=
"退房日期"
class=
"colorRed"
>
{{
item
.
CheckOutDate
}}
</span>
<br
/>
チェックアウト日時:
<span
title=
"退房日期"
class=
"colorRed"
>
{{
item
.
CheckOutDate
}}
</span>
<br
/>
お店まで時間を取る予定です:
<span
title=
"预计到店时间"
class=
"colorRed"
>
{{
item
.
PredictTime
}}
</span>
お店まで時間を取る予定です:
<span
title=
"预计到店时间"
class=
"colorRed"
>
{{
item
.
PredictTime
}}
</span><br
/>
</td>
<td
class=
"tdLeft"
>
メール:
{{
item
.
Email
}}
<br
/>
メール:
{{
item
.
Email
}}
<br
/>
電話:
{{
item
.
Mobile
}}
<br
/>
電話:
{{
item
.
Mobile
}}
<br
/>
{{
item
.
EmName
}}
<br
/>
{{
item
.
CreateTime
}}
</td>
</td>
<td
class=
"tdCenter"
>
<td
class=
"tdCenter"
>
<!--
{{
item
.
OrderForm
==
1
?
'同行'
:
'直客'
}}
-->
<!--
{{
item
.
OrderForm
==
1
?
'同行'
:
'直客'
}}
-->
{{
item
.
OrderStatus
==
1
?
'正常'
:
'取消'
}}
{{
item
.
OrderStatus
==
1
?
'正常'
:
'取消'
}}
...
@@ -399,6 +403,7 @@
...
@@ -399,6 +403,7 @@
}
}
}
}
};
};
</
script
>
</
script
>
<
style
>
<
style
>
.HotelOrder
{
.HotelOrder
{
...
...
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