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
2e0f8565
Commit
2e0f8565
authored
Apr 10, 2025
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
单项 境内合同驳回原因
parent
d913900a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
5 deletions
+18
-5
ElectronicAudit.vue
src/components/administrative/ElectronicAudit.vue
+18
-5
No files found.
src/components/administrative/ElectronicAudit.vue
View file @
2e0f8565
...
...
@@ -330,7 +330,7 @@
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"$t('fnc.bohui')"
placement=
"top-start"
v-if=
"item.Status==1"
>
<el-button
type=
"danger"
icon=
"iconfont icon-chehui"
circle
@
click=
"
SubmitContract
(item,3)"
>
<el-button
type=
"danger"
icon=
"iconfont icon-chehui"
circle
@
click=
"
showBoHui
(item,3)"
>
</el-button>
</el-tooltip>
<
template
v-if=
"item.Status==2||item.Status==4"
>
...
...
@@ -360,7 +360,8 @@
</div>
</template>
<el-dialog
custom-class=
'w500'
:title=
"$t('objFill.v101.administrative.hetongbohui')"
:visible
.
sync=
"isShowContract"
<el-dialog
custom-class=
'w500'
:title=
"$t('objFill.v101.administrative.hetongbohui')"
:visible
.
sync=
"isShowContract"
center
:before-close=
"closeContractDialog"
>
<table
class=
"layerTable"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
>
<tr>
...
...
@@ -372,7 +373,7 @@
</table>
<div
slot=
"footer"
class=
"dialog-footer"
>
<button
class=
"hollowFixedBtn"
@
click=
"closeContractDialog"
>
{{$t('pub.cancelBtn')}}
</button>
<button
class=
"normalBtn"
type=
"primary"
@
click=
"
AuditElec
"
>
{{$t('pub.sureBtn')}}
</button>
<button
class=
"normalBtn"
type=
"primary"
@
click=
"
!isBoHui?AuditElec():SubmitContract(BoHuiObj,auditMsg.AuditContract)
"
>
{{$t('pub.sureBtn')}}
</button>
</div>
</el-dialog>
</div>
...
...
@@ -459,7 +460,9 @@
Id
:
0
,
//合同编号
AuditContract
:
0
,
//审核状态
AuditContractReason
:
""
,
//审核原因
}
},
BoHuiObj
:
null
,
isBoHui
:
0
,
//是否是单项、一日游、境内旅游合同驳回
};
},
methods
:
{
...
...
@@ -510,6 +513,8 @@
},
//关闭合同弹窗
closeContractDialog
()
{
this
.
BoHuiObj
=
null
this
.
isBoHui
=
0
;
this
.
auditMsg
.
Id
=
0
;
this
.
auditMsg
.
AuditContract
=
0
;
this
.
auditMsg
.
AuditContractReason
=
''
;
...
...
@@ -579,6 +584,13 @@
getDate
(
date
)
{
return
moment
(
date
).
format
(
"YYYY-MM-DD"
);
},
// 单项、一日游、境内旅游合同 驳回原有
showBoHui
(
item
,
status
)
{
this
.
BoHuiObj
=
JSON
.
parse
(
JSON
.
stringify
(
item
));
this
.
auditMsg
.
AuditContract
=
status
;
this
.
isShowContract
=
true
this
.
isBoHui
=
1
;
},
//提交并盖章
SubmitContract
(
item
,
status
)
{
var
that
=
this
;
...
...
@@ -592,7 +604,8 @@
that
.
apipost
(
"travelcontract_post_UpdateTravelContractStatusService"
,
{
ID
:
item
.
ID
,
Status
:
status
Status
:
status
,
AuditContractReason
:
this
.
auditMsg
.
AuditContractReason
,
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
...
...
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