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
a88a0e5a
Commit
a88a0e5a
authored
Aug 15, 2025
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
跟团游新增订单
parent
0c50e933
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
1617 additions
and
9 deletions
+1617
-9
addConfig.js
src/components/SalesModule/components/addConfig.js
+12
-0
addOrder.vue
src/components/SalesModule/components/addOrder.vue
+1521
-0
pinkDrawer.vue
src/components/SalesModule/components/pinkDrawer.vue
+45
-0
groupTourOrder.vue
src/components/SalesModule/groupTourOrder.vue
+33
-3
editOP.vue
src/components/cruiseShip/components/editOP.vue
+1
-1
loss.vue
src/components/cruiseShip/components/loss.vue
+1
-1
offset.vue
src/components/cruiseShip/components/offset.vue
+1
-1
remarks.vue
src/components/cruiseShip/components/remarks.vue
+1
-1
totalAamount.vue
src/components/cruiseShip/components/totalAamount.vue
+1
-1
cruiseShipInfo.vue
src/components/cruiseShip/list/cruiseShipInfo.vue
+1
-1
No files found.
src/components/SalesModule/components/addConfig.js
0 → 100644
View file @
a88a0e5a
// 邮轮列表配置
export
const
addConfig
=
{
// 抽屉配置
drawerConfig
:
{
title
:
'跟团游信息'
,
size
:
'90%'
,
direction
:
'rtl'
},
}
// 导出默认配置
export
default
addConfig
src/components/SalesModule/components/addOrder.vue
0 → 100644
View file @
a88a0e5a
This diff is collapsed.
Click to expand it.
src/components/SalesModule/components/pinkDrawer.vue
0 → 100644
View file @
a88a0e5a
<
template
>
<div>
<el-drawer
v-if=
"drawerConfig"
:visible
.
sync=
"drawerVisible"
v-bind=
"drawerConfig"
@
close=
"handleDrawerClose"
>
<slot
name=
"drawer"
:visible=
"drawerVisible"
:data=
"drawerData"
:close=
"handleDrawerClose"
>
</slot>
</el-drawer>
</div>
</
template
>
<
script
>
export
default
{
props
:
{
// 抽屉配置
drawerConfig
:
{
type
:
Object
,
default
:
null
},
},
data
()
{
return
{
// 抽屉状态
drawerVisible
:
false
,
drawerData
:
null
,
}
},
mounted
()
{
},
methods
:
{
// 抽屉相关方法
openDrawer
(
data
=
null
)
{
this
.
drawerData
=
data
;
this
.
drawerVisible
=
true
;
},
handleDrawerClose
()
{
this
.
drawerVisible
=
false
;
this
.
drawerData
=
null
;
this
.
$emit
(
'drawer-close'
);
},
},
}
</
script
>
\ No newline at end of file
src/components/SalesModule/groupTourOrder.vue
View file @
a88a0e5a
<
style
>
@import
"../../assets/css/newTravelManager.css"
;
@import
'../common/BaseListManager.css'
;
.color_red_order
{
color
:
#e95252
!important
;
}
...
...
@@ -1647,6 +1647,7 @@
</el-popover>
</li>
<li>
<input
v-if=
"userInfo.SimpleEasy==1"
type=
"button"
class=
"hollowFixedBtn"
:value=
"$t('pub.addBtn')"
@
click=
"addOrders"
/>
<input
type=
"button"
class=
"hollowFixedBtn"
:value=
"$t('pub.searchBtn')"
@
click=
"
getList();
resetPageIndex();
...
...
@@ -2685,6 +2686,14 @@
</button>
</div>
</el-dialog> -->
<pinkDrawer
ref=
"addOrders"
:drawer-config=
"drawerConfig"
>
<
template
slot=
"drawer"
slot-scope=
"{ visible, close }"
>
<addOrder
v-if=
"visible&&showType==1"
:isDrawerMode=
"true"
:details=
"selectedSpotData"
@
close=
"close"
@
save-success=
"handleSaveSuccess"
></addOrder>
</
template
>
</pinkDrawer>
</div>
</template>
...
...
@@ -2698,9 +2707,14 @@
import
orderRemark
from
"../orderCommon/order-remark.vue"
;
//订单备注
import
PriceDetail
from
'../orderCommon/PriceDetail.vue'
;
import
DateLimit
from
'../public/DateLimit.vue'
;
import
pinkDrawer
from
'./components/pinkDrawer.vue'
;
import
addOrder
from
'./components/addOrder.vue'
;
import
addConfig
from
"./components/addConfig.js"
;
export
default
{
data
()
{
return
{
selectedSpotData
:
null
,
showType
:
1
,
pickerBeginDateAfter
:
{
disabledDate
:
time
=>
{
let
startTime
=
new
Date
(
this
.
msg
.
QStartDate
);
...
...
@@ -3046,7 +3060,9 @@
commissionDialog
,
orderRemark
:
orderRemark
,
PriceDetail
,
DateLimit
DateLimit
,
pinkDrawer
,
addOrder
,
},
filters
:
{
priceFormat
(
value
)
{
...
...
@@ -3062,12 +3078,26 @@
return
x1
+
x2
;
},
},
watch
:
{
watch
:
{
SQcheckdAll
(
val
)
{
this
.
checkdAll
(
val
);
},
},
computed
:
{
// 抽屉配置
drawerConfig
()
{
return
addConfig
.
drawerConfig
;
},
},
methods
:
{
addOrders
()
{
this
.
$refs
.
addOrders
.
openDrawer
();
},
handleSaveSuccess
()
{
this
.
$refs
.
addOrders
.
handleDrawerClose
();
this
.
getList
();
this
.
$message
.
success
(
'保存成功'
);
},
gotoProduct
(
item
)
{
var
path
=
"productQuery"
;
if
(
item
.
teamType
==
4
)
{
...
...
src/components/cruiseShip/components/editOP.vue
View file @
a88a0e5a
...
...
@@ -36,6 +36,7 @@
flex-direction
:
column
;
border
:
none
;
box-shadow
:
none
;
overflow
:
hidden
;
}
.drawer-mode
.hotel-tabs
.el-tabs__header
{
...
...
@@ -82,7 +83,6 @@
}
.drawer-mode
.tab-content.hidden
{
height
:
calc
(
100vh
-
160px
);
overflow
:
hidden
;
display
:
flex
;
flex-direction
:
column
;
...
...
src/components/cruiseShip/components/loss.vue
View file @
a88a0e5a
...
...
@@ -36,6 +36,7 @@
flex-direction
:
column
;
border
:
none
;
box-shadow
:
none
;
overflow
:
hidden
;
}
.drawer-mode
.hotel-tabs
.el-tabs__header
{
...
...
@@ -82,7 +83,6 @@
}
.drawer-mode
.tab-content.hidden
{
height
:
calc
(
100vh
-
160px
);
overflow
:
hidden
;
display
:
flex
;
flex-direction
:
column
;
...
...
src/components/cruiseShip/components/offset.vue
View file @
a88a0e5a
...
...
@@ -36,6 +36,7 @@
flex-direction
:
column
;
border
:
none
;
box-shadow
:
none
;
overflow
:
hidden
;
}
.drawer-mode
.hotel-tabs
.el-tabs__header
{
...
...
@@ -82,7 +83,6 @@
}
.drawer-mode
.tab-content.hidden
{
height
:
calc
(
100vh
-
160px
);
overflow
:
hidden
;
display
:
flex
;
flex-direction
:
column
;
...
...
src/components/cruiseShip/components/remarks.vue
View file @
a88a0e5a
...
...
@@ -36,6 +36,7 @@
flex-direction
:
column
;
border
:
none
;
box-shadow
:
none
;
overflow
:
hidden
;
}
.drawer-mode
.hotel-tabs
.el-tabs__header
{
...
...
@@ -82,7 +83,6 @@
}
.drawer-mode
.tab-content.hidden
{
height
:
calc
(
100vh
-
160px
);
overflow
:
hidden
;
display
:
flex
;
flex-direction
:
column
;
...
...
src/components/cruiseShip/components/totalAamount.vue
View file @
a88a0e5a
...
...
@@ -36,6 +36,7 @@
flex-direction
:
column
;
border
:
none
;
box-shadow
:
none
;
overflow
:
hidden
;
}
.drawer-mode
.hotel-tabs
.el-tabs__header
{
...
...
@@ -82,7 +83,6 @@
}
.drawer-mode
.tab-content.hidden
{
height
:
calc
(
100vh
-
160px
);
overflow
:
hidden
;
display
:
flex
;
flex-direction
:
column
;
...
...
src/components/cruiseShip/list/cruiseShipInfo.vue
View file @
a88a0e5a
...
...
@@ -36,6 +36,7 @@
flex-direction
:
column
;
border
:
none
;
box-shadow
:
none
;
overflow
:
hidden
;
}
.drawer-mode
.hotel-tabs
.el-tabs__header
{
...
...
@@ -82,7 +83,6 @@
}
.drawer-mode
.tab-content.hidden
{
height
:
calc
(
100vh
-
160px
);
overflow
:
hidden
;
display
:
flex
;
flex-direction
:
column
;
...
...
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