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
170345f6
Commit
170345f6
authored
Aug 08, 2024
by
youjie
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into carOrder
parents
bce265a2
a8e71b3b
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1356 additions
and
1350 deletions
+1356
-1350
ReservationOrder.vue
...components/CarDealerOrder/components/ReservationOrder.vue
+2
-2
BasicDocuments.vue
src/components/FinancialModule/BasicDocuments.vue
+8
-6
FinancialDocumentsDetail.vue
src/components/FinancialModule/FinancialDocumentsDetail.vue
+1
-1
HotelList.vue
src/components/Hotel/DiDa/HotelList.vue
+303
-291
HotelSure.vue
src/components/Hotel/DiDa/HotelSure.vue
+1034
-1048
confirmationOrderDownLoadNew.vue
src/components/confirmationOrderDownLoadNew.vue
+8
-2
No files found.
src/components/CarDealerOrder/components/ReservationOrder.vue
View file @
170345f6
...
...
@@ -160,12 +160,12 @@
</el-select>
</span>
</li>
<li>
<
!--
<
li>
<span><em>
主
{{
$t
(
'OrderList.search.orderId'
)
}}
</em>
<el-input
clearable
type=
"Number"
v-model=
"msg.MainId"
:placeholder=
"$t('objFill.orderid')"
@
keyup
.
native=
"handleCurrentChange(1)"
/>
</span>
</li>
</li>
-->
<li>
<span><em>
{{
$t
(
'OrderList.search.orderId'
)
}}
</em>
<el-input
clearable
type=
"Number"
v-model=
"msg.OrderId"
:placeholder=
"$t('objFill.orderid')"
...
...
src/components/FinancialModule/BasicDocuments.vue
View file @
170345f6
...
...
@@ -2654,6 +2654,7 @@ else if (Type==2) {
event_id
:
'CarDealerOrder'
,
data
:
{
OrderId
:
this
.
GetDetail
.
ReFinanceId
,
type
:
1
}},
`
${
href
}
`
)
}
else
{
this
.
$router
.
push
({
...
...
@@ -2671,7 +2672,8 @@ else if (Type==2) {
window
.
parent
.
postMessage
({
event_id
:
'CarDealerOrder'
,
data
:
{
MainId
:
this
.
GetDetail
.
ReFinanceId
,
OrderId
:
this
.
GetDetail
.
ReFinanceId
,
type
:
2
}
},
`
${
href
}
`
)
}
else
{
...
...
src/components/FinancialModule/FinancialDocumentsDetail.vue
View file @
170345f6
...
...
@@ -1908,7 +1908,7 @@
window
.
parent
.
postMessage
({
event_id
:
'CarDealerOrder'
,
data
:
{
Main
Id
:
this
.
GetDetail
.
ReFinanceId
,
Order
Id
:
this
.
GetDetail
.
ReFinanceId
,
type
:
1
}
},
`
${
href
}
`
)
...
...
src/components/Hotel/DiDa/HotelList.vue
View file @
170345f6
This diff is collapsed.
Click to expand it.
src/components/Hotel/DiDa/HotelSure.vue
View file @
170345f6
This diff is collapsed.
Click to expand it.
src/components/confirmationOrderDownLoadNew.vue
View file @
170345f6
...
...
@@ -149,7 +149,7 @@
</
template
>
</template>
<!-- 可以让销售修改基本信息-->
<el-button
v-if=
"orderId>0"
type=
"primary"
size=
"medium"
value=
"修改信息"
@
click=
"editMsgShow=true
"
>
<el-button
v-if=
"orderId>0"
type=
"primary"
value=
"修改信息"
@
click=
"editMsgShow=true"
style=
"margin-left:20px;
"
>
修改信息
</el-button>
</el-col>
<el-col
v-if=
"orderId<=0"
>
...
...
@@ -532,7 +532,13 @@
method
:
'get'
,
url
:
ocrUrl
,
data
:
{},
responseType
:
'arraybuffer'
responseType
:
'arraybuffer'
,
onDownloadProgress
:
(
progressEvent
)
=>
{
const
progress
=
Math
.
round
((
progressEvent
.
loaded
/
progressEvent
.
total
)
*
100
);
that
.
loadingText
=
`正在下载`
+
(
that
.
orderId
>
0
?
"出团通知书"
:
"行程"
)
+
`文件`
+
progress
+
`%,请勿关闭或刷新页面...`
;
// 在这里处理下载进度, 如更新界面上的进度条
}
}).
then
(
res
=>
{
that
.
pdfLoading
=
false
;
let
blob
=
new
Blob
([
res
.
data
],
{
...
...
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