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
646b0058
Commit
646b0058
authored
Apr 11, 2025
by
youjie
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
f658b846
1acdbbed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
ClientBankAccount.vue
...mponents/FinancialModule/components/ClientBankAccount.vue
+23
-0
No files found.
src/components/FinancialModule/components/ClientBankAccount.vue
View file @
646b0058
...
...
@@ -237,6 +237,10 @@
<el-tooltip
effect=
"dark"
:content=
"$t('pub.updateMsg')"
placement=
"top"
>
<i
class=
"edit el-icon-edit"
@
click=
"IsEditPICPayDate=true"
></i>
</el-tooltip>
<el-tooltip
effect=
"dark"
content=
"删除"
placement=
"top"
>
<i
v-if=
"picMsg.CreateDate!=null && picMsg.CreateDate!=''"
class=
"edit el-icon-delete"
@
click=
"DelPICPayDate()"
></i>
</el-tooltip>
</div>
<div
v-else
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"用于PIC每日查看可付款单据"
placement=
"top"
><span>
预付款日:
</span></el-tooltip>
...
...
@@ -691,6 +695,25 @@
this
.
$message
.
error
(
res
.
data
.
message
);
}
},
err
=>
{})
},
DelPICPayDate
(){
this
.
$confirm
(
"确认要删除PIC付款日期吗?"
,
this
.
$t
(
'tips.tips'
),
{
confirmButtonText
:
this
.
$t
(
'pub.yes'
),
cancelButtonText
:
this
.
$t
(
'pub.no'
),
type
:
'warning'
}).
then
(()
=>
{
this
.
apipost
(
'Financial_post_CancelPICPayDate'
,
this
.
picMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
picMsg
.
CreateDate
=
''
;
this
.
IsEditPICPayDate
=
false
;
this
.
$message
.
success
(
res
.
data
.
message
);
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
);
}
},
err
=>
{})
}).
catch
(()
=>
{
});
}
},
mounted
()
{
...
...
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