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
f9ea474c
Commit
f9ea474c
authored
May 14, 2019
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
今日订单修改
parent
9f0e2e87
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
680 additions
and
750 deletions
+680
-750
todayOrderTotal.vue
src/components/TravelManager/TravelList/todayOrderTotal.vue
+680
-750
No files found.
src/components/TravelManager/TravelList/todayOrderTotal.vue
View file @
f9ea474c
...
@@ -5,51 +5,41 @@
...
@@ -5,51 +5,41 @@
<li>
<li>
<span>
<span>
<em>
{{
$t
(
'scen.sc_cp'
)
}}
</em>
<em>
{{
$t
(
'scen.sc_cp'
)
}}
</em>
<el-select
class=
"w
200
"
v-model=
"msg.OutBranchId"
filterable
:placeholder=
"$t('pub.pleaseSel')"
>
<el-select
class=
"w
135
"
v-model=
"msg.OutBranchId"
filterable
:placeholder=
"$t('pub.pleaseSel')"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
"-1"
></el-option>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
"-1"
></el-option>
<el-option
v-for=
"item in companyList"
:label=
'item.BName'
:value=
'item.Id'
:key=
'item.Id'
></el-option>
<el-option
v-for=
"item in companyList"
:label=
'item.BName'
:value=
'item.Id'
:key=
'item.Id'
></el-option>
</el-select>
</el-select>
</span>
</span>
</li>
</li>
<li>
<li>
<span>
<span>
<em>
{{
$t
(
'advmanager.v_line'
)
}}
</em>
<em>
{{
$t
(
'advmanager.v_line'
)
}}
</em>
<el-select
<el-select
class=
"w135"
v-model=
"msg.LineId"
filterable
:placeholder=
"$t('pub.pleaseSel')"
>
class=
"w200"
v-model=
"msg.LineId"
filterable
:placeholder=
"$t('pub.pleaseSel')"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
"-1"
></el-option>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
"-1"
></el-option>
<el-option
<el-option
v-for=
"item in LineList"
:label=
"item.LineName"
:value=
"item.LineID"
:key=
"item.LineID"
>
v-for=
"item in LineList"
</el-option>
:label=
"item.LineName"
:value=
"item.LineID"
:key=
"item.LineID"
></el-option>
</el-select>
</el-select>
</span>
</span>
</li>
</li>
<li>
<li>
<span>
<span>
<em>
{{
$t
(
'Operation.Op_baomingCompany'
)
}}
</em>
<em>
{{
$t
(
'Operation.Op_baomingCompany'
)
}}
</em>
<el-select
class=
"w200"
v-model=
"msg.BranchId"
filterable
:placeholder=
"$t('pub.pleaseSel')"
@
change=
"getDepartmentMsg.RB_Branch_Id=msg.BranchId,msg.RB_Department_Id='',msg.CreateBy='',getDepartment()"
>
<el-select
class=
"w135"
v-model=
"msg.BranchId"
filterable
:placeholder=
"$t('pub.pleaseSel')"
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
"-1"
></el-option>
@
change=
"getDepartmentMsg.RB_Branch_Id=msg.BranchId,msg.RB_Department_Id='',msg.CreateBy='',getDepartment()"
>
<el-option
v-for=
"item in companyList"
:label=
'item.BName'
:value=
'item.Id'
:key=
'item.Id'
></el-option>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
"-1"
></el-option>
<el-option
v-for=
"item in companyList"
:label=
'item.BName'
:value=
'item.Id'
:key=
'item.Id'
></el-option>
</el-select>
</el-select>
</span>
</span>
</li>
</li>
<li>
<li>
<span>
<span>
<em>
部门选择
</em>
<em>
部门选择
</em>
<el-select
filterable
v-model=
'msg.RB_Department_Id'
@
change=
"employeeMsg.DepartmentId=msg.RB_Department_Id,getEmployee(),msg.CreateBy=''"
>
<el-select
class=
"w135"
filterable
v-model=
'msg.RB_Department_Id'
<el-option
:value=
"0"
label=
"不限"
></el-option>
@
change=
"employeeMsg.DepartmentId=msg.RB_Department_Id,getEmployee(),msg.CreateBy=''"
>
<el-option
v-for=
'item in DepartmentList'
<el-option
:value=
"0"
label=
"不限"
></el-option>
:label=
'item.DepartmentName'
<el-option
v-for=
'item in DepartmentList'
:label=
'item.DepartmentName'
:value=
'item.DepartmentID'
:value=
'item.DepartmentID'
:key=
'item.DepartmentID'
>
:key=
'item.DepartmentID'
>
</el-option>
</el-option>
</el-select>
</el-select>
</span>
</span>
</li>
</li>
...
@@ -57,48 +47,44 @@
...
@@ -57,48 +47,44 @@
<span>
<span>
<em>
{{
$t
(
'Operation.Op_peopleChoice'
)
}}
</em>
<em>
{{
$t
(
'Operation.Op_peopleChoice'
)
}}
</em>
</span>
</span>
<el-select
<el-select
class=
"w135"
v-model=
"msg.CreateBy"
filterable
:placeholder=
"$t('pub.pleaseSel')"
>
class=
"w200"
v-model=
"msg.CreateBy"
filterable
:placeholder=
"$t('pub.pleaseSel')"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
value=
"-1"
></el-option>
<el-option
:label=
"$t('pub.unlimitedSel')"
value=
"-1"
></el-option>
<el-option
<el-option
v-for=
"item in EmployeeList"
:label=
"item.EmName"
:value=
"item.EmployeeId"
v-for=
"item in EmployeeList"
:key=
"item.EmployeeId"
></el-option>
:label=
"item.EmName"
:value=
"item.EmployeeId"
:key=
"item.EmployeeId"
></el-option>
</el-select>
</el-select>
</li>
</li>
<li>
<li>
<span>
<span>
<em>
{{
$t
(
'hotel.order_Number'
)
}}
</em>
<em>
{{
$t
(
'hotel.order_Number'
)
}}
</em>
</span>
</span>
<el-input
class=
"w
200
"
v-model=
"msg.tempOrderId"
></el-input>
<el-input
class=
"w
135
"
v-model=
"msg.tempOrderId"
></el-input>
</li>
</li>
<li>
<li>
<span>
<span>
<em>
{{
$t
(
'hotel.hotel_OrderStates'
)
}}
</em>
<em>
{{
$t
(
'hotel.hotel_OrderStates'
)
}}
</em>
</span>
</span>
<el-select
v-model=
"msg.OrderState"
filterable
:placeholder=
"$t('pub.pleaseSel')"
>
<el-select
class=
"w135"
v-model=
"msg.OrderState"
filterable
:placeholder=
"$t('pub.pleaseSel')"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
value=
"-1"
></el-option>
<el-option
:label=
"$t('pub.unlimitedSel')"
value=
"-1"
></el-option>
<el-option
v-for=
"item in ddztList"
:label=
"item.Name"
:value=
"item.Id"
:key=
"item.Id"
></el-option>
<el-option
v-for=
"item in ddztList"
:label=
"item.Name"
:value=
"item.Id"
:key=
"item.Id"
></el-option>
</el-select>
</el-select>
</li>
</li>
<li><span><em>
{{
$t
(
'fnc.bmriqi'
)
}}
</em><el-date-picker
v-model=
'msg.CStartDate'
@
change=
"dataDui()"
class=
'w135'
value-format=
"yyyy-MM-dd"
type=
"date"
></el-date-picker>
<li><span><em>
{{
$t
(
'fnc.bmriqi'
)
}}
</em>
-
<el-date-picker
v-model=
'msg.CStartDate'
@
change=
"dataDui()"
class=
"w135"
value-format=
"yyyy-MM-dd"
<el-date-picker
v-model=
'msg.CEndDate'
@
change=
"dataDui()"
class=
'w135'
value-format=
"yyyy-MM-dd"
type=
"date"
></el-date-picker>
type=
"date"
></el-date-picker>
</span>
-
</li>
<el-date-picker
v-model=
'msg.CEndDate'
@
change=
"dataDui()"
class=
"w135"
value-format=
"yyyy-MM-dd"
type=
"date"
></el-date-picker>
</span>
</li>
<li><span><em>
发团日期
</em>
<el-date-picker
v-model=
'msg.QStartDate'
class=
"w135"
value-format=
"yyyy-MM-dd"
type=
"date"
>
</el-date-picker>
-
<el-date-picker
v-model=
'msg.QEndDate'
class=
"w135"
value-format=
"yyyy-MM-dd"
type=
"date"
></el-date-picker>
</span>
</li>
<li>
<li>
<input
<input
type=
"button"
class=
"hollowFixedBtn"
:value=
"$t('pub.searchBtn')"
@
click=
"resetPageIndex();getList()"
>
type=
"button"
class=
"hollowFixedBtn"
:value=
"$t('pub.searchBtn')"
@
click=
"resetPageIndex();getList()"
>
</li>
</li>
</ul>
</ul>
</div>
</div>
...
@@ -107,14 +93,15 @@
...
@@ -107,14 +93,15 @@
<el-row
:gutter=
"20"
>
<el-row
:gutter=
"20"
>
<el-col
:span=
"5"
class=
"groupTourOrder_count_col"
>
<el-col
:span=
"5"
class=
"groupTourOrder_count_col"
>
<div
class=
"groupTourOrder_count_item"
>
<div
class=
"groupTourOrder_count_item"
>
<div>
<div>
<i
class=
"iconfont icon-qian groupTourOrder_count_green"
></i>
<i
class=
"iconfont icon-qian groupTourOrder_count_green"
></i>
<span>
{{
$t
(
'Operation.Op_salesTotal'
)
}}
</span>
<span>
{{
$t
(
'Operation.Op_salesTotal'
)
}}
</span>
</div>
</div>
<p>
<p>
<span>
{{
$t
(
'Operation.Op_yingPay'
)
}}
:
{{
countData
.
PreferPrice
}}
;
</span>
<span>
{{
$t
(
'Operation.Op_yingPay'
)
}}
:
{{
countData
.
PreferPrice
}}
;
</span>
<span>
{{
$t
(
'Operation.Op_yiShou'
)
}}
:
{{
countData
.
Income
}}
;
</span>
<span>
{{
$t
(
'Operation.Op_yiShou'
)
}}
:
{{
countData
.
Income
}}
;
</span>
<span
:class=
"
{color_red_order:countData.DueinMoney!==countData.PreferPrice}">
{{
$t
(
'Operation.Op_weiShou'
)
}}
:
{{
countData
.
DueinMoney
}}
;
</span>
<span
:class=
"
{color_red_order:countData.DueinMoney!==countData.PreferPrice}">
{{
$t
(
'Operation.Op_weiShou'
)
}}
:
{{
countData
.
DueinMoney
}}
;
</span>
<span>
{{
$t
(
'fnc.ztjine'
)
}}
:
{{
countData
.
ZaiTu
}}
;
</span>
<span>
{{
$t
(
'fnc.ztjine'
)
}}
:
{{
countData
.
ZaiTu
}}
;
</span>
</p>
</p>
</div>
</div>
...
@@ -131,6 +118,14 @@
...
@@ -131,6 +118,14 @@
<span>
{{
$t
(
'Airticket.Air_businessClass'
)
}}
:
{{
countData
.
NormalESeatNum
}}
;
</span>
<span>
{{
$t
(
'Airticket.Air_businessClass'
)
}}
:
{{
countData
.
NormalESeatNum
}}
;
</span>
<span>
{{
$t
(
'Airticket.Air_firstClass'
)
}}
:
{{
countData
.
NormalFSeatNum
}}
;
</span>
<span>
{{
$t
(
'Airticket.Air_firstClass'
)
}}
:
{{
countData
.
NormalFSeatNum
}}
;
</span>
</p>
</p>
<div
class=
"groupTourOrder_count_blue"
>
<i
class=
"iconfont icon-baomingrenshu"
></i>
<span>
机位数
</span>
</div>
<p>
<span
class=
"color_red_order"
>
总:
{{
countData
.
YSeat
}}
(经济舱)+
{{
countData
.
CSeat
}}
(商务舱)+
{{
countData
.
FSeat
}}
(头等舱) ;
</span>
<span
class=
"color_red_order"
>
剩:
{{
countData
.
YSeat
-
countData
.
SurplusYSeat
}}
(经济舱)+
{{
countData
.
CSeat
-
countData
.
SurplusCSeat
}}
(商务舱)+
{{
countData
.
FSeat
-
countData
.
SurplusFSeat
}}
(头等舱) ;
</span>
</p>
</div>
</div>
</el-col>
</el-col>
<el-col
:span=
"5"
class=
"groupTourOrder_count_col"
>
<el-col
:span=
"5"
class=
"groupTourOrder_count_col"
>
...
@@ -189,13 +184,7 @@
...
@@ -189,13 +184,7 @@
</div>
</div>
<!-- 表格 -->
<!-- 表格 -->
<div
style=
"clear: both; width: 100%;height: 20px;"
></div>
<div
style=
"clear: both; width: 100%;height: 20px;"
></div>
<table
<table
class=
"enrollTotalSearchTable"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
v-loading=
"loading"
>
class=
"enrollTotalSearchTable"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
v-loading=
"loading"
>
<tr>
<tr>
<th
width=
"80"
>
{{
$t
(
'fnc.danhao'
)
}}
&
{{
$t
(
'visa.v_tuanhao'
)
}}
</th>
<th
width=
"80"
>
{{
$t
(
'fnc.danhao'
)
}}
&
{{
$t
(
'visa.v_tuanhao'
)
}}
</th>
<th
width=
"70"
>
{{
$t
(
'advmanager.v_type'
)
}}
</th>
<th
width=
"70"
>
{{
$t
(
'advmanager.v_type'
)
}}
</th>
...
@@ -222,40 +211,23 @@
...
@@ -222,40 +211,23 @@
<tr>
<tr>
<td
rowspan=
"2"
>
<td
rowspan=
"2"
>
<p
v-if=
"item.isChargeLossOrders==1"
style=
"color:red"
>
{{
$t
(
'fnc.sun'
)
}}
</p>
<p
v-if=
"item.isChargeLossOrders==1"
style=
"color:red"
>
{{
$t
(
'fnc.sun'
)
}}
</p>
<p
<p
class=
"fbold over_ellipsis"
style=
"width: 100%;cursor:pointer;"
:title=
"item.orderId"
class=
"fbold over_ellipsis"
@
click=
"goUrlX('团报名清单', 'RegistrationList',item.tcid,item.tcnum)"
>
{{
item
.
orderId
}}
</p>
style=
"width: 100%;cursor:pointer;"
<p
class=
"fz12 over_ellipsis"
style=
"width: 100%;text-decoration:underline;cursor:pointer;"
:title=
"item.orderId"
:title=
"item.alName"
@
click=
"goUrlX('团控列表', 'TravelControlList',item.tcid,item.tcnum)"
>
{{
item
.
tcnum
}}
</p>
@
click=
"goUrlX('团报名清单', 'RegistrationList',item.tcid,item.tcnum)"
<p
class=
"fz12 over_ellipsis"
style=
"width: 100%;"
>
{{
item
.
createBy
}}
<span
v-if=
"item.leaveStr!=''"
>
{{
item
.
orderId
}}
</p>
style=
"color:red"
>
(
{{
item
.
leaveStr
}}
)
</span></p>
<p
<p
class=
"fz12 over_ellipsis"
style=
"width: 100%;"
>
class=
"fz12 over_ellipsis"
{{
item
.
commissionSPeopleName
==
'无'
?
''
:
item
.
commissionSPeopleName
}}
</p>
style=
"width: 100%;text-decoration:underline;cursor:pointer;"
:title=
"item.alName"
@
click=
"goUrlX('团控列表', 'TravelControlList',item.tcid,item.tcnum)"
>
{{
item
.
tcnum
}}
</p>
<p
class=
"fz12 over_ellipsis"
style=
"width: 100%;"
>
{{
item
.
createBy
}}
<span
v-if=
"item.leaveStr!=''"
style=
"color:red"
>
(
{{
item
.
leaveStr
}}
)
</span></p>
<p
class=
"fz12 over_ellipsis"
style=
"width: 100%;"
>
{{
item
.
commissionSPeopleName
==
'无'
?
''
:
item
.
commissionSPeopleName
}}
</p>
</td>
</td>
<td>
<td>
<p
class=
"fz12 over_ellipsis"
style=
"width: 100%;"
>
{{
item
.
orderTypeName
}}
</p>
<p
class=
"fz12 over_ellipsis"
style=
"width: 100%;"
>
{{
item
.
orderTypeName
}}
</p>
</td>
</td>
<td
class=
"fz12"
>
<td
class=
"fz12"
>
<p
<p
style=
"max-width: 160px;display: block;"
class=
"over_ellipsis"
:title=
"item.lineName"
>
style=
"max-width: 160px;display: block;"
class=
"over_ellipsis"
:title=
"item.lineName"
>
<span>
{{
item
.
lineName
}}
</span>
<span>
{{
item
.
lineName
}}
</span>
</p>
</p>
<p
<p
style=
"max-width: 160px;display: block;"
class=
"over_ellipsis"
:title=
"item.ltName"
>
{{
item
.
ltName
}}
</p>
style=
"max-width: 160px;display: block;"
class=
"over_ellipsis"
:title=
"item.ltName"
>
{{
item
.
ltName
}}
</p>
</td>
</td>
<td>
{{
item
.
guestNum
}}
</td>
<td>
{{
item
.
guestNum
}}
</td>
<td
style=
"color:#FF9C00"
>
{{
item
.
tC_Price
}}
</td>
<td
style=
"color:#FF9C00"
>
{{
item
.
tC_Price
}}
</td>
...
@@ -263,9 +235,9 @@
...
@@ -263,9 +235,9 @@
<td>
<td>
<p
style=
"color:#FF9C00"
>
¥
{{
item
.
preferPrice
}}
</p>
<p
style=
"color:#FF9C00"
>
¥
{{
item
.
preferPrice
}}
</p>
</td>
</td>
<td>
<td>
<span
v-if=
"item.isEnd==0"
>
{{
item
.
income
}}
</span>
<span
v-if=
"item.isEnd==0"
>
{{
item
.
income
}}
</span>
<span
v-if=
"item.isEnd!=0"
style=
"color: #e95252;"
>
{{
item
.
income
}}
</span>
<span
v-if=
"item.isEnd!=0"
style=
"color: #e95252;"
>
{{
item
.
income
}}
</span>
</td>
</td>
<!-- 优惠 -->
<!-- 优惠 -->
...
@@ -312,38 +284,27 @@
...
@@ -312,38 +284,27 @@
<td
v-if=
"item.isChargeLossOrders==1"
class=
"fz12"
style=
"color: #e95252"
>
{{
$t
(
'fnc.shousun'
)
}}
</td>
<td
v-if=
"item.isChargeLossOrders==1"
class=
"fz12"
style=
"color: #e95252"
>
{{
$t
(
'fnc.shousun'
)
}}
</td>
<td
v-else
class=
"fz12"
:style=
"item.orderState===3?'color: #e95252;':''"
>
{{
item
.
statsstr
}}
</td>
<td
v-else
class=
"fz12"
:style=
"item.orderState===3?'color: #e95252;':''"
>
{{
item
.
statsstr
}}
</td>
<td>
<td>
<p
<p
class=
"over_ellipsis"
style=
"width: 150px;"
:title=
"item.contactName"
>
{{
item
.
contactName
}}
</p>
class=
"over_ellipsis"
style=
"width: 150px;"
:title=
"item.contactName"
>
{{
item
.
contactName
}}
</p>
<p>
{{
item
.
contactMobile
}}
</p>
<p>
{{
item
.
contactMobile
}}
</p>
</td>
</td>
<td
v-if=
"userId==1"
>
<td
v-if=
"userId==1"
>
<button
class=
"normalBtn"
@
click=
"getSalerInfo(item)"
>
修改业务员
</button>
<button
class=
"normalBtn"
@
click=
"getSalerInfo(item)"
>
修改业务员
</button>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td
colspan=
"7"
class=
"groupTourOrder_remarks"
style=
"height: 20px;"
>
<td
colspan=
"7"
class=
"groupTourOrder_remarks"
style=
"height: 20px;"
>
<!--
<div
v-if=
"item.platformOrder!==''"
style=
"font-size: 12px;"
>
<em>
平台订单号:
</em>
<span>
{{
item
.
platformOrder
}}
</span>
</div>
-->
<div>
<div>
<div>
<div>
<span>
{{
$t
(
'hotel.hotel_remark'
)
}}
:
</span>
<span>
{{
$t
(
'hotel.hotel_remark'
)
}}
:
</span>
<p><span
v-if=
'item.clientSource==1&&item.brandName!=""'
>
{{
item
.
brandName
}}
订单
{{
item
.
platformOrder
}}
;
</span>
{{
item
.
remarks
}}
</p>
<p><span
v-if=
'item.clientSource==1&&item.brandName!=""'
>
{{
item
.
brandName
}}
订单
{{
item
.
platformOrder
}}
;
</span>
{{
item
.
remarks
}}
</p>
</div>
</div>
<div>
<div>
<span>
{{
item
.
remarksName
}}
 
{{
item
.
rematksTime
}}
</span>
<span>
{{
item
.
remarksName
}}
 
{{
item
.
rematksTime
}}
</span>
<el-popover
width=
"600"
placement=
"bottom-end"
trigger=
"click"
>
<el-popover
width=
"600"
placement=
"bottom-end"
trigger=
"click"
>
<div
class=
"groupTourOrder_remarks_popover"
>
<div
class=
"groupTourOrder_remarks_popover"
>
<div>
{{
$t
(
'fnc.lsbeizhu'
)
}}
</div>
<div>
{{
$t
(
'fnc.lsbeizhu'
)
}}
</div>
<p
<p
v-if=
"item.remarksList.length !== 0"
v-for=
"(item2, index2) in item.remarksList"
:key=
"index2"
>
v-if=
"item.remarksList.length !== 0"
v-for=
"(item2, index2) in item.remarksList"
:key=
"index2"
>
<span>
{{
item2
.
remarks
}}
</span>
<span>
{{
item2
.
remarks
}}
</span>
<span>
<span>
{{
item2
.
createByName
}}
{{
item2
.
createByName
}}
...
@@ -352,71 +313,39 @@
...
@@ -352,71 +313,39 @@
</p>
</p>
<span
v-if=
"item.remarksList.length === 0"
>
{{
$t
(
'system.content_noData'
)
}}
</span>
<span
v-if=
"item.remarksList.length === 0"
>
{{
$t
(
'system.content_noData'
)
}}
</span>
</div>
</div>
<el-button
<el-button
slot=
"reference"
icon=
"iconfont icon-gengduo"
slot=
"reference"
style=
"padding:0px;border:none;background-color:transparent;"
class=
"groupTourOrder_remarks_btn"
>
icon=
"iconfont icon-gengduo"
</el-button>
style=
"padding:0px;border:none;background-color:transparent;"
class=
"groupTourOrder_remarks_btn"
></el-button>
</el-popover>
</el-popover>
</div>
</div>
</div>
</div>
</td>
</td>
<td
colspan=
"8"
class=
"groupTourOrder_tickets"
style=
"height: 20px;cursor: pointer;"
@
click=
"goUrlSFD('SalesFinancialDetail', '销售财务单据', item)"
>
<td
colspan=
"8"
class=
"groupTourOrder_tickets"
style=
"height: 20px;cursor: pointer;"
@
click=
"goUrlSFD('SalesFinancialDetail', '销售财务单据', item)"
>
<div>
<div>
<div
style=
"white-space: nowrap"
>
{{
$t
(
'fnc.skdanju'
)
}}
:
<span
v-if=
"item.financeList.length===0"
style=
"cursor: default;"
>
{{
$t
(
'system.content_noData'
)
}}
</span>
<div
style=
"white-space: nowrap"
>
{{
$t
(
'fnc.skdanju'
)
}}
:
<span
v-if=
"item.financeList.length===0"
<span
v-for=
"(item2,index2) in item.financeList"
:key=
"index2"
>
style=
"cursor: default;"
>
{{
$t
(
'system.content_noData'
)
}}
</span>
<span
<span
v-for=
"(item2,index2) in item.financeList"
:key=
"index2"
>
v-if=
"item2.colorState===1"
<span
v-if=
"item2.colorState===1"
class=
"groupTourOrder_tickets_blue"
>
《
{{
item2
.
frID
}}
》
class=
"groupTourOrder_tickets_blue"
>
《
{{
item2
.
frID
}}
》
</span>
</span>
<span
<span
v-else-if=
"item2.colorState===2"
class=
"groupTourOrder_tickets_green"
>
《
{{
item2
.
frID
}}
》
</span>
v-else-if=
"item2.colorState===2"
class=
"groupTourOrder_tickets_green"
<span
v-else-if=
"item2.colorState===3"
class=
"groupTourOrder_tickets_red"
>
《
{{
item2
.
frID
}}
》
>
《
{{
item2
.
frID
}}
》
</span>
<span
v-else-if=
"item2.colorState===3"
class=
"groupTourOrder_tickets_red"
>
《
{{
item2
.
frID
}}
》
</span>
</span>
<span
<span
v-else-if=
"item2.colorState===4"
class=
"groupTourOrder_tickets_black"
>
《
{{
item2
.
frID
}}
》
v-else-if=
"item2.colorState===4"
class=
"groupTourOrder_tickets_black"
>
《
{{
item2
.
frID
}}
》
</span>
</span>
</span>
</span>
</div>
</div>
</div>
</div>
<div>
<div>
<div
style=
"white-space: nowrap"
>
{{
$t
(
'fnc.fkdanju'
)
}}
:
<span
v-if=
"item.financeList.length===0"
style=
"cursor: default;"
>
{{
$t
(
'system.content_noData'
)
}}
</span>
<div
style=
"white-space: nowrap"
>
{{
$t
(
'fnc.fkdanju'
)
}}
:
<span
v-if=
"item.financeList.length===0"
style=
"cursor: default;"
>
{{
$t
(
'system.content_noData'
)
}}
</span>
<span
v-for=
"(item2,index2) in item.refundFinanceList"
:key=
"index2"
>
<span
v-for=
"(item2,index2) in item.refundFinanceList"
:key=
"index2"
>
<span
<span
v-if=
"item2.colorState===1"
class=
"groupTourOrder_tickets_blue"
>
《
{{
item2
.
frID
}}
》
</span>
v-if=
"item2.colorState===1"
<span
v-else-if=
"item2.colorState===2"
class=
"groupTourOrder_tickets_green"
>
《
{{
item2
.
frID
}}
》
</span>
class=
"groupTourOrder_tickets_blue"
<span
v-else-if=
"item2.colorState===3"
class=
"groupTourOrder_tickets_red"
>
《
{{
item2
.
frID
}}
》
</span>
<span
v-else-if=
"item2.colorState===4"
class=
"groupTourOrder_tickets_black"
>
《
{{
item2
.
frID
}}
》
</span>
>
《
{{
item2
.
frID
}}
》
</span>
<span
v-else-if=
"item2.colorState===2"
class=
"groupTourOrder_tickets_green"
>
《
{{
item2
.
frID
}}
》
</span>
<span
v-else-if=
"item2.colorState===3"
class=
"groupTourOrder_tickets_red"
>
《
{{
item2
.
frID
}}
》
</span>
<span
v-else-if=
"item2.colorState===4"
class=
"groupTourOrder_tickets_black"
>
《
{{
item2
.
frID
}}
》
</span>
</span>
</span>
</div>
</div>
...
@@ -425,14 +354,8 @@
...
@@ -425,14 +354,8 @@
</tr>
</tr>
</tbody>
</tbody>
</table>
</table>
<el-pagination
<el-pagination
background
@
current-change=
"handleCurrentChange"
:current-page
.
sync=
"currentPage"
background
layout=
"total,prev, pager, next, jumper"
:page-size=
"msg.pageSize"
:total=
"total"
></el-pagination>
@
current-change=
"handleCurrentChange"
:current-page
.
sync=
"currentPage"
layout=
"total,prev, pager, next, jumper"
:page-size=
"msg.pageSize"
:total=
"total"
></el-pagination>
<div
class=
"combottomDiv"
v-if=
"showChangeSales"
style=
"height:200px;"
>
<div
class=
"combottomDiv"
v-if=
"showChangeSales"
style=
"height:200px;"
>
<updateSalesMan
@
closeUpdiv=
"closeSalseDiv"
@
getList=
"getList"
:subInfo=
"subInfo"
></updateSalesMan>
<updateSalesMan
@
closeUpdiv=
"closeSalseDiv"
@
getList=
"getList"
:subInfo=
"subInfo"
></updateSalesMan>
...
@@ -442,281 +365,284 @@
...
@@ -442,281 +365,284 @@
</
template
>
</
template
>
<
script
>
<
script
>
import
Treeselect
from
"@riophae/vue-treeselect"
;
import
Treeselect
from
"@riophae/vue-treeselect"
;
import
updateSalesMan
from
"../../commonPage/updateSalesMan.vue"
;
import
updateSalesMan
from
"../../commonPage/updateSalesMan.vue"
;
import
"@riophae/vue-treeselect/dist/vue-treeselect.css"
;
import
"@riophae/vue-treeselect/dist/vue-treeselect.css"
;
export
default
{
export
default
{
components
:
{
components
:
{
Treeselect
,
Treeselect
,
updateSalesMan
updateSalesMan
},
data
()
{
return
{
normalizer
(
node
)
{
return
{
id
:
node
.
DepartmentId
,
label
:
node
.
DepartmentName
,
children
:
node
.
ChildList
};
},
defaultImg
:
'this.src="'
+
require
(
"../../../assets/img/litheader.png"
)
+
'"'
,
currentPage
:
1
,
total
:
0
,
loading
:
false
,
companyList
:
[],
msg
:
{
OutBranchId
:
-
1
,
BranchId
:
-
1
,
LineId
:
-
1
,
LineIdStr
:
""
,
//线路字符串
RB_Department_Id
:
''
,
CreateBy
:
"-1"
,
OrderState
:
"-1"
,
CStartDate
:
""
,
CEndDate
:
""
,
pageIndex
:
1
,
pageSize
:
10
,
tempOrderId
:
""
,
SellFormEmp
:
0
},
getDepartmentMsg
:{
// 部门
RB_Group_Id
:
''
,
RB_Branch_Id
:
''
,
Status
:
0
,
ParentId
:
-
1
,
Tier
:
0
,
},
employeeMsg
:
{
RB_Group_id
:
"0"
,
RB_Branch_id
:
"-1"
,
departmentId
:
"0"
,
IsLeave
:
"-1"
},
isOwn
:
false
,
OrderList
:
[],
LineList
:
[],
LineTeamList
:
[],
DepartmentList
:
[],
EmployeeList
:
[],
ddztList
:
[],
countData
:
{
// 总报名人数
TotalGuestNum
:
0
,
TotalYSeatNum
:
0
,
TotalESeatNum
:
0
,
TotalFSeatNum
:
0
,
// 正常报名人数
NormalGuestNum
:
0
,
NormalYSeatNum
:
0
,
NormalESeatNum
:
0
,
NormalFSeatNum
:
0
,
// 取消人数
CancelGuestNum
:
0
,
CancelYSeatNum
:
0
,
CancelESeatNum
:
0
,
CancelFSeatNum
:
0
,
// 其他统计项
Income
:
0
,
Commission
:
0
,
DueinMoney
:
0
,
PreferPrice
:
0
,
InteriorNum
:
0
,
B2BNum
:
0
},
showChangeSales
:
false
,
//订单编号及业务员信息
subInfo
:{
CreateBy
:
''
,
OrderId
:
0
},
userId
:
0
};
},
methods
:
{
goUrlSFD
:
function
(
path
,
name
,
item
)
{
let
obj
=
JSON
.
parse
(
JSON
.
stringify
(
item
))
obj
.
oP_Remarks
=
''
obj
.
remarksList
=
[]
obj
.
refundFinanceList
=
[]
obj
.
remarks
=
[]
obj
.
ltName
=
[]
obj
.
lineName
=
[]
obj
.
financeList
=
[]
obj
.
guestList
=
[]
obj
.
description
=
[]
this
.
$router
.
push
({
name
:
path
,
query
:
{
blank
:
'y'
,
tab
:
name
,
item
:
JSON
.
stringify
(
obj
)}
});
},
getCompanyList
()
{
let
userInfo
=
this
.
getLocalStorage
();
let
RB_Group_id
=
userInfo
.
RB_Group_id
;
let
msg
=
{
Status
:
0
,
is_show
:
0
,
RB_Group_Id
:
RB_Group_id
}
this
.
apipost
(
'admin_get_BranchGetList'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
companyList
=
res
.
data
.
data
;
}
},
err
=>
{})
},
// 结束日期不能大于开始日期
dataDui
()
{
if
(
this
.
msg
.
CStartDate
>
this
.
msg
.
CEndDate
&&
this
.
msg
.
CEndDate
!==
""
)
{
this
.
$message
.
error
(
"结束日期不能大于开始日期"
);
this
.
msg
.
CEndDate
=
""
;
}
},
goUrl
(
name
,
path
,
id
,
tcmun
)
{
this
.
$router
.
push
({
name
:
path
,
query
:
{
id
:
id
,
tcmun
:
tcmun
,
blank
:
"y"
,
tab
:
name
}
});
},
},
// 获取统计数据
data
()
{
getCount
:
function
()
{
return
{
this
.
apipost
(
normalizer
(
node
)
{
"sellorder_post_OP_GetOrderListStatistics"
,
return
{
this
.
msg
,
id
:
node
.
DepartmentId
,
res
=>
{
label
:
node
.
DepartmentName
,
if
(
res
.
data
.
resultCode
==
1
)
{
children
:
node
.
ChildList
this
.
countData
=
res
.
data
.
data
;
};
}
else
{
},
this
.
$message
.
error
(
"数据获取失败!"
);
defaultImg
:
'this.src="'
+
require
(
"../../../assets/img/litheader.png"
)
+
'"'
,
}
currentPage
:
1
,
total
:
0
,
loading
:
false
,
companyList
:
[],
msg
:
{
OutBranchId
:
-
1
,
BranchId
:
-
1
,
LineId
:
-
1
,
LineIdStr
:
""
,
//线路字符串
RB_Department_Id
:
''
,
CreateBy
:
"-1"
,
OrderState
:
"-1"
,
CStartDate
:
""
,
CEndDate
:
""
,
pageIndex
:
1
,
pageSize
:
10
,
tempOrderId
:
""
,
SellFormEmp
:
0
,
QStartDate
:
''
,
//发团日期-开始
QEndDate
:
''
,
//发团日期-结束
},
getDepartmentMsg
:
{
// 部门
RB_Group_Id
:
''
,
RB_Branch_Id
:
''
,
Status
:
0
,
ParentId
:
-
1
,
Tier
:
0
,
},
employeeMsg
:
{
RB_Group_id
:
"0"
,
RB_Branch_id
:
"-1"
,
departmentId
:
"0"
,
IsLeave
:
"-1"
},
},
err
=>
{}
isOwn
:
false
,
);
OrderList
:
[],
LineList
:
[],
LineTeamList
:
[],
DepartmentList
:
[],
EmployeeList
:
[],
ddztList
:
[],
countData
:
{
// 总报名人数
TotalGuestNum
:
0
,
TotalYSeatNum
:
0
,
TotalESeatNum
:
0
,
TotalFSeatNum
:
0
,
// 正常报名人数
NormalGuestNum
:
0
,
NormalYSeatNum
:
0
,
NormalESeatNum
:
0
,
NormalFSeatNum
:
0
,
// 取消人数
CancelGuestNum
:
0
,
CancelYSeatNum
:
0
,
CancelESeatNum
:
0
,
CancelFSeatNum
:
0
,
// 其他统计项
Income
:
0
,
Commission
:
0
,
DueinMoney
:
0
,
PreferPrice
:
0
,
InteriorNum
:
0
,
B2BNum
:
0
},
showChangeSales
:
false
,
//订单编号及业务员信息
subInfo
:
{
CreateBy
:
''
,
OrderId
:
0
},
userId
:
0
};
},
},
goUrlX
(
name
,
path
,
id
,
tcmun
)
{
methods
:
{
this
.
$router
.
push
({
goUrlSFD
:
function
(
path
,
name
,
item
)
{
name
:
path
,
let
obj
=
JSON
.
parse
(
JSON
.
stringify
(
item
))
query
:
{
obj
.
oP_Remarks
=
''
id
:
id
,
obj
.
remarksList
=
[]
tcmun
:
tcmun
,
obj
.
refundFinanceList
=
[]
blank
:
"y"
,
obj
.
remarks
=
[]
tab
:
name
obj
.
ltName
=
[]
obj
.
lineName
=
[]
obj
.
financeList
=
[]
obj
.
guestList
=
[]
obj
.
description
=
[]
this
.
$router
.
push
({
name
:
path
,
query
:
{
blank
:
'y'
,
tab
:
name
,
item
:
JSON
.
stringify
(
obj
)
}
});
},
getCompanyList
()
{
let
userInfo
=
this
.
getLocalStorage
();
let
RB_Group_id
=
userInfo
.
RB_Group_id
;
let
msg
=
{
Status
:
0
,
is_show
:
0
,
RB_Group_Id
:
RB_Group_id
}
}
});
this
.
apipost
(
'admin_get_BranchGetList'
,
msg
,
res
=>
{
},
linkageEmployeeMsg
(
node
,
instanceId
)
{
this
.
employeeMsg
.
departmentId
=
node
.
DepartmentId
;
this
.
msg
.
CreateBy
=
"-1"
;
this
.
getEmployee
();
},
getDdztList
()
{
this
.
apipost
(
"sellorder_post_GetSellOrderStatusEnumList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
ddzt
List
=
res
.
data
.
data
;
this
.
company
List
=
res
.
data
.
data
;
}
}
},
},
err
=>
{})
err
=>
{}
},
);
// 结束日期不能大于开始日期
},
dataDui
()
{
getLineList
()
{
if
(
this
.
msg
.
CStartDate
>
this
.
msg
.
CEndDate
&&
this
.
msg
.
CEndDate
!==
""
)
{
this
.
apipost
(
"line_post_GetList"
,
{},
res
=>
{
this
.
$message
.
error
(
"结束日期不能大于开始日期"
);
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
msg
.
CEndDate
=
""
;
this
.
LineList
=
res
.
data
.
data
;
var
lineIdStr
=
""
;
this
.
LineList
.
forEach
(
lineItem
=>
{
lineIdStr
+=
lineItem
.
LineID
+
","
;
});
this
.
msg
.
LineIdStr
=
lineIdStr
.
substring
(
0
,
lineIdStr
.
lastIndexOf
(
','
))
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
);
}
}
});
},
},
goUrl
(
name
,
path
,
id
,
tcmun
)
{
getList
()
{
this
.
$router
.
push
({
this
.
loading
=
true
;
name
:
path
,
this
.
apipost
(
query
:
{
"sellorder_post_OP_GetOrderList"
,
id
:
id
,
this
.
msg
,
tcmun
:
tcmun
,
res
=>
{
blank
:
"y"
,
tab
:
name
this
.
loading
=
false
;
}
});
},
// 获取统计数据
getCount
:
function
()
{
this
.
apipost
(
"sellorder_post_OP_GetOrderListStatistics"
,
this
.
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
countData
=
res
.
data
.
data
;
}
else
{
this
.
$message
.
error
(
"数据获取失败!"
);
}
},
err
=>
{}
);
},
goUrlX
(
name
,
path
,
id
,
tcmun
)
{
this
.
$router
.
push
({
name
:
path
,
query
:
{
id
:
id
,
tcmun
:
tcmun
,
blank
:
"y"
,
tab
:
name
}
});
},
linkageEmployeeMsg
(
node
,
instanceId
)
{
this
.
employeeMsg
.
departmentId
=
node
.
DepartmentId
;
this
.
msg
.
CreateBy
=
"-1"
;
this
.
getEmployee
();
},
getDdztList
()
{
this
.
apipost
(
"sellorder_post_GetSellOrderStatusEnumList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
ddztList
=
res
.
data
.
data
;
}
},
err
=>
{}
);
},
getLineList
()
{
this
.
apipost
(
"line_post_GetList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
total
=
res
.
data
.
data
.
count
;
this
.
LineList
=
res
.
data
.
data
;
this
.
OrderList
=
res
.
data
.
data
.
pageData
;
var
lineIdStr
=
""
;
this
.
LineList
.
forEach
(
lineItem
=>
{
lineIdStr
+=
lineItem
.
LineID
+
","
;
});
this
.
msg
.
LineIdStr
=
lineIdStr
.
substring
(
0
,
lineIdStr
.
lastIndexOf
(
','
))
}
else
{
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
);
this
.
$message
.
error
(
res
.
data
.
message
);
}
}
},
});
err
=>
{}
},
);
getList
()
{
this
.
getCount
();
this
.
loading
=
true
;
},
this
.
apipost
(
handleCurrentChange
(
val
)
{
"sellorder_post_OP_GetOrderList"
,
this
.
msg
.
pageIndex
=
val
;
this
.
msg
,
this
.
getList
();
res
=>
{
},
this
.
loading
=
false
;
resetPageIndex
()
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
msg
.
pageIndex
=
1
;
this
.
total
=
res
.
data
.
data
.
count
;
this
.
currentPage
=
1
;
this
.
OrderList
=
res
.
data
.
data
.
pageData
;
},
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
);
}
},
err
=>
{}
);
this
.
getCount
();
},
handleCurrentChange
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
getList
();
},
resetPageIndex
()
{
this
.
msg
.
pageIndex
=
1
;
this
.
currentPage
=
1
;
},
//点击修改业务员
//点击修改业务员
getSalerInfo
(
item
)
{
getSalerInfo
(
item
)
{
this
.
subInfo
.
CreateBy
=
item
.
createBy
;
this
.
subInfo
.
CreateBy
=
item
.
createBy
;
this
.
subInfo
.
OrderId
=
item
.
orderId
;
this
.
subInfo
.
OrderId
=
item
.
orderId
;
this
.
showChangeSales
=
true
;
this
.
showChangeSales
=
true
;
},
},
//关闭修改业务员
//关闭修改业务员
closeSalseDiv
()
{
closeSalseDiv
()
{
this
.
showChangeSales
=
false
;
this
.
showChangeSales
=
false
;
},
},
getDepartment
(){
//部门
getDepartment
()
{
//部门
this
.
apipost
(
'admin_get_DepartmentGetList'
,
this
.
getDepartmentMsg
,
res
=>
{
this
.
apipost
(
'admin_get_DepartmentGetList'
,
this
.
getDepartmentMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
DepartmentList
=
res
.
data
.
data
;
this
.
DepartmentList
=
res
.
data
.
data
;
}
}
},
err
=>
{})
},
err
=>
{})
},
},
getEmployee
()
{
//员工
getEmployee
()
{
//员工
this
.
apipost
(
'admin_get_EmployeeGetList'
,
this
.
employeeMsg
,
res
=>
{
this
.
apipost
(
'admin_get_EmployeeGetList'
,
this
.
employeeMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
EmployeeList
=
res
.
data
.
data
;
this
.
EmployeeList
=
res
.
data
.
data
;
console
.
log
(
this
.
EmployeeList
);
}
}
},
err
=>
{})
},
err
=>
{})
},
},
},
},
mounted
()
{
mounted
()
{
let
userInfo
=
this
.
getLocalStorage
();
let
userInfo
=
this
.
getLocalStorage
();
this
.
userId
=
userInfo
.
EmployeeId
;
this
.
userId
=
userInfo
.
EmployeeId
;
this
.
getCompanyList
()
this
.
getCompanyList
()
this
.
getEmployee
();
this
.
getEmployee
();
this
.
getLineList
();
this
.
getLineList
();
this
.
getDepartment
();
this
.
getDepartment
();
this
.
getDdztList
();
this
.
getDdztList
();
if
(
this
.
$route
.
query
.
id
)
{
this
.
msg
.
tempOrderId
=
this
.
$route
.
query
.
id
;
}
if
(
this
.
msg
.
CStartDate
===
""
&&
this
.
msg
.
CEndDate
===
""
)
{
let
nowDay
=
new
Date
().
toLocaleDateString
();
let
nowDay
=
new
Date
().
toLocaleDateString
();
this
.
msg
.
CStartDate
=
nowDay
;
if
(
this
.
$route
.
query
.
id
)
{
this
.
msg
.
CEndDate
=
nowDay
;
this
.
msg
.
tempOrderId
=
this
.
$route
.
query
.
id
;
}
}
if
(
userInfo
.
EmployeeId
==
5
||
userInfo
.
EmployeeId
==
1
){
if
(
this
.
msg
.
CStartDate
===
""
&&
this
.
msg
.
CEndDate
===
""
)
{
this
.
msg
.
OutBranchId
=
-
1
;
this
.
msg
.
CStartDate
=
nowDay
;
}
else
{
this
.
msg
.
CEndDate
=
nowDay
;
this
.
msg
.
OutBranchId
=
this
.
getLocalStorage
().
RB_Branch_id
;
}
if
(
userInfo
.
EmployeeId
==
5
||
userInfo
.
EmployeeId
==
1
)
{
this
.
msg
.
OutBranchId
=
-
1
;
}
else
{
this
.
msg
.
OutBranchId
=
this
.
getLocalStorage
().
RB_Branch_id
;
}
this
.
getList
();
}
}
this
.
getList
();
};
}
};
</
script
>
</
script
>
<
style
>
<
style
>
...
@@ -726,7 +652,7 @@ export default {
...
@@ -726,7 +652,7 @@ export default {
padding-left
:
15px
;
padding-left
:
15px
;
}
}
.personNolayer
p
>
span
{
.personNolayer
p
>
span
{
font-size
:
12px
;
font-size
:
12px
;
color
:
#333
;
color
:
#333
;
margin-right
:
25px
;
margin-right
:
25px
;
...
@@ -761,333 +687,337 @@ export default {
...
@@ -761,333 +687,337 @@ export default {
.personNolayer
table
tr
._color_666
th
{
.personNolayer
table
tr
._color_666
th
{
padding
:
9px
15px
;
padding
:
9px
15px
;
}
}
.enrollTotalSearch
{
width
:
100%
;
.enrollTotalSearch
{
min-height
:
auto
;
width
:
100%
;
padding
:
0
0
20px
0
;
min-height
:
auto
;
}
padding
:
0
0
20px
0
;
}
.enrollTotalSearch
::after
{
display
:
block
;
.enrollTotalSearch
::after
{
clear
:
both
;
display
:
block
;
content
:
""
;
clear
:
both
;
visibility
:
hidden
;
content
:
""
;
height
:
0
;
visibility
:
hidden
;
}
height
:
0
;
}
.enrollTotalSearch
li
{
float
:
left
;
.enrollTotalSearch
li
{
font-size
:
12px
;
float
:
left
;
height
:
40px
;
font-size
:
12px
;
color
:
#666
;
height
:
40px
;
margin
:
20px
10px
10px
0
;
color
:
#666
;
}
margin
:
20px
10px
10px
0
;
}
.enrollTotalSearch
li
>
span
{
display
:
inline-block
;
.enrollTotalSearch
li
>
span
{
}
display
:
inline-block
;
}
.enrollTotalSearch
li
span
>
em
{
display
:
inline-block
;
.enrollTotalSearch
li
span
>
em
{
min-width
:
60px
;
display
:
inline-block
;
text-align
:
right
;
min-width
:
60px
;
font-style
:
normal
;
text-align
:
right
;
margin
:
0
12px
0
0
;
font-style
:
normal
;
}
margin
:
0
12px
0
0
;
}
.enrollTotalSearch
li
:last-child
{
float
:
right
;
.enrollTotalSearch
li
:last-child
{
position
:
fixed
;
float
:
right
;
top
:
36px
;
position
:
fixed
;
right
:
20px
;
top
:
36px
;
text-align
:
right
;
right
:
20px
;
z-index
:
50
;
text-align
:
right
;
}
z-index
:
50
;
}
.enrollTotalSearchTable
{
width
:
100%
;
.enrollTotalSearchTable
{
font-size
:
14px
;
width
:
100%
;
color
:
#333
;
font-size
:
14px
;
border-bottom
:
1px
solid
#cccccc
;
color
:
#333
;
border-right
:
1px
solid
#cccccc
;
border-bottom
:
1px
solid
#cccccc
;
}
border-right
:
1px
solid
#cccccc
;
}
.enrollTotalSearchTable
tr
{
/* border-bottom: 2px solid #333; */
.enrollTotalSearchTable
tr
{
}
/* border-bottom: 2px solid #333; */
}
.enrollTotalSearchTable
tr
th
{
background
:
#bdbdbd
;
.enrollTotalSearchTable
tr
th
{
height
:
30px
;
background
:
#bdbdbd
;
font-size
:
12px
;
height
:
30px
;
text-align
:
left
;
font-size
:
12px
;
text-indent
:
15px
;
text-align
:
left
;
border-top
:
1px
solid
#cccccc
;
text-indent
:
15px
;
border-left
:
1px
solid
#cccccc
;
border-top
:
1px
solid
#cccccc
;
}
border-left
:
1px
solid
#cccccc
;
}
.enrollTotalSearchTable
tr
{
background
:
#fff
;
.enrollTotalSearchTable
tr
{
text-align
:
left
;
background
:
#fff
;
}
text-align
:
left
;
}
.enrollTotalSearchTable
tr
td
{
height
:
50px
;
.enrollTotalSearchTable
tr
td
{
padding
:
10px
;
height
:
50px
;
border-top
:
1px
solid
#cccccc
;
padding
:
10px
;
border-left
:
1px
solid
#cccccc
;
border-top
:
1px
solid
#cccccc
;
}
border-left
:
1px
solid
#cccccc
;
}
.enrollTotalSearchTable
tr
td
>
img
{
width
:
32px
;
.enrollTotalSearchTable
tr
td
>
img
{
height
:
32px
;
width
:
32px
;
border-radius
:
16px
;
height
:
32px
;
vertical-align
:
middle
;
border-radius
:
16px
;
margin-right
:
5px
;
vertical-align
:
middle
;
}
margin-right
:
5px
;
}
.enrollTotalSearchTable
tr
td
p
{
line-height
:
20px
;
.enrollTotalSearchTable
tr
td
p
{
}
line-height
:
20px
;
}
.groupTourOrder_count_green
{
color
:
#1bc594
;
.groupTourOrder_count_green
{
}
color
:
#1bc594
;
}
.groupTourOrder_count_blue
{
color
:
#4d7afd
;
.groupTourOrder_count_blue
{
}
color
:
#4d7afd
;
}
.groupTourOrder_count_yellow
{
color
:
#ff9c00
;
.groupTourOrder_count_yellow
{
}
color
:
#ff9c00
;
}
.groupTourOrder_count_gray
{
color
:
#999999
;
.groupTourOrder_count_gray
{
}
color
:
#999999
;
}
.groupTourOrder_count
{
margin
:
0
0
20px
0
;
.groupTourOrder_count
{
width
:
100%
;
margin
:
0
0
20px
0
;
height
:
auto
;
width
:
100%
;
}
height
:
auto
;
}
.groupTourOrder_count_col
{
height
:
80px
;
.groupTourOrder_count_col
{
}
height
:
110px
;
}
.groupTourOrder_count_item
{
font-weight
:
400
;
.groupTourOrder_count_item
{
padding
:
10px
;
font-weight
:
400
;
height
:
100%
;
padding
:
10px
;
border
:
1px
solid
#e6e6e6
;
height
:
100%
;
background-color
:
#ffffff
;
border
:
1px
solid
#e6e6e6
;
color
:
#333333
;
background-color
:
#ffffff
;
}
color
:
#333333
;
}
.groupTourOrder_count_item
>
div
>
i
{
font-size
:
12px
;
.groupTourOrder_count_item
>
div
>
i
{
vertical-align
:
bottom
;
font-size
:
12px
;
}
vertical-align
:
bottom
;
}
.groupTourOrder_count_item
>
div
>
span
:nth-child
(
2
)
{
font-size
:
14px
;
.groupTourOrder_count_item
>
div
>
span
:nth-child
(
2
)
{
vertical-align
:
bottom
;
font-size
:
14px
;
}
vertical-align
:
bottom
;
}
.groupTourOrder_count_item
>
div
>
span
:nth-child
(
3
)
{
font-weight
:
bold
;
.groupTourOrder_count_item
>
div
>
span
:nth-child
(
3
)
{
font-size
:
16px
;
font-weight
:
bold
;
vertical-align
:
bottom
;
font-size
:
16px
;
}
vertical-align
:
bottom
;
}
.groupTourOrder_count_item
>
p
{
font-size
:
12px
;
.groupTourOrder_count_item
>
p
{
line-height
:
18px
;
font-size
:
12px
;
}
line-height
:
18px
;
}
.groupTourOrder_count_item
>
p
>
span
{
margin
:
0
5px
0
0
;
.groupTourOrder_count_item
>
p
>
span
{
white-space
:
nowrap
;
margin
:
0
5px
0
0
;
}
white-space
:
nowrap
;
}
.groupTourOrder_more
{
margin
:
0
-12px
;
.groupTourOrder_more
{
}
margin
:
0
-12px
;
}
.groupTourOrder_more
>
div
{
width
:
100%
;
.groupTourOrder_more
>
div
{
height
:
30px
;
width
:
100%
;
line-height
:
30px
;
height
:
30px
;
text-align
:
center
;
line-height
:
30px
;
font-size
:
12px
;
text-align
:
center
;
color
:
#333333
;
font-size
:
12px
;
background-color
:
#ffffff
;
color
:
#333333
;
cursor
:
pointer
;
background-color
:
#ffffff
;
}
cursor
:
pointer
;
}
.groupTourOrder_more
>
div
:hover
{
color
:
#297bef
;
.groupTourOrder_more
>
div
:hover
{
background-color
:
#dcebff
;
color
:
#297bef
;
}
background-color
:
#dcebff
;
}
.groupTourOrder_remarks
{
font-size
:
0px
;
.groupTourOrder_remarks
{
}
font-size
:
0px
;
}
.groupTourOrder_remarks
>
div
{
}
.groupTourOrder_remarks
>
div
{}
.groupTourOrder_remarks
>
div
>
div
:nth-child
(
1
)
{
.groupTourOrder_remarks
>
div
>
div
:nth-child
(
1
)
{
float
:
left
;
float
:
left
;
display
:
flex
;
display
:
flex
;
align-items
:
flex-start
;
align-items
:
flex-start
;
}
}
.groupTourOrder_remarks
>
div
>
div
:nth-child
(
1
)
>
span
{
.groupTourOrder_remarks
>
div
>
div
:nth-child
(
1
)>
span
{
line-height
:
20px
;
line-height
:
20px
;
font-size
:
12px
;
font-size
:
12px
;
color
:
#e95252
;
color
:
#e95252
;
white-space
:
nowrap
;
white-space
:
nowrap
;
}
}
.groupTourOrder_remarks
>
div
>
div
:nth-child
(
1
)
>
p
{
.groupTourOrder_remarks
>
div
>
div
:nth-child
(
1
)>
p
{
line-height
:
20px
;
line-height
:
20px
;
font-size
:
12px
;
font-size
:
12px
;
color
:
#e95252
;
color
:
#e95252
;
}
}
.groupTourOrder_remarks
>
div
>
div
:nth-child
(
2
)
{
.groupTourOrder_remarks
>
div
>
div
:nth-child
(
2
)
{
float
:
right
;
float
:
right
;
text-align
:
right
;
text-align
:
right
;
font-size
:
12px
;
font-size
:
12px
;
color
:
#e95252
;
color
:
#e95252
;
}
}
.groupTourOrder_remarks
>
div
>
div
:nth-child
(
2
)
>
i
{
.groupTourOrder_remarks
>
div
>
div
:nth-child
(
2
)>
i
{
font-size
:
10px
;
font-size
:
10px
;
cursor
:
pointer
;
cursor
:
pointer
;
}
}
.groupTourOrder_remarks
>
div
::after
{
.groupTourOrder_remarks
>
div
::after
{
display
:
block
;
display
:
block
;
clear
:
both
;
clear
:
both
;
content
:
""
;
content
:
""
;
visibility
:
hidden
;
visibility
:
hidden
;
height
:
0
;
height
:
0
;
}
}
.groupTourOrder_remarks_btn
{
.groupTourOrder_remarks_btn
{
padding
:
0px
;
padding
:
0px
;
width
:
12px
;
width
:
12px
;
height
:
12px
;
height
:
12px
;
border
:
none
;
border
:
none
;
background-color
:
transparent
;
background-color
:
transparent
;
}
}
.groupTourOrder_remarks_btn
>
i
{
.groupTourOrder_remarks_btn
>
i
{
color
:
#e95252
;
color
:
#e95252
;
font-size
:
12px
;
font-size
:
12px
;
}
}
.groupTourOrder_remarks_popover
>
div
{
.groupTourOrder_remarks_popover
>
div
{
display
:
inline-block
;
display
:
inline-block
;
font-size
:
14px
;
font-size
:
14px
;
color
:
#000000
;
color
:
#000000
;
}
}
.groupTourOrder_remarks_popover
>
div
::before
{
.groupTourOrder_remarks_popover
>
div
::before
{
content
:
""
;
content
:
""
;
display
:
inline-block
;
display
:
inline-block
;
margin
:
0
5px
0
0
;
margin
:
0
5px
0
0
;
width
:
2px
;
width
:
2px
;
height
:
12px
;
height
:
12px
;
background-color
:
#e95252
;
background-color
:
#e95252
;
}
}
.groupTourOrder_remarks_popover
>
span
{
.groupTourOrder_remarks_popover
>
span
{
display
:
block
;
display
:
block
;
margin
:
0
0
0
0
;
margin
:
0
0
0
0
;
width
:
100%
;
width
:
100%
;
text-align
:
center
;
text-align
:
center
;
font-size
:
12px
;
font-size
:
12px
;
color
:
#000000
;
color
:
#000000
;
}
}
.groupTourOrder_remarks_popover
>
p
{
.groupTourOrder_remarks_popover
>
p
{
margin
:
5px
0
0
0
;
margin
:
5px
0
0
0
;
padding
:
3px
;
padding
:
3px
;
width
:
100%
;
width
:
100%
;
max-height
:
300px
;
max-height
:
300px
;
overflow-y
:
auto
;
overflow-y
:
auto
;
font-size
:
12px
;
font-size
:
12px
;
color
:
#000000
;
color
:
#000000
;
}
}
.groupTourOrder_remarks_popover
>
p
:nth-child
(
even
)
{
.groupTourOrder_remarks_popover
>
p
:nth-child
(
even
)
{
background-color
:
#e6e6e6
;
background-color
:
#e6e6e6
;
}
}
.groupTourOrder_remarks_popover
>
p
>
span
:nth-child
(
1
)
{
.groupTourOrder_remarks_popover
>
p
>
span
:nth-child
(
1
)
{
float
:
left
;
float
:
left
;
}
}
.groupTourOrder_remarks_popover
>
p
>
span
:nth-child
(
2
)
{
.groupTourOrder_remarks_popover
>
p
>
span
:nth-child
(
2
)
{
margin
:
0
10px
0
0
;
margin
:
0
10px
0
0
;
float
:
right
;
float
:
right
;
}
}
.groupTourOrder_remarks_popover
>
p
::after
{
.groupTourOrder_remarks_popover
>
p
::after
{
display
:
block
;
display
:
block
;
clear
:
both
;
clear
:
both
;
content
:
""
;
content
:
""
;
visibility
:
hidden
;
visibility
:
hidden
;
height
:
0
;
height
:
0
;
}
}
.groupTourOrder_tickets
>
div
>
span
{
.groupTourOrder_tickets
>
div
>
span
{
margin
:
0
5px
0
0
;
margin
:
0
5px
0
0
;
cursor
:
pointer
;
cursor
:
pointer
;
}
}
.groupTourOrder_tickets_red
{
.groupTourOrder_tickets_red
{
color
:
#ff0000
;
color
:
#ff0000
;
cursor
:
pointer
;
cursor
:
pointer
;
/* text-decoration: underline; */
/* text-decoration: underline; */
}
}
.groupTourOrder_tickets_blue
{
.groupTourOrder_tickets_blue
{
color
:
#0000ff
;
color
:
#0000ff
;
/* text-decoration: underline; */
/* text-decoration: underline; */
cursor
:
pointer
;
cursor
:
pointer
;
}
}
.groupTourOrder_tickets_green
{
.groupTourOrder_tickets_green
{
color
:
#008000
;
color
:
#008000
;
cursor
:
pointer
;
cursor
:
pointer
;
/* text-decoration: underline; */
/* text-decoration: underline; */
}
}
.groupTourOrder_tickets_black
{
color
:
#000000
;
.groupTourOrder_tickets_black
{
text-decoration
:
underline
;
color
:
#000000
;
}
text-decoration
:
underline
;
.groupTourOrderByTuan_ico
{
}
margin
:
0
10px
0
0
;
}
.groupTourOrderByTuan_ico
{
margin
:
0
10px
0
0
;
.groupTourOrderByTuan_ico
>
i
{
}
display
:
inline-block
;
margin
:
0
2px
0
0
;
.groupTourOrderByTuan_ico
>
i
{
width
:
8px
;
display
:
inline-block
;
height
:
8px
;
margin
:
0
2px
0
0
;
border-radius
:
2px
;
width
:
8px
;
vertical-align
:
middle
;
height
:
8px
;
}
border-radius
:
2px
;
vertical-align
:
middle
;
.groupTourOrderByTuan_ico
>
span
{
}
vertical-align
:
middle
;
}
.groupTourOrderByTuan_ico
>
span
{
.color_red_order
{
vertical-align
:
middle
;
color
:
#e95252
!important
;
}
}
.color_red_order
{
color
:
#e95252
!important
;
}
</
style
>
</
style
>
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