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
a2aa8386
Commit
a2aa8386
authored
Aug 23, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
70524c76
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
3 deletions
+44
-3
restaurantRankingList.vue
src/components/Restaurant/restaurantRankingList.vue
+26
-1
TravelControlList.vue
...components/TravelManager/TravelList/TravelControlList.vue
+9
-1
TravelControlListSale.vue
...onents/TravelManager/TravelList/TravelControlListSale.vue
+9
-1
No files found.
src/components/Restaurant/restaurantRankingList.vue
View file @
a2aa8386
...
...
@@ -282,8 +282,27 @@
</div>
<el-table
:data=
"tableData"
tooltip-effect=
"dark"
style=
"width: 100%;min-height:450px;"
v-loading=
"loading"
>
<el-table-column
prop=
"NewDinnerName"
label=
"餐厅名称"
>
<template
slot-scope=
"scope"
>
<template
v-if=
"scope.row.URL&&scope.row.URL.length>5"
>
<a
style=
"text-decoration:underline;cursor:pointer;"
:href=
"scope.row.URL"
target=
"_blank"
>
{{
scope
.
row
.
NewDinnerName
}}
</a>
</
template
>
<
template
v-else
>
{{
scope
.
row
.
NewDinnerName
}}
</
template
>
</template>
</el-table-column>
<el-table-column
prop=
"DinnerRealName"
label=
"餐厅真实名称"
>
<
template
slot-scope=
"scope"
>
<template
v-if=
"scope.row.URL&&scope.row.URL.length>5"
>
<a
style=
"text-decoration:underline;cursor:pointer;"
:href=
"scope.row.URL"
target=
"_blank"
>
{{
scope
.
row
.
DinnerRealName
}}
</a>
</
template
>
<
template
v-else
>
{{
scope
.
row
.
DinnerRealName
}}
</
template
>
</template>
</el-table-column>
<el-table-column
width=
"150"
prop=
"UserNum"
label=
"使用次数"
>
<
template
slot-scope=
"scope"
>
...
...
@@ -466,6 +485,12 @@
query
:
qMsg
});
},
goToGuWangUrl
(
url
){
this
.
$router
.
push
({
path
:
url
,
});
},
getSellorCompany
()
{
//出团公司
this
.
apipost
(
...
...
src/components/TravelManager/TravelList/TravelControlList.vue
View file @
a2aa8386
...
...
@@ -2720,8 +2720,16 @@
},
//根据当前员工所在部门获取该部门及子部门员工信息
getVisaEmployeeList
()
{
let
userInfo
=
this
.
getLocalStorage
();
let
msg
=
{
GroupId
:
userInfo
.
RB_Group_id
,
BranchId
:
"-1"
,
DepartmentId
:
"232"
,
PostId
:
"-1"
,
IsLeave
:
"0"
};
this
.
apipost
(
"admin_get_
GetEmpByDepPostNameList"
,
{}
,
"admin_get_
EmployeeGetList"
,
msg
,
(
res
)
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
VisaEmployeeList
=
res
.
data
.
data
;
...
...
src/components/TravelManager/TravelList/TravelControlListSale.vue
View file @
a2aa8386
...
...
@@ -1368,8 +1368,16 @@
},
//根据当前员工所在部门获取该部门及子部门员工信息
getVisaEmployeeList
()
{
let
userInfo
=
this
.
getLocalStorage
();
let
msg
=
{
GroupId
:
userInfo
.
RB_Group_id
,
BranchId
:
"-1"
,
DepartmentId
:
"232"
,
PostId
:
"-1"
,
IsLeave
:
"0"
};
this
.
apipost
(
"admin_get_
GetEmpByDepPostNameList"
,
{}
,
"admin_get_
EmployeeGetList"
,
msg
,
(
res
)
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
VisaEmployeeList
=
res
.
data
.
data
;
...
...
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