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
e3ae9db7
Commit
e3ae9db7
authored
Apr 25, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save
parent
5331126a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
4 deletions
+20
-4
HotelProductManage2.vue
src/components/Hotel/HotelProductManage2.vue
+20
-4
No files found.
src/components/Hotel/HotelProductManage2.vue
View file @
e3ae9db7
...
...
@@ -84,6 +84,7 @@
<th
width=
"50"
style=
"text-align:center"
>
{{
$t
(
'hotel.hotel_Inventory'
)
}}
</th>
<th
width=
"80"
style=
"text-align:center"
>
{{
$t
(
'ground.shengyukucun'
)
}}
</th>
<th
width=
"140"
style=
"text-align:center"
>
{{
$t
(
'hotel.hotel_Supplier'
)
}}
</th>
<th
width=
"140"
style=
"text-align:center"
>
是否压房
</th>
<th
width=
"60"
style=
"text-align:center"
>
{{
$t
(
'hotel.table_operat'
)
}}
</th>
<th
width=
"60"
style=
"text-align:center"
>
{{
$t
(
'fnc.rizhi'
)
}}
</th>
</tr>
...
...
@@ -133,6 +134,9 @@
<td
style=
"text-align:center"
>
{{
childItem
.
SupplierName
}}
</td>
<td
style=
"text-align:center"
>
{{
childItem
.
IsMortgage
?
'是'
:
'否'
}}
</td>
<td
style=
"text-align:center"
>
<a
style=
"text-decoration:underline;cursor:pointer;color:blue;"
@
click=
"goEdit('2', subItem.day,childItem.BatchNumber)"
>
{{
$t
(
'pub.updateMsg'
)
}}
</a>
...
...
@@ -271,12 +275,15 @@
<el-form-item
label=
"早餐"
>
<el-checkbox
v-model=
"msg2.PriceIsBreakfast"
:true-label=
"1"
:false-label=
"0"
></el-checkbox>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"晚餐"
>
<el-checkbox
v-model=
"msg2.PriceIsDinner"
:true-label=
"1"
:false-label=
"0"
></el-checkbox>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"是否压房"
>
<el-checkbox
v-model=
"msg2.IsMortgage"
:true-label=
"1"
:false-label=
"0"
></el-checkbox>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"6"
>
...
...
@@ -558,12 +565,15 @@
<el-form-item
label=
"早餐"
>
<el-checkbox
v-model=
"msg.PriceIsBreakfast"
:true-label=
"1"
:false-label=
"0"
></el-checkbox>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"晚餐"
>
<el-checkbox
v-model=
"msg.PriceIsDinner"
:true-label=
"1"
:false-label=
"0"
></el-checkbox>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"是否压房"
>
<el-checkbox
v-model=
"msg.IsMortgage"
:true-label=
"1"
:false-label=
"0"
></el-checkbox>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"6"
>
...
...
@@ -799,6 +809,7 @@
PriceInTangTax
:
0
,
//入汤税
PriceIsBreakfast
:
1
,
//是否含早餐(1-含,0-不含)
PriceIsDinner
:
0
,
//是否含晚餐(1-含,0-不含)
IsMortgage
:
0
,
TipContent
:
""
,
//注意事项
CustomerPayType
:
2
,
//结款方式
PayLimitFirstDay
:
1
,
//入住前几天上传名单
...
...
@@ -840,6 +851,7 @@
PriceInTangTax
:
0
,
//入汤税
PriceIsBreakfast
:
1
,
//是否含早餐(1-含,0-不含)
PriceIsDinner
:
0
,
//是否含晚餐(1-含,0-不含)
IsMortgage
:
0
,
TipContent
:
""
,
//注意事项
CustomerPayType
:
2
,
//结款方式
PayLimitFirstDay
:
1
,
//入住前几天上传名单
...
...
@@ -1189,6 +1201,7 @@
this
.
msg
.
PriceInTangTax
=
data
.
PriceInTangTax
;
this
.
msg
.
PriceIsBreakfast
=
data
.
PriceIsBreakfast
;
this
.
msg
.
PriceIsDinner
=
data
.
PriceIsDinner
;
this
.
msg
.
IsMortgage
=
data
.
IsMortgage
;
this
.
msg
.
TipContent
=
data
.
TipContent
;
this
.
msg
.
CustomerPayType
=
data
.
CustomerPayType
?
data
.
CustomerPayType
:
2
;
this
.
msg
.
PayLimitFirstDay
=
data
.
PayLimitFirstDay
?
data
.
PayLimitFirstDay
:
1
;
...
...
@@ -1279,6 +1292,7 @@
this
.
msg
.
PriceInTangTax
=
0
;
this
.
msg
.
PriceIsBreakfast
=
1
;
this
.
msg
.
PriceIsDinner
=
0
;
this
.
msg
.
IsMortgage
=
0
;
this
.
msg
.
TipContent
=
""
;
this
.
msg
.
CustomerPayType
=
2
;
this
.
msg
.
PayLimitFirstDay
=
1
;
...
...
@@ -1307,6 +1321,7 @@
this
.
msg2
.
PriceInTangTax
=
0
;
this
.
msg2
.
PriceIsBreakfast
=
1
;
this
.
msg2
.
PriceIsDinner
=
0
;
this
.
msg2
.
IsMortgage
=
0
;
this
.
msg2
.
TipContent
=
""
;
},
//批量删除
...
...
@@ -1329,6 +1344,7 @@
that
.
msg2
.
PriceInTangTax
=
0
;
that
.
msg2
.
PriceIsBreakfast
=
1
;
that
.
msg2
.
PriceIsDinner
=
0
;
that
.
msg2
.
IsMortgage
=
0
;
that
.
msg2
.
TipContent
=
""
;
}
else
{
that
.
Error
(
res
.
data
.
message
)
...
...
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