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
f9fc2461
Commit
f9fc2461
authored
Apr 20, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save
parent
873f71ca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
0 deletions
+26
-0
TravelControlListSale.vue
...onents/TravelManager/TravelList/TravelControlListSale.vue
+23
-0
newQuotation.vue
...ponents/TravelManager/TravelNewQuotation/newQuotation.vue
+3
-0
No files found.
src/components/TravelManager/TravelList/TravelControlListSale.vue
View file @
f9fc2461
...
...
@@ -376,6 +376,9 @@
<span>
{{
$t
(
'scen.sc_cp'
)
}}
</span>
{{
item
.
OutBranchName
}}
</p>
<p
class=
"travelnowrap"
>
<span
style=
"cursor: pointer;"
@
click=
"showDialog(item.ConfigId, item.OfferId)"
>
价格信息
</span>
</p>
</div>
</div>
<div
class=
"el-col"
style=
"width:190px;"
>
...
...
@@ -685,12 +688,23 @@
<button
class=
"normalBtn"
type=
"primary"
@
click=
"SetSellingPoints"
>
{{$t('pub.sureBtn')}}
</button>
</div>
</div>
<el-dialog
:visible
.
sync=
"dialog.show"
width=
"1400px"
title=
"价格信息"
>
<price-dialog
:ConfigId=
"dialog.ConfigId"
:OfferId=
"dialog.OfferId"
ref=
"dialog"
></price-dialog>
</el-dialog>
</div>
</template>
<
script
>
import
priceDialog
from
'../TravelNewQuotation/priceDialog.vue'
;
export
default
{
components
:
{
priceDialog
},
data
()
{
return
{
dialog
:
{
show
:
false
,
ConfigId
:
''
,
OfferId
:
''
},
//查询数据列表
queryCommonData
:
{
//线路列表
...
...
@@ -834,6 +848,15 @@
};
},
methods
:
{
showDialog
(
ConfigId
,
OfferId
)
{
this
.
dialog
=
{
show
:
true
,
ConfigId
,
OfferId
}
this
.
$nextTick
(()
=>
{
this
.
$refs
.
dialog
.
getPostData
()
})
},
downloadFile
:
function
(
item
)
{
let
reg
=
/^http
(
s
)?
:
\/\/(
.*
?)\/
/
;
this
.
downloadFileRename
(
item
.
FullUrl
.
replace
(
reg
,
""
),
item
.
Name
);
...
...
src/components/TravelManager/TravelNewQuotation/newQuotation.vue
View file @
f9fc2461
...
...
@@ -628,6 +628,9 @@
goToOpenTravel
(
item
)
{
var
routeName
=
this
.
$route
.
name
;
var
path
=
'TravelManager5'
;
if
(
item
.
TeamType
===
1
)
{
path
=
'TravelManager3'
}
// if (routeName == 'newQuotation') {
// path = 'TravelManager6'
// }
...
...
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