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
ca989eaa
Commit
ca989eaa
authored
Apr 07, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
77c5608e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
41 additions
and
19 deletions
+41
-19
domesticCommissionTW2.vue
src/components/FinancialModule/domesticCommissionTW2.vue
+5
-1
domesticCommissionUserTW2.vue
src/components/FinancialModule/domesticCommissionUserTW2.vue
+7
-1
domesticCommissiondetailsTW2.vue
...mponents/FinancialModule/domesticCommissiondetailsTW2.vue
+8
-3
OrderList.vue
src/components/myOrdersAllType/components/OrderList.vue
+4
-1
allList.vue
src/components/myOrdersAllType/components/allList.vue
+17
-13
No files found.
src/components/FinancialModule/domesticCommissionTW2.vue
View file @
ca989eaa
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
<li>
<li>
<em>
出团公司
</em>
<em>
出团公司
</em>
<el-select
v-model=
"msg.OutBranchId"
size=
"mini"
@
change=
"handleCurrentChange(1)"
<el-select
v-model=
"msg.OutBranchId"
size=
"mini"
@
change=
"handleCurrentChange(1)"
:disabled=
"
msg.OutBranchId==0?false:true
"
>
:disabled=
"
S_CheckBranchOrder
"
>
<el-option
label=
"不限"
:value=
"-1"
></el-option>
<el-option
label=
"不限"
:value=
"-1"
></el-option>
<el-option
v-for=
"(item,index) in BranchList"
:key=
"item.index"
:label=
"item.BName"
<el-option
v-for=
"(item,index) in BranchList"
:key=
"item.index"
:label=
"item.BName"
:value=
"item.Id"
></el-option>
:value=
"item.Id"
></el-option>
...
@@ -230,6 +230,7 @@
...
@@ -230,6 +230,7 @@
BranchList
:[],
BranchList
:[],
cMaker
:
false
,
//是否可以制单
cMaker
:
false
,
//是否可以制单
isRateAuthoTW
:
false
,
//是否可以修改汇率
isRateAuthoTW
:
false
,
//是否可以修改汇率
S_CheckBranchOrder
:
false
,
//查看公司下订单
}
}
},
},
mounted
()
{
mounted
()
{
...
@@ -245,6 +246,9 @@
...
@@ -245,6 +246,9 @@
if
(
ActionMenuCode
.
indexOf
(
'isRateAuthoTW'
)
!=
-
1
){
if
(
ActionMenuCode
.
indexOf
(
'isRateAuthoTW'
)
!=
-
1
){
this
.
isRateAuthoTW
=
true
this
.
isRateAuthoTW
=
true
}
}
if
(
ActionMenuCode
.
indexOf
(
'S_CheckBranchOrder'
)
!=
-
1
){
this
.
S_CheckBranchOrder
=
true
}
this
.
getList
();
this
.
getList
();
this
.
getCompanyList
()
this
.
getCompanyList
()
...
...
src/components/FinancialModule/domesticCommissionUserTW2.vue
View file @
ca989eaa
...
@@ -37,7 +37,8 @@
...
@@ -37,7 +37,8 @@
</li>
</li>
<li>
<li>
<em>
出团公司
</em>
<em>
出团公司
</em>
<el-select
v-model=
"msg.OutBranchId"
size=
"mini"
@
change=
"handleCurrentChange(1)"
:disabled=
'disabled'
>
<el-select
v-model=
"msg.OutBranchId"
size=
"mini"
@
change=
"handleCurrentChange(1)"
:disabled=
"S_CheckBranchOrder"
>
<el-option
label=
"不限"
:value=
"-1"
></el-option>
<el-option
label=
"不限"
:value=
"-1"
></el-option>
<el-option
v-for=
"(item,index) in BranchList"
:key=
"item.index"
:label=
"item.BName"
<el-option
v-for=
"(item,index) in BranchList"
:key=
"item.index"
:label=
"item.BName"
:value=
"item.Id"
></el-option>
:value=
"item.Id"
></el-option>
...
@@ -143,6 +144,7 @@
...
@@ -143,6 +144,7 @@
BranchList
:
[],
BranchList
:
[],
searchList
:
[],
searchList
:
[],
departMentList
:[],
departMentList
:[],
S_CheckBranchOrder
:
false
,
}
}
},
},
mounted
()
{
mounted
()
{
...
@@ -154,6 +156,10 @@
...
@@ -154,6 +156,10 @@
this
.
disabled
=
true
;
this
.
disabled
=
true
;
this
.
msg
.
UserId
=
Number
(
userInfo
.
EmployeeId
)
this
.
msg
.
UserId
=
Number
(
userInfo
.
EmployeeId
)
}
}
if
(
ActionMenuCode
.
indexOf
(
'S_CheckBranchOrder'
)
!=
-
1
){
this
.
S_CheckBranchOrder
=
true
this
.
msg
.
OutBranchId
=
userInfo
.
RB_Branch_id
}
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
PeriodId
)
{
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
PeriodId
)
{
this
.
msg
.
PeriodId
=
this
.
$route
.
query
.
PeriodId
this
.
msg
.
PeriodId
=
this
.
$route
.
query
.
PeriodId
}
}
...
...
src/components/FinancialModule/domesticCommissiondetailsTW2.vue
View file @
ca989eaa
...
@@ -40,7 +40,8 @@
...
@@ -40,7 +40,8 @@
</li>
</li>
<li>
<li>
<em>
出团公司
</em>
<em>
出团公司
</em>
<el-select
v-model=
"msg.OutBranchId"
size=
"mini"
@
change=
"handleCurrentChange(1)"
>
<el-select
v-model=
"msg.OutBranchId"
size=
"mini"
@
change=
"handleCurrentChange(1)"
:disabled=
"S_CheckBranchOrder"
>
<el-option
label=
"不限"
:value=
"-1"
></el-option>
<el-option
label=
"不限"
:value=
"-1"
></el-option>
<el-option
v-for=
"(item,index) in BranchList"
:key=
"item.index"
<el-option
v-for=
"(item,index) in BranchList"
:key=
"item.index"
:label=
"item.BName"
:value=
"item.Id"
>
:label=
"item.BName"
:value=
"item.Id"
>
...
@@ -192,8 +193,8 @@
...
@@ -192,8 +193,8 @@
TotalMoney
:
0
,
TotalMoney
:
0
,
TotalProfit
:
0
,
TotalProfit
:
0
,
TotalNum
:
0
,
TotalNum
:
0
,
disabled
:
true
disabled
:
true
,
S_CheckBranchOrder
:
false
,
}
}
},
},
mounted
()
{
mounted
()
{
...
@@ -222,6 +223,10 @@
...
@@ -222,6 +223,10 @@
this
.
disabled
=
true
;
this
.
disabled
=
true
;
this
.
msg
.
UserId
=
Number
(
userInfo
.
EmployeeId
)
this
.
msg
.
UserId
=
Number
(
userInfo
.
EmployeeId
)
}
}
if
(
ActionMenuCode
.
indexOf
(
'S_CheckBranchOrder'
)
!=
-
1
){
this
.
S_CheckBranchOrder
=
true
this
.
msg
.
OutBranchId
=
userInfo
.
RB_Branch_id
}
this
.
getList
();
this
.
getList
();
this
.
getqishilist
()
this
.
getqishilist
()
this
.
getCompanyList
()
//获取公司
this
.
getCompanyList
()
//获取公司
...
...
src/components/myOrdersAllType/components/OrderList.vue
View file @
ca989eaa
...
@@ -5,7 +5,8 @@
...
@@ -5,7 +5,8 @@
ref=
"multipleTable"
ref=
"multipleTable"
:data=
"OrderList"
:data=
"OrderList"
style=
"width: 100%"
style=
"width: 100%"
:default-sort =
"
{prop: 'date', order: 'descending'}">
:default-sort =
"
{prop: 'Money', order: 'null'}"
:sort-by="['Money','Income','PlatformTax','Refund','CostMoney','DueInMoney']">
<el-table-column
<el-table-column
width=
"200"
width=
"200"
prop=
"CreateTimeStr"
prop=
"CreateTimeStr"
...
@@ -98,6 +99,7 @@
...
@@ -98,6 +99,7 @@
</el-table-column>
</el-table-column>
<el-table-column
<el-table-column
sortable
sortable
prop=
"DueInMoney"
label=
"待收"
label=
"待收"
show-overflow-tooltip
>
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
...
@@ -310,6 +312,7 @@
...
@@ -310,6 +312,7 @@
this
.
GetAdminCarOrderPageList
(
row
,
url
,
href
,
data
)
this
.
GetAdminCarOrderPageList
(
row
,
url
,
href
,
data
)
}
}
else
if
(
row
.
OrderType
==
7
)
{
//jalan酒店
else
if
(
row
.
OrderType
==
7
)
{
//jalan酒店
this
.
$message
.
info
(
'jalan酒店暂不支持查看'
)
// if(this.pagesTitle=='销售'){
// if(this.pagesTitle=='销售'){
// name = 'CharterOrderList'
// name = 'CharterOrderList'
// }else{
// }else{
...
...
src/components/myOrdersAllType/components/allList.vue
View file @
ca989eaa
...
@@ -66,19 +66,19 @@
...
@@ -66,19 +66,19 @@
<div
class=
"HotelWorkList"
@
click=
"showWarningSearch=false"
>
<div
class=
"HotelWorkList"
@
click=
"showWarningSearch=false"
>
<div
class=
"query-box HotelWorkInput"
style=
"border-bottom: none;"
>
<div
class=
"query-box HotelWorkInput"
style=
"border-bottom: none;"
>
<ul>
<ul>
<li>
<
!--
<
li>
<span><em>
客人姓名
</em>
<span><em>
客人姓名
</em>
<el-input
clearable
v-model=
"msg.CustomerName"
placeholder=
"客人姓名"
class=
"w200"
/>
<el-input
clearable
v-model=
"msg.CustomerName"
placeholder=
"客人姓名"
class=
"w200"
/>
</span>
</span>
</li>
</li>
-->
<li>
<li>
<span><em>
商品名称
</em>
<span><em>
商品名称
</em>
<el-input
clearable
type=
""
v-model=
"msg.ProductName"
placeholder=
"请商品名称"
class=
"w200"
/>
<el-input
clearable
type=
""
v-model=
"msg.ProductName"
placeholder=
"请
输入
商品名称"
class=
"w200"
/>
</span>
</span>
</li>
</li>
<li>
<li>
<span><em>
{{
$t
(
'OrderList.search.orderNum'
)
}}
</em>
<span><em>
订单Id
</em>
<el-input
clearable
type=
""
v-model=
"msg.OrderId"
:placeholder=
"$t('OrderList.search.orderNum')
"
class=
"w200"
/>
<el-input
clearable
type=
""
v-model=
"msg.OrderId"
placeholder=
"请输入订单Id
"
class=
"w200"
/>
</span>
</span>
</li>
</li>
<li>
<li>
...
@@ -91,10 +91,10 @@
...
@@ -91,10 +91,10 @@
<el-input
clearable
v-model=
"msg.Mobile"
placeholder=
"电话"
class=
"w200"
/>
<el-input
clearable
v-model=
"msg.Mobile"
placeholder=
"电话"
class=
"w200"
/>
</span>
</span>
</li>
-->
</li>
-->
<li
v-if=
"
!Title
"
>
<li
v-if=
"
Title!='销售'
"
>
<span>
<span>
<em>
业务员
</em>
<em>
业务员
</em>
<el-select
filterable
v-model=
'msg.EnterId'
class=
"w200"
>
<el-select
filterable
v-model=
'msg.EnterId'
class=
"w200"
clearable
>
<el-option
:value=
"0"
label=
"不限"
></el-option>
<el-option
:value=
"0"
label=
"不限"
></el-option>
<el-option
v-for=
'item in EmployeeList'
<el-option
v-for=
'item in EmployeeList'
:label=
'item.EmName'
:label=
'item.EmName'
...
@@ -104,10 +104,10 @@
...
@@ -104,10 +104,10 @@
</el-select>
</el-select>
</span>
</span>
</li>
</li>
<li>
<li
v-if=
"Title!='销售'"
>
<span>
<span>
<em>
引流人
</em>
<em>
引流人
</em>
<el-select
filterable
v-model=
'msg.LureEmpId'
class=
"w200"
>
<el-select
filterable
v-model=
'msg.LureEmpId'
class=
"w200"
clearable
>
<el-option
:value=
"0"
label=
"不限"
></el-option>
<el-option
:value=
"0"
label=
"不限"
></el-option>
<el-option
v-for=
'item in EmployeeList'
<el-option
v-for=
'item in EmployeeList'
:label=
'item.EmName'
:label=
'item.EmName'
...
@@ -131,7 +131,7 @@
...
@@ -131,7 +131,7 @@
<span>
<span>
<em>
订单状态
</em>
<em>
订单状态
</em>
<el-select
v-model=
'msg.OrderState'
class=
"w200"
>
<el-select
v-model=
'msg.OrderState'
class=
"w200"
>
<
el-option
:value=
"0"
label=
"不限"
></el-option
>
<
!--
<el-option
:value=
"0"
label=
"不限"
></el-option>
--
>
<el-option
v-for=
'item in OrderStatusList'
<el-option
v-for=
'item in OrderStatusList'
:label=
'item.Name'
:label=
'item.Name'
:value=
'item.Id'
:value=
'item.Id'
...
@@ -319,7 +319,7 @@
...
@@ -319,7 +319,7 @@
OrderId
:
""
,
//订单id
OrderId
:
""
,
//订单id
GuestId
:
0
,
//客人id
GuestId
:
0
,
//客人id
EnterId
:
0
,
//业务员id
EnterId
:
0
,
//业务员id
OrderState
:
1
,
//订单状态
OrderState
:
'1'
,
//订单状态
Q_IsCollect
:
"0"
,
//收款状态
Q_IsCollect
:
"0"
,
//收款状态
StartTime
:
""
,
//报名开始日期
StartTime
:
""
,
//报名开始日期
EndTime
:
""
,
//报名结束日期
EndTime
:
""
,
//报名结束日期
...
@@ -361,7 +361,11 @@
...
@@ -361,7 +361,11 @@
PostId
:
0
,
PostId
:
0
,
IsLeave
:
0
,
IsLeave
:
0
,
},
},
OrderStatusList
:
[],
OrderStatusList
:
[
{
Name
:
"不限"
,
Id
:
"0"
},
{
Name
:
"正常"
,
Id
:
"1"
},
{
Name
:
"取消"
,
Id
:
"2"
},
],
QIsCollectList
:
[
QIsCollectList
:
[
{
Name
:
"不限"
,
Id
:
"0"
},
{
Name
:
"不限"
,
Id
:
"0"
},
{
Name
:
"已收齐"
,
Id
:
"1"
},
{
Name
:
"已收齐"
,
Id
:
"1"
},
...
@@ -575,7 +579,7 @@
...
@@ -575,7 +579,7 @@
this
.
msg
.
StartTime
=
this
.
getBeforeDate
(
31
,
new
Date
())
this
.
msg
.
StartTime
=
this
.
getBeforeDate
(
31
,
new
Date
())
this
.
msg
.
EndTime
=
this
.
getBeforeDate
(
0
,
new
Date
())
this
.
msg
.
EndTime
=
this
.
getBeforeDate
(
0
,
new
Date
())
this
.
DatelistBM
=
[
new
Date
(
this
.
msg
.
StartTime
),
new
Date
()]
this
.
DatelistBM
=
[
new
Date
(
this
.
msg
.
StartTime
),
new
Date
()]
this
.
GetOrderStatusEnumList
()
//
this.GetOrderStatusEnumList()
this
.
GetTicketStatusEnumList
()
this
.
GetTicketStatusEnumList
()
this
.
GetOrderTypeEnumList
()
this
.
GetOrderTypeEnumList
()
this
.
getLineList
()
this
.
getLineList
()
...
...
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