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
571dbf8f
Commit
571dbf8f
authored
Apr 12, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
af9da650
6c6f8183
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
34 deletions
+21
-34
ComplaintsManage.vue
src/components/Complaints/ComplaintsManage.vue
+14
-1
roomReservations.vue
src/components/Hotel/roomReservations.vue
+1
-1
TravelControlList.vue
...components/TravelManager/TravelList/TravelControlList.vue
+4
-30
dmcTotalTable.vue
src/components/dmc/manager/dmcTotalTable.vue
+2
-2
No files found.
src/components/Complaints/ComplaintsManage.vue
View file @
571dbf8f
...
...
@@ -129,9 +129,17 @@
</el-select>
</span>
</li>
<li>
<span>
<em>
日期
</em>
<el-date-picker
value-format=
"yyyy-MM-dd"
v-model=
"queryMsg.startDate"
type=
"date"
></el-date-picker>
<el-date-picker
value-format=
"yyyy-MM-dd"
v-model=
"queryMsg.endDate"
type=
"date"
></el-date-picker>
</span>
</li>
<li>
<input
type=
"button"
class=
"hollowFixedBtn"
value=
"查询"
@
click=
"getList(),resetPageIndex()"
/>
<input
type=
"button"
class=
"normalBtn"
value=
"新增"
@
click=
"goUrl('AddComplaints',0)"
/>
<input
type=
"button"
class=
"normalBtn"
value=
"导出"
/>
</li>
</ul>
</div>
...
...
@@ -168,6 +176,7 @@
<th>
状态
</th>
<th>
应赔金额
</th>
<th>
实赔金额
</th>
<th>
创建日期
</th>
<th>
当前处理人
</th>
<th>
处理人耗时
</th>
<th>
总耗时
</th>
...
...
@@ -188,6 +197,7 @@
<td>
{{
item
.
DisposeStatusStr
}}
</td>
<td>
{{
item
.
DisposeStatus
===
4
?
item
.
ShouldPayMoney
:
''
}}
</td>
<td>
{{
item
.
DisposeStatus
===
4
?
item
.
BackMoney
:
''
}}
</td>
<td>
{{
item
.
CreateTime
}}
</td>
<td>
{{
item
.
CurrentDealEmpName
}}
</td>
<td>
{{
getTimeConsuming
(
item
,
1
)
}}
</td>
<td>
{{
getTimeConsuming
(
item
,
2
)
}}
</td>
...
...
@@ -248,7 +258,9 @@
OrderID
:
''
,
TCID
:
''
,
pageIndex
:
1
,
pageSize
:
10
pageSize
:
10
,
startDate
:
''
,
endDate
:
''
,
},
complainStatistic
:
{}
}
...
...
@@ -285,6 +297,7 @@
this
.
queryCommonData
.
total
=
res
.
data
.
data
.
count
this
.
queryCommonData
.
noData
=
!
this
.
queryCommonData
.
total
>
0
this
.
queryCommonData
.
dataList
=
res
.
data
.
data
.
pageData
console
.
log
(
this
.
queryCommonData
.
dataList
,
'datalist'
);
}
else
{
this
.
Error
(
res
.
data
.
message
)
}
...
...
src/components/Hotel/roomReservations.vue
View file @
571dbf8f
...
...
@@ -39,7 +39,7 @@
<th
width=
"120"
>
占床/不占床
</th>
<th
width=
"80"
>
实际用房数
</th>
<th></th>
<
th
v-for=
'item in thLengthTitle'
>
{{
item
}}
</th
>
<
!--
<th
v-for=
'item in thLengthTitle'
>
{{
item
}}
</th>
--
>
<th></th>
<th>
备注
</th>
<th>
操作
</th>
...
...
src/components/TravelManager/TravelList/TravelControlList.vue
View file @
571dbf8f
...
...
@@ -919,7 +919,7 @@
noData
:
false
,
currentPage
:
1
,
//航班配置
FlightState
:
1
,
FlightState
:
0
,
//预警团
IsWarning
:
false
,
WarningQuery
:
'-1'
,
...
...
@@ -943,12 +943,12 @@
flightStatus
:
[{
Id
:
0
,
Name
:
'不限'
,
Checked
:
fals
e
Checked
:
tru
e
},
{
Id
:
1
,
Name
:
'已配置'
,
Checked
:
tru
e
Checked
:
fals
e
},
{
Id
:
2
,
...
...
@@ -1672,39 +1672,13 @@
this
.
$route
.
query
.
tcmun
=
this
.
$route
.
query
.
tcmun
if
(
this
.
$route
.
query
.
tcmun
)
{
this
.
queryCommonData
.
flightCKed
=
[];
this
.
queryCommonData
.
flightCKed
.
push
(
0
);
this
.
flightStatus
.
forEach
((
subItem
,
subIndex
)
=>
{
if
(
subIndex
==
0
)
{
subItem
.
Checked
=
true
;
}
else
{
subItem
.
Checked
=
false
;
}
});
this
.
queryMsg
.
TCNUM
=
this
.
$route
.
query
.
tcmun
;
}
if
(
this
.
$route
.
query
.
HotelId
)
{
this
.
queryCommonData
.
flightCKed
=
[];
this
.
queryCommonData
.
flightCKed
.
push
(
0
);
this
.
flightStatus
.
forEach
((
subItem
,
subIndex
)
=>
{
if
(
subIndex
==
0
)
{
subItem
.
Checked
=
true
;
}
else
{
subItem
.
Checked
=
false
;
}
});
this
.
queryMsg
.
HotelId
=
this
.
$route
.
query
.
HotelId
;
}
if
(
this
.
$route
.
query
.
HotelUseTime
)
{
this
.
queryCommonData
.
flightCKed
=
[];
this
.
queryCommonData
.
flightCKed
.
push
(
0
);
this
.
flightStatus
.
forEach
((
subItem
,
subIndex
)
=>
{
if
(
subIndex
==
0
)
{
subItem
.
Checked
=
true
;
}
else
{
subItem
.
Checked
=
false
;
}
});
this
.
queryMsg
.
HotelUseTime
=
this
.
$route
.
query
.
HotelUseTime
}
...
...
src/components/dmc/manager/dmcTotalTable.vue
View file @
571dbf8f
...
...
@@ -225,7 +225,7 @@
</div>
</td>
<td>
<div
class=
"fz16 fbold linkspan"
@
click=
"goUrlLeaderIsApply('leaderPay',item,outItem,'领队报账')"
>
<div
class=
"fz16 fbold linkspan"
@
click=
"goUrlLeaderIsApply('leaderPay
2
',item,outItem,'领队报账')"
>
<span
style=
"color: #4BCA81;"
v-if=
"item.ResultReport.LeaderIsApply==2"
>
√
</span>
<span
class=
"colorE95252"
v-else
>
{{
item
.
ResultReport
.
LeaderIsApply
==
'0'
?
"x"
:
"O"
}}
</span>
</div>
...
...
@@ -453,7 +453,7 @@
this
.
$router
.
push
({
name
:
path
,
query
:
{
"id"
:
o
bj
.
TCIDS
,
"id"
:
o
utItem
.
TCIDs
,
NewCombinationNum
:
outItem
.
NewCombinationNum
,
isUpdate
:
true
,
blank
:
'y'
,
...
...
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