|
|
|
@ -73,7 +73,7 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="messageAcceptState" header-align="center" align="center" label="操作" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-link type="primary" :underline="false" disabled @click="">确定</el-link>
|
|
|
|
|
<el-link type="primary" :underline="false" @click="">确定</el-link>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -147,7 +147,7 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="messageAcceptState" header-align="center" align="center" label="操作" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-link type="primary" :underline="false" disabled @click="">确定</el-link>
|
|
|
|
|
<el-link type="primary" :underline="false" disabled @click="allOpenAccount">确定</el-link>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -280,14 +280,21 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
getInfo(){ //获取数据
|
|
|
|
|
this.$get("/api/studentAccountAssetAllocation/getList.do",{studentId:this.identityInfo.studentId}).then((ret) =>{
|
|
|
|
|
this.$get("/api/studentAccountAssetAllocation/getList.do",{studentId:this.identityInfo.studentId,isInstitution:1}).then((ret) =>{
|
|
|
|
|
if(ret.code == 0){
|
|
|
|
|
this.tableData = ret.data;
|
|
|
|
|
}else{
|
|
|
|
|
this.$message({message: ret.msg,type: 'error'});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.$get("/api/studentAccountAssetAllocation/getList.do",{studentId:this.identityInfo.studentId,isInstitution:2}).then((ret) =>{
|
|
|
|
|
if(ret.code == 0){
|
|
|
|
|
this.noticeList= ret.data;
|
|
|
|
|
}else{
|
|
|
|
|
this.$message({message: ret.msg,type: 'error'});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
allOpenAccount(){ //转账
|
|
|
|
|
let param = {
|
|
|
|
|