公有云
私有云
@@ -205,8 +208,8 @@
支付清算
......
数字票据
-
供应链金融
-
区块链发票
+
数字供应链
+
数字发票
数字资产
数字人民币
区块链技术
@@ -234,7 +237,8 @@ export default {
myAppsList:[],
appInfo:{},
timeIn:null,
- on_show:1
+ on_show:1 ,
+
};
},
created() {
@@ -254,15 +258,26 @@ export default {
return ' layui-btn-disabled';
}
},
- getInfo(){
- this.$post("/api/resourcesApplication/getPageList.do",{page:1,limit:10000}).then((ret) =>{
+ getInfo(){
+ let AppsList=['证监会、银保监会、行业协会','大数据基础','区块链技术','可视化BI','文本挖掘','AI基础','数字人民币','数字供应链','机器学习','数字发票','供应链金融']
+ let Appsitem=[]
+ this.$post("/api/resourcesApplication/getPageList.do",{page:1,limit:10000}).then((ret) =>{
if(ret.code == 0){
this.myAppsList = ret.data;
for(let item of ret.data){
this.appInfo[item.applicationSecondLevelRelation] = item;
+ if(AppsList.includes(item.applicationSecondLevelRelation)){
+ Appsitem.push(item)
+ }
}
+ Appsitem.sort((a,b)=>{
+ return AppsList.indexOf(a.applicationSecondLevelRelation) - AppsList.indexOf(b.applicationSecondLevelRelation
+ )
+ })
+ console.log(Appsitem,"Appsitem");
this.$forceUpdate();
-
+ sessionStorage.setItem("Appsitem",JSON.stringify(Appsitem));
+
}else{
this.$message({message: ret.msg,type: 'error'});
}
@@ -709,16 +724,20 @@ export default {
}
.bottom_part .technology li:first-child .technology_item {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-wrap: wrap;
+ display: flex;
+ justify-content: space-between;
+ flex-wrap: wrap;
+
}
.bottom_part .technology li:first-child .technology_item .layui-btn {
- width: 154px;
+ width: 110px;
height: 32px;
}
+ .bottom_part .technology li:first-child .technology_item .layui-btn img {
+ width: 23px;
+ height: 24px;
+ }
}
}
diff --git a/src/pages/myApps/MyAppsDetails.vue b/src/pages/myApps/MyAppsDetails.vue
index 3b991ff..a147053 100644
--- a/src/pages/myApps/MyAppsDetails.vue
+++ b/src/pages/myApps/MyAppsDetails.vue
@@ -1,8 +1,7 @@
-
- {{info.applicationName}} > 应用介绍
+
{{info.applicationName}} > 应用介绍
@@ -133,7 +132,17 @@ export default {
*/
openNewWindow() {
if (!this.$isEmpty(this.info.realUrl)) {
- window.open(this.info.realUrl)
+ let userInfo=this.$ls.get(this.$getKeyInfo("userInfo")) || {}
+ let JT_Sapps=['数字发票','数字供应链','数字人民币']
+ if(userInfo.jobType1 =='JT_S_02'){
+ if(JT_Sapps.includes(this.info.applicationSecondLevelRelation)){
+ window.open(this.info.realUrl.replace(/^(https?:\/\/[^\/]+)(.*)$/, `${'https://qkljr.sztzjy.com:89'}$2`))
+ }else{
+ window.open(this.info.realUrl.includes('https://szjj.sztzjy.com:99/') ? this.info.realUrl.replace('https://szjj.sztzjy.com:99/','https://szjj.sztzjy.com:98/') : this.info.realUrl)
+ }
+ }else{
+ window.open(this.info.realUrl)
+ }
}
},
addSystem(){ //模块使用统计
diff --git a/src/pages/myApps/MyAppsEconomics.vue b/src/pages/myApps/MyAppsEconomics.vue
index c1d1741..1fc6bb5 100644
--- a/src/pages/myApps/MyAppsEconomics.vue
+++ b/src/pages/myApps/MyAppsEconomics.vue
@@ -1,5 +1,14 @@
-
+
+
+
+ -
+
+ {{ item.applicationName }}
+
+
+
+
数字化治理
@@ -111,7 +120,8 @@
-
+
+
diff --git a/src/router/index.js b/src/router/index.js
index 1e244c9..c11db65 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -81,7 +81,7 @@ import AssetAllocation from '@/pages/asset/AssetAllocation'; //资产配置
import UserCenter from '@/pages/user/UserCenter'; //用户中心(学生端)
import TUserCenter from '@/pages/user/TUserCenter'; //用户中心(教师端)
import ThirdParty from '@/pages/user/ThirdParty'; //第三方应用
-
+import AiTools from '@/pages/user/AiTools'; //竞赛中心
//考证信息
import Coach from '@/pages/certificate/Coach'; //考证辅导
import TCoach from '@/pages/certificate/TCoach'; //教师辅导
@@ -242,6 +242,13 @@ const router = new Router({
component: ThirdParty,
meta: { title: '第三方应用',oneLogTitle:"第三方应用", requireAuth: true}
},
+ // 新增ai工具页面路由
+ {
+ path: '/algclargemodel/',
+ name: 'algclargemodel',
+ component: AiTools,
+ meta: { title: 'AlGC大模型',oneLogTitle:"AlGC大模型", requireAuth: true}
+ },
{
path: '/coach/',
name: 'Coach',