Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-csf-front
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
yuzhenWang
yd-csf-front
Commits
b1596447
Commit
b1596447
authored
Jan 26, 2026
by
Sweet Zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
预约增加判断
parent
8857fdea
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
src/views/sign/appointment/appointmentEdit.vue
+2
-2
src/views/sign/appointment/components/appointmentInfo.vue
+2
-2
src/views/sign/underwritingMain/policyDetail.vue
+1
-1
No files found.
src/views/sign/appointment/appointmentEdit.vue
View file @
b1596447
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
>
取消预约
</el-button
>
取消预约
</el-button
>
>
</div>
</div>
<div
v-else=
"appointmentSummeryInfo.status !== '2'"
style=
"margin-right: 10px"
>
<div
v-else
-if
=
"appointmentSummeryInfo.status !== '2'"
style=
"margin-right: 10px"
>
<el-button
<el-button
v-if=
"pageSource !== 'policyList' && editStatus"
v-if=
"pageSource !== 'policyList' && editStatus"
type=
"primary"
type=
"primary"
...
@@ -123,7 +123,7 @@
...
@@ -123,7 +123,7 @@
</el-row>
</el-row>
<el-tabs
v-model=
"activeName"
type=
"card"
class=
"demo-tabs"
:before-leave=
"beforeTabLeave"
>
<el-tabs
v-model=
"activeName"
type=
"card"
class=
"demo-tabs"
:before-leave=
"beforeTabLeave"
>
<el-tab-pane
<el-tab-pane
v-for=
"
(tab, index)
in tabsList"
v-for=
"
tab
in tabsList"
:key=
"tab.name"
:key=
"tab.name"
:label=
"tab.label"
:label=
"tab.label"
:name=
"tab.name"
:name=
"tab.name"
...
...
src/views/sign/appointment/components/appointmentInfo.vue
View file @
b1596447
...
@@ -1165,7 +1165,7 @@ const setFormValue = (obj, formData) => {
...
@@ -1165,7 +1165,7 @@ const setFormValue = (obj, formData) => {
if
(
field
.
key
==
'confirmAppointmentTime'
&&
props
.
appointmentStatus
!==
0
)
{
if
(
field
.
key
==
'confirmAppointmentTime'
&&
props
.
appointmentStatus
!==
0
)
{
field
.
show
=
true
field
.
show
=
true
}
}
if
(
field
.
compositionTime
){
if
(
field
.
compositionTime
&&
obj
[
field
.
key
]
){
field
.
finishTime
=
obj
[
field
.
key
]
field
.
finishTime
=
obj
[
field
.
key
]
form
.
value
[
field
.
key
]
=
proxy
.
formatToDate
(
obj
[
field
.
key
])
form
.
value
[
field
.
key
]
=
proxy
.
formatToDate
(
obj
[
field
.
key
])
field
.
timeValue
=
obj
[
field
.
key
].
split
(
' '
)[
1
]
field
.
timeValue
=
obj
[
field
.
key
].
split
(
' '
)[
1
]
...
@@ -1192,7 +1192,7 @@ const setFormValue = (obj, formData) => {
...
@@ -1192,7 +1192,7 @@ const setFormValue = (obj, formData) => {
}
}
}
}
// 给到港时间的时分赋值
// 给到港时间的时分赋值
if
(
field
.
key
==
'arrivalTime'
)
{
if
(
field
.
key
==
'arrivalTime'
&&
obj
[
field
.
key
]
)
{
if
(
obj
[
field
.
key
]
&&
obj
[
field
.
key
].
split
(
' '
).
length
>
1
)
{
if
(
obj
[
field
.
key
]
&&
obj
[
field
.
key
].
split
(
' '
).
length
>
1
)
{
form
.
value
[
field
.
key
]
=
obj
[
field
.
key
].
split
(
' '
)[
0
]
form
.
value
[
field
.
key
]
=
obj
[
field
.
key
].
split
(
' '
)[
0
]
field
.
timeValue
=
obj
[
field
.
key
].
split
(
' '
)[
1
]
field
.
timeValue
=
obj
[
field
.
key
].
split
(
' '
)[
1
]
...
...
src/views/sign/underwritingMain/policyDetail.vue
View file @
b1596447
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<div
class=
"form-page"
>
<div
class=
"form-page"
>
<el-form
ref=
"formRef"
:model=
"localData"
label-width=
"120px"
size=
"default"
>
<el-form
ref=
"formRef"
:model=
"localData"
label-width=
"120px"
size=
"default"
>
<!-- Tabs -->
<!-- Tabs -->
<el-tabs
v-model=
"activeTab"
@
tab-click=
"handleTabClick"
@
before-leave=
"
() => handleBeforeLeave()
"
>
<el-tabs
v-model=
"activeTab"
@
tab-click=
"handleTabClick"
@
before-leave=
"
handleBeforeLeave
"
>
<el-tab-pane
label=
"基础信息"
name=
"basic"
></el-tab-pane>
<el-tab-pane
label=
"基础信息"
name=
"basic"
></el-tab-pane>
<el-tab-pane
label=
"产品计划"
name=
"productPlan"
></el-tab-pane>
<el-tab-pane
label=
"产品计划"
name=
"productPlan"
></el-tab-pane>
<el-tab-pane
label=
"首期缴费"
name=
"firstPayment"
></el-tab-pane>
<el-tab-pane
label=
"首期缴费"
name=
"firstPayment"
></el-tab-pane>
...
...
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