资产配置页面调整

main
陈沅 1 year ago
parent e862c511c9
commit f3efe0973b

@ -73,7 +73,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="messageAcceptState" header-align="center" align="center" label="操作" width="120"> <el-table-column prop="messageAcceptState" header-align="center" align="center" label="操作" width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<el-link type="primary" :underline="false" disabled @click="">确定</el-link> <el-link type="primary" :underline="false" @click="">确定</el-link>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -147,7 +147,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="messageAcceptState" header-align="center" align="center" label="操作" width="120"> <el-table-column prop="messageAcceptState" header-align="center" align="center" label="操作" width="120">
<template slot-scope="scope"> <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> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -280,14 +280,21 @@ export default {
} }
}, },
getInfo(){ // 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){ if(ret.code == 0){
this.tableData = ret.data; this.tableData = ret.data;
this.noticeList = ret.data;
}else{ }else{
this.$message({message: ret.msg,type: 'error'}); 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(){ // allOpenAccount(){ //
let param = { let param = {

Loading…
Cancel
Save