Commit d3e4e0b0 authored by Mac's avatar Mac

1

parent 265fc11a
......@@ -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()
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment