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
0cdc0ca1
Commit
0cdc0ca1
authored
Feb 22, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
酒店增加分类
parent
32490063
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
58 additions
and
1 deletion
+58
-1
jp.js
src/assets/common/lang/jp.js
+2
-1
zh-tw.js
src/assets/common/lang/zh-tw.js
+1
-0
zh.js
src/assets/common/lang/zh.js
+1
-0
HotelInfo.vue
src/components/Hotel/HotelInfo.vue
+54
-0
No files found.
src/assets/common/lang/jp.js
View file @
0cdc0ca1
...
@@ -422,7 +422,8 @@ export const admin={ //行政
...
@@ -422,7 +422,8 @@ export const admin={ //行政
hotel_resourceType
:
'リソースタイプ'
,
hotel_resourceType
:
'リソースタイプ'
,
hotel_dataReport
:
'データレポート'
,
hotel_dataReport
:
'データレポート'
,
hotel_ReturnRoomNumber
:
'チエックアウト数'
,
hotel_ReturnRoomNumber
:
'チエックアウト数'
,
hotel_zanwu
:
'暫く改訂レポート無'
,
hotel_zanwu
:
'暫く改訂レポート無'
,
hotel_type
:
'酒店类型'
,
}
}
export
const
leader
=
{
export
const
leader
=
{
...
...
src/assets/common/lang/zh-tw.js
View file @
0cdc0ca1
...
@@ -468,6 +468,7 @@ export const admin={ //行政
...
@@ -468,6 +468,7 @@ export const admin={ //行政
hotel_dataReport
:
'資料包表'
,
hotel_dataReport
:
'資料包表'
,
hotel_ReturnRoomNumber
:
'還房數量'
,
hotel_ReturnRoomNumber
:
'還房數量'
,
hotel_zanwu
:
'暫無修改日誌'
,
hotel_zanwu
:
'暫無修改日誌'
,
hotel_type
:
'酒店类型'
,
}
}
export
const
leader
=
{
export
const
leader
=
{
...
...
src/assets/common/lang/zh.js
View file @
0cdc0ca1
...
@@ -470,6 +470,7 @@ export const admin={ //行政
...
@@ -470,6 +470,7 @@ export const admin={ //行政
hotel_dataReport
:
'数据报表'
,
hotel_dataReport
:
'数据报表'
,
hotel_ReturnRoomNumber
:
'还房数量'
,
hotel_ReturnRoomNumber
:
'还房数量'
,
hotel_zanwu
:
'暂无修改日志'
,
hotel_zanwu
:
'暂无修改日志'
,
hotel_type
:
'酒店类型'
,
}
}
export
const
leader
=
{
export
const
leader
=
{
...
...
src/components/Hotel/HotelInfo.vue
View file @
0cdc0ca1
...
@@ -105,6 +105,19 @@
...
@@ -105,6 +105,19 @@
</el-col>
</el-col>
</el-row>
</el-row>
</div>
</div>
<span
class=
"resource-lititle sheshi"
>
{{$t('hotel.hotel_type')}}
</span>
<div
class=
"res-span"
>
<el-tree
:data=
"categoryTree"
:props=
"{label: 'CategoryName', children: 'SubList'}"
show-checkbox
node-key=
"Id"
ref=
"treeForm"
check-strictly
@
check-change=
"handleNodeClick"
>
</el-tree>
</div>
</div>
</div>
<div
class=
"resource-imginfo"
>
<div
class=
"resource-imginfo"
>
<div
class=
"resourcerightTop"
>
<div
class=
"resourcerightTop"
>
...
@@ -290,6 +303,7 @@
...
@@ -290,6 +303,7 @@
export
default
{
export
default
{
data
()
{
data
()
{
return
{
return
{
categoryTree
:
[],
imageOptions
:
{
imageOptions
:
{
navbar
:
false
,
navbar
:
false
,
title
:
false
title
:
false
...
@@ -523,6 +537,7 @@
...
@@ -523,6 +537,7 @@
this
.
addMsg
.
HotelImageList
=
this
.
HotelImageArray
;
this
.
addMsg
.
HotelImageList
=
this
.
HotelImageArray
;
this
.
addMsg
.
DeleteImageList
=
this
.
DeleteImageArray
;
this
.
addMsg
.
DeleteImageList
=
this
.
DeleteImageArray
;
this
.
addMsg
.
WebSiteCategoryIds
=
this
.
checkedId
.
join
(
','
)
this
.
apipost
(
this
.
apipost
(
"hotel_post_Set"
,
"hotel_post_Set"
,
this
.
addMsg
,
this
.
addMsg
,
...
@@ -614,6 +629,42 @@
...
@@ -614,6 +629,42 @@
});
});
}
}
},
},
initCategoryTree
()
{
var
msg
=
{};
this
.
getDinnerList
();
var
_self
=
this
;
this
.
apipost
(
"ws_post_GetCategoryTreeList"
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
let
categoryTree
=
res
.
data
.
data
.
filter
(
item
=>
item
.
CategoryName
===
'住宿'
)
this
.
addParentId
(
categoryTree
,
[])
this
.
categoryTree
=
categoryTree
console
.
log
(
'this.categoryTree'
,
this
.
categoryTree
)
}
else
{
_self
.
Error
(
res
.
data
.
message
);
}
},
null
);
},
addParentId
(
tree
,
idArr
)
{
tree
.
forEach
(
item
=>
{
item
.
ids
=
[...
idArr
,
item
.
Id
]
if
(
item
.
SubList
&&
item
.
SubList
.
length
)
{
this
.
addParentId
(
item
.
SubList
,
item
.
ids
)
}
})
},
handleNodeClick
(
data
,
checked
,
node
)
{
if
(
checked
===
true
)
{
console
.
log
(
'data, checked, node'
,
data
,
checked
,
node
)
this
.
checkedId
=
data
.
ids
;
this
.
$refs
.
treeForm
.
setCheckedKeys
([
data
.
Id
]);
}
},
initHotelData
()
{
initHotelData
()
{
var
msg
=
{
var
msg
=
{
hotelID
:
this
.
hotelID
hotelID
:
this
.
hotelID
...
@@ -625,6 +676,8 @@
...
@@ -625,6 +676,8 @@
msg
,
msg
,
res
=>
{
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
checkedId
=
res
.
data
.
data
.
WebSiteCategoryIds
this
.
$refs
.
treeForm
.
setCheckedKeys
([
res
.
data
.
data
.
WebSiteCategoryIds
.
split
(
','
).
pop
()]);
_self
.
addMsg
=
res
.
data
.
data
;
_self
.
addMsg
=
res
.
data
.
data
;
if
(
_self
.
addMsg
.
Country
>
0
)
{
if
(
_self
.
addMsg
.
Country
>
0
)
{
this
.
GetSubAreaList
(
_self
.
addMsg
.
Country
,
1
,
1
);
this
.
GetSubAreaList
(
_self
.
addMsg
.
Country
,
1
,
1
);
...
@@ -897,6 +950,7 @@
...
@@ -897,6 +950,7 @@
if
(
this
.
hotelID
>
0
)
{
if
(
this
.
hotelID
>
0
)
{
this
.
initHotelData
();
this
.
initHotelData
();
}
}
this
.
initCategoryTree
()
}
}
};
};
...
...
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