From f3efe0973bf36bd41eb0ca053046afd5f165b8b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=B2=85?= <907037276@qq.com> Date: Mon, 25 Dec 2023 11:45:57 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E8=B5=84=E4=BA=A7=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/asset/AssetAllocation.vue | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/pages/asset/AssetAllocation.vue b/src/pages/asset/AssetAllocation.vue index d7e6d0c..b2aeae6 100644 --- a/src/pages/asset/AssetAllocation.vue +++ b/src/pages/asset/AssetAllocation.vue @@ -73,7 +73,7 @@ @@ -147,7 +147,7 @@ @@ -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; - this.noticeList = 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 = { From dccaff9ecb2cd510ea091cdd937a18143a8869c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=B2=85?= <907037276@qq.com> Date: Mon, 25 Dec 2023 12:00:30 +0800 Subject: [PATCH 2/4] =?UTF-8?q?=E8=B5=84=E4=BA=A7=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/asset/AssetAllocation.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/asset/AssetAllocation.vue b/src/pages/asset/AssetAllocation.vue index b2aeae6..8306738 100644 --- a/src/pages/asset/AssetAllocation.vue +++ b/src/pages/asset/AssetAllocation.vue @@ -88,7 +88,7 @@ From a1921e44596207e218c044d9c1b0bfb838cceace Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=B2=85?= <907037276@qq.com> Date: Mon, 25 Dec 2023 13:23:44 +0800 Subject: [PATCH 3/4] =?UTF-8?q?=E8=B5=84=E4=BA=A7=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/asset/AssetAllocation.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/asset/AssetAllocation.vue b/src/pages/asset/AssetAllocation.vue index 8306738..fcdfcd4 100644 --- a/src/pages/asset/AssetAllocation.vue +++ b/src/pages/asset/AssetAllocation.vue @@ -213,7 +213,7 @@ export default { label: '现金账户' }, { value: '选项2', - label: 'p2p账户' + label: '网络融资账户' }, { value: '选项3', label: '众筹账户' @@ -237,7 +237,7 @@ export default { accountTypeMap:{ CASH_ACCOUNT:"现金账户", BANK_ACCOUNT:"银行账户", - P2P_ACCOUNT:"P2P账户", + P2P_ACCOUNT:"网络融资账户", CROWDFUNDING_ACCOUNT:"众筹账户", EQUITY_FUND_INVESTMENT_ACCOUNT:"股票基金投资账户", FUTURES_INVESTMENT_ACCOUNT:"期货投资账户", From 0c12a24c19a6a86f2edd921b5a6a39ca6615f727 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=B2=85?= <907037276@qq.com> Date: Mon, 25 Dec 2023 17:01:34 +0800 Subject: [PATCH 4/4] =?UTF-8?q?=E8=B5=84=E4=BA=A7=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/asset/AssetAllocation.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/asset/AssetAllocation.vue b/src/pages/asset/AssetAllocation.vue index fcdfcd4..322bea9 100644 --- a/src/pages/asset/AssetAllocation.vue +++ b/src/pages/asset/AssetAllocation.vue @@ -251,6 +251,7 @@ export default { TRUST_ACCOUNT:"信托账户", INSURANCE_ACCOUNT:"保险账户", SUPPLY_CHAIN_ASSET_ACCOUNT:"供应链资产账户", + FINANCIAL_ACCOUNT:"理财账户", } }; },