Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
罗超
confucius
Commits
d3e4e0b0
Commit
d3e4e0b0
authored
Dec 22, 2020
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
265fc11a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
+16
-4
empBankAccount.vue
src/pages/financial/empBankAccount.vue
+4
-4
sysuser.vue
src/pages/school/sysuser.vue
+12
-0
No files found.
src/pages/financial/empBankAccount.vue
View file @
d3e4e0b0
...
...
@@ -186,10 +186,10 @@
mounted
()
{
let
userInfo
=
this
.
getLocalStorage
();
this
.
getUserMsg
.
RB_Group_id
=
this
.
getCompanyMsg
.
RB_Group_Id
=
userInfo
.
Group_Id
;
//集团ID
this
.
msg
.
EmpId
=
userInfo
.
Id
;
this
.
msg
.
Type
=
10
;
this
.
addMsg
.
ObjID
=
userInfo
.
Id
;
this
.
addMsg
.
Type
=
10
;
this
.
msg
.
EmpId
=
this
.
$route
.
query
.
id
?
this
.
$route
.
query
.
id
:
userInfo
.
Id
;
this
.
msg
.
Type
=
this
.
$route
.
query
.
type
?
this
.
$route
.
query
.
type
:
10
;
this
.
addMsg
.
ObjID
=
this
.
$route
.
query
.
id
?
this
.
$route
.
query
.
id
:
userInfo
.
Id
;
this
.
addMsg
.
Type
=
this
.
$route
.
query
.
type
?
this
.
$route
.
query
.
type
:
10
;
this
.
getBank
();
this
.
getList
();
this
.
changeTitle
()
...
...
src/pages/school/sysuser.vue
View file @
d3e4e0b0
...
...
@@ -154,6 +154,11 @@
<q-item-label>
调部门
</q-item-label>
</q-item-section>
</q-item>
<q-item
clickable
v-close-popup
@
click=
"goEAccountId(props.row.EmAccountId)"
v-if=
"props.row.EmAccountId>0"
>
<q-item-section>
<q-item-label>
账号
</q-item-label>
</q-item-section>
</q-item>
</q-list>
</q-btn-dropdown>
</div>
...
...
@@ -591,6 +596,13 @@
this
.
setObj
.
selected
.
push
(
obj
);
this
.
isShowEmployeeSet
=
true
;
},
goEAccountId
(
Id
){
// this.$router.push({ path: '/financial/empBankAccount ',query:{"id":Id,"type":9}})
var
tempStr
=
'/financial/empBankAccount?type=9'
+
'&id='
+
Id
;
this
.
$router
.
push
({
path
:
tempStr
});
},
GetFirst
(
val
)
{
if
(
val
)
{
return
val
.
substr
(
0
,
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