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
ad458bbb
Commit
ad458bbb
authored
Oct 26, 2023
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
52bc2cad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
61 additions
and
0 deletions
+61
-0
empBankAccount.vue
src/components/administrative/empBankAccount.vue
+61
-0
No files found.
src/components/administrative/empBankAccount.vue
View file @
ad458bbb
...
...
@@ -78,6 +78,10 @@
<th>
{{
$t
(
"ground.zhanghuleibie"
)
}}
</th>
<th>
{{
$t
(
"ground.suoshujigou"
)
}}
</th>
<th>
{{
$t
(
"fnc.acc"
)
}}
</th>
<th>
{{
$t
(
"fnc.khleixing"
)
}}
</th>
<th>
创建人
</th>
<th>
{{
$t
(
"admin.admin_status"
)
}}
</th>
<th
v-if=
"addMsg.Type==8"
>
{{
$t
(
"admin.admin_operate"
)
}}
</th>
</tr>
<tr
v-for=
"(item,index) in accountList"
>
<td>
{{
item
.
OpenBankName
}}
</td>
...
...
@@ -91,6 +95,36 @@
<td>
{{
item
.
BankName
}}
</td>
<td>
{{
item
.
CardNum
}}
<br/>
{{
item
.
AccountHolder
}}
</td>
<td>
{{
item
.
TypeName
}}
</td>
<td>
{{
item
.
CreateByName
?
item
.
CreateByName
:
'-'
}}
<p>
{{
item
.
CreateDate
?
item
.
CreateDate
:
'-'
}}
</p>
</td>
<td>
<span
v-if=
'item.Status!=0'
style=
"color: #E95252;"
>
{{
$t
(
'pub.fressSel'
)
}}
</span>
<span
v-if=
'item.Status==0'
style=
"color: #09D49D;"
>
{{
$t
(
'pub.normalSel'
)
}}
</span>
</td>
<td
class=
"empBankAccountIcon"
v-if=
"addMsg.Type==8"
>
<el-button-group>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"绑定"
placement=
"top-start"
>
<el-button
v-if=
"item.Type == 10"
@
click=
"bindData(item.ID)"
type=
"primary"
style=
"background: #09d49d; border-color: #09d49d"
icon=
"iconfont icon-bianji-smal"
></el-button>
</el-tooltip>
</el-button-group>
</td>
</tr>
</table>
</div>
...
...
@@ -407,6 +441,33 @@
that
.
$message
.
info
(
'操作失败'
)
});
},
bindData
(
id
){
let
that
=
this
this
.
$confirm
(
"是否绑定当前付款对象"
,
'提示'
,
{
confirmButtonText
:
that
.
$t
(
'pub.sureBtn'
),
cancelButtonText
:
that
.
$t
(
'pub.cancelBtn'
),
type
:
'warning'
}).
then
(()
=>
{
this
.
apipost
(
'admin_post_BindEmpBankAccount'
,
{
BAId
:
id
,
ObjID
:
this
.
$route
.
query
.
id
,
Type
:
this
.
$route
.
query
.
type
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
that
.
$message
.
success
(
'操作成功'
)
this
.
outerVisible
=
false
;
that
.
getList
();
}
else
{
that
.
$message
.
info
(
'操作失败'
)
}
},
err
=>
{})
}).
catch
(()
=>
{
that
.
$message
.
info
(
'操作失败'
)
});
},
handleCurrentChange
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
getList
();
...
...
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