Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bims
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
孙海亮
bims
Commits
91fea345
Commit
91fea345
authored
Feb 23, 2022
by
yanglilong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'修改'
parent
011255a0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
10 deletions
+18
-10
forget.vue
src/views/author/forget.vue
+2
-2
indexDetail.vue
src/views/verification/indexDetail.vue
+16
-8
No files found.
src/views/author/forget.vue
View file @
91fea345
...
@@ -175,11 +175,11 @@ export default {
...
@@ -175,11 +175,11 @@ export default {
.bd-b(solid, 31, transparent);
.bd-b(solid, 31, transparent);
}
}
&::before {
&::before {
.l(-
20
);
.l(-
18.8
);
.bd-r(solid, 20, #2b63ff);
.bd-r(solid, 20, #2b63ff);
}
}
&::after {
&::after {
.r(-
20
);
.r(-
18.8
);
.bd-l(solid, 20, #2b63ff);
.bd-l(solid, 20, #2b63ff);
}
}
}
}
...
...
src/views/verification/indexDetail.vue
View file @
91fea345
...
@@ -108,12 +108,12 @@
...
@@ -108,12 +108,12 @@
</a-col>
</a-col>
<a-col
:lg=
"12"
:xs=
"24"
>
<a-col
:lg=
"12"
:xs=
"24"
>
<a-form-model-item
label=
"账单回款金额"
prop=
"paidAmountEob"
>
<a-form-model-item
label=
"账单回款金额"
prop=
"paidAmountEob"
>
<a-input
v-model.trim=
"editFormObj.paidAmountEob"
placeholder=
"账单回款金额"
type=
"number"
/>
<a-input
v-model.trim=
"editFormObj.paidAmountEob"
placeholder=
"账单回款金额"
type=
"number"
@
change=
"moneyChange"
/>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
<a-col
:lg=
"12"
:xs=
"24"
>
<a-col
:lg=
"12"
:xs=
"24"
>
<a-form-model-item
label=
"未赔付金额"
prop=
"refuseAmountEob"
>
<a-form-model-item
label=
"未赔付金额"
prop=
"refuseAmountEob"
>
<a-input
v-model.trim=
"editFormObj.refuseAmountEob"
placeholder=
"未赔付金额"
type=
"number"
/>
<a-input
v-model.trim=
"editFormObj.refuseAmountEob"
placeholder=
"未赔付金额"
type=
"number"
disabled
/>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
<a-col
:lg=
"12"
:xs=
"24"
>
<a-col
:lg=
"12"
:xs=
"24"
>
...
@@ -233,6 +233,10 @@ export default {
...
@@ -233,6 +233,10 @@ export default {
this
.
isEditNewEob
=
false
;
this
.
isEditNewEob
=
false
;
this
.
getData
();
this
.
getData
();
},
},
//回款金额改变
moneyChange
(){
this
.
editFormObj
.
refuseAmountEob
=
this
.
form
.
eobPaidAmount
||
0
-
this
.
editFormObj
.
paidAmountEob
||
0
;
},
// 获取保险公司下拉选项
// 获取保险公司下拉选项
_getCompanyOptions
()
{
_getCompanyOptions
()
{
this
.
$apis
.
GETCOMPANYOPTIONS
().
then
((
res
)
=>
{
this
.
$apis
.
GETCOMPANYOPTIONS
().
then
((
res
)
=>
{
...
@@ -257,13 +261,16 @@ export default {
...
@@ -257,13 +261,16 @@ export default {
},
},
//修改单条数据
//修改单条数据
editEvt
(
record
)
{
editEvt
(
record
)
{
this
.
dialogShow
=
true
;
this
.
$nextTick
(()
=>
{
this
.
editFormObj
=
{
this
.
editFormObj
=
{
receiptNo
:
record
.
receiptNo
,
receiptNo
:
record
.
receiptNo
,
refuseAmountEob
:
record
.
refuseAmountEob
||
""
,
refuseAmountEob
:
record
.
refuseAmountEob
||
""
,
paidSts
:
record
.
paidSts
||
""
,
paidSts
:
record
.
paidSts
||
""
,
paidAmountEob
:
record
.
paidAmountEob
||
""
,
paidAmountEob
:
record
.
paidAmountEob
||
""
,
};
};
this
.
dialogShow
=
true
;
this
.
moneyChange
();
})
},
},
//编辑保存
//编辑保存
handleEditOK
()
{
handleEditOK
()
{
...
@@ -271,6 +278,7 @@ export default {
...
@@ -271,6 +278,7 @@ export default {
if
(
valid
)
{
if
(
valid
)
{
this
.
$apis
.
SAVEEOBRECEIPTINFO
({
this
.
$apis
.
SAVEEOBRECEIPTINFO
({
...
this
.
form
,
...
this
.
form
,
eobFile
:
this
.
form
.
eobFile
.
length
>
0
?
this
.
form
.
eobFile
[
0
].
url
:
''
,
eobReceiptList
:
[
this
.
editFormObj
],
eobReceiptList
:
[
this
.
editFormObj
],
eobDate
:
this
.
form
.
eobDate
?
moment
(
this
.
form
.
eobDate
).
format
(
'
YYYY-MM-DD 00:00:00
'
):
''
eobDate
:
this
.
form
.
eobDate
?
moment
(
this
.
form
.
eobDate
).
format
(
'
YYYY-MM-DD 00:00:00
'
):
''
})
})
...
...
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