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
b9bc2a6d
Commit
b9bc2a6d
authored
Feb 14, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
酒店查询,餐厅查询新增操作人条件
parent
449f2f24
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
377 additions
and
303 deletions
+377
-303
HotelManagement.vue
src/components/Hotel/HotelManagement.vue
+35
-2
restaurantList.vue
src/components/Restaurant/restaurantList.vue
+342
-301
No files found.
src/components/Hotel/HotelManagement.vue
View file @
b9bc2a6d
...
...
@@ -267,6 +267,7 @@
</el-select>
</span>
</li>
<li>
<span>
<em>
{{
$t
(
'Operation.Op_price'
)
}}
</em>
...
...
@@ -276,6 +277,15 @@
</el-option>
</el-select>
</span>
</li>
<li>
<span><em>
{{
$t
(
'visa.v_czuser'
)
}}
</em></span>
<el-select
class=
"w150"
v-model=
"msg.UpdateBy"
filterable
:placeholder=
"$t('pub.pleaseSel')"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
"0"
>
</el-option>
<el-option
v-for=
"item in EmployeeList"
:label=
"item.EmName"
:value=
"item.EmployeeId"
:key=
"item.EmployeeId"
></el-option>
</el-select>
</li>
<li>
<button
class=
"hollowFixedBtn"
type=
"button"
...
...
@@ -359,6 +369,7 @@
cityList
:
""
,
district
:
""
,
tableData
:
[],
EmployeeList
:
[],
//员工列表
//酒店类型
HotelTypeList
:
[],
//酒店价格
...
...
@@ -387,7 +398,8 @@
QDistrict
:
""
,
total
:
0
,
currentPage
:
1
,
ID
:
0
ID
:
0
,
UpdateBy
:
0
,
//操作人
}
};
},
...
...
@@ -561,9 +573,30 @@
},
err
=>
{}
);
}
},
//根据当前员工所在部门获取该部门及子部门员工信息
getEmployeeList
()
{
let
userInfo
=
this
.
getLocalStorage
();
let
msg
=
{
GroupId
:
userInfo
.
RB_Group_id
,
BranchId
:
"-1"
,
DepartmentId
:
"-1"
,
PostId
:
"-1"
,
IsLeave
:
"0"
};
this
.
apipost
(
"admin_get_EmployeeGetList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
EmployeeList
=
res
.
data
.
data
;
}
},
err
=>
{}
);
},
},
mounted
()
{
this
.
getEmployeeList
();
this
.
GetHotelPirceStockAuth
();
this
.
getCountryList
();
this
.
GetHotelTypeList
();
...
...
src/components/Restaurant/restaurantList.vue
View file @
b9bc2a6d
This diff is collapsed.
Click to expand it.
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