diff --git a/back/src/views/modules/ability/bsabilityai.vue b/back/src/views/modules/ability/bsabilityai.vue index 7d38f206..4e4d4ee8 100644 --- a/back/src/views/modules/ability/bsabilityai.vue +++ b/back/src/views/modules/ability/bsabilityai.vue @@ -55,12 +55,16 @@ width="50" > diff --git a/back/src/views/modules/ability/bsdataresources.vue b/back/src/views/modules/ability/bsdataresources.vue index dcb29158..77d9b1b0 100644 --- a/back/src/views/modules/ability/bsdataresources.vue +++ b/back/src/views/modules/ability/bsdataresources.vue @@ -84,7 +84,11 @@ export default { methods: { // 重置 resetDataList () { - this.dataForm = this.noDataForm + this.dataForm = { + orderId: '', + status: '', + userId: '' + }, this.page = 1 // 当前页码 this.query() }, diff --git a/back/src/views/modules/abilityStatistics/applicationResources.vue b/back/src/views/modules/abilityStatistics/applicationResources.vue index aea5855f..cc2acede 100644 --- a/back/src/views/modules/abilityStatistics/applicationResources.vue +++ b/back/src/views/modules/abilityStatistics/applicationResources.vue @@ -48,7 +48,7 @@
应用领域分布情况 -
+
应用状态分布情况 @@ -114,8 +114,9 @@ export default { getDistributedList () { this.$http.get('/census/center/v3/assemblerUseProjectInfo/' ,{ params : { - keyId:'1522550195034857476' - // this.tableId + id: + // '1522550195034857476' + this.tableId } }).then(res => { let arry=[] @@ -147,8 +148,8 @@ export default { arry=res.data.data arry.forEach((item)=>{ const single={ - value:item.useNum, - name:item.name + value:item.appNum, + name:item.attr_value } this.data3.push(single.name) this.data4.push(single.value) @@ -377,7 +378,7 @@ export default { var total = 0; var tarValue; for (var i = 0; i < data.length; i++) { - total += data[i].value; + total += Number(data[i].value); if (data[i].name == name) { tarValue = data[i].value; } @@ -599,7 +600,7 @@ export default { }, series: [ { - data: [5, 5, 5, 5, 5, 5], + data: [1, 1, 1, 1, 1, 1], type: 'bar', barWidth: 14, stack: '1', @@ -654,7 +655,7 @@ export default { var total = 0; var tarValue; for (var i = 0; i < data.length; i++) { - total += data[i].value; + total += Number(data[i].value); if (data[i].name == name) { tarValue = data[i].value; } @@ -725,7 +726,7 @@ export default { var total = 0; var tarValue; for (var i = 0; i < data.length; i++) { - total += data[i].value; + total += Number(data[i].value); if (data[i].name == name) { tarValue = data[i].value; } @@ -804,7 +805,7 @@ export default { var total = 0; var tarValue; for (var i = 0; i < data.length; i++) { - total += data[i].value; + total += Number(data[i].value); if (data[i].name == name) { tarValue = data[i].value; } @@ -822,9 +823,9 @@ export default { a: { // 设置文字、数学、英语这一列的样式 width: 80, - color: "#000000", + color: "#666666", fontSize: 12, - fontWeight: "bolder", + // fontWeight: "bolder", }, b: { // 设置10分、20分、30分这一列的样式 @@ -899,7 +900,7 @@ export default { var total = 0; var tarValue; for (var i = 0; i < data.length; i++) { - total += data[i].value; + total += Number(data[i].value); if (data[i].name == name) { tarValue = data[i].value; } diff --git a/back/src/views/modules/abilityStatistics/componentServices.vue b/back/src/views/modules/abilityStatistics/componentServices.vue index 01c866bb..e39f577c 100644 --- a/back/src/views/modules/abilityStatistics/componentServices.vue +++ b/back/src/views/modules/abilityStatistics/componentServices.vue @@ -200,7 +200,7 @@ export default { this.$http.get('/census/center/v3/assemblerCaredTopInfo' ,{ params : { id:this.tableId, - resourceType:"应用资源" + resourceType:"组件服务" // pageNo: pageNo || 1, // pageSize: 20 } @@ -231,7 +231,7 @@ export default { var total = 0; var tarValue; for (var i = 0; i < data.length; i++) { - total += data[i].value; + total += Number(data[i].value); if (data[i].name == name) { tarValue = data[i].value; } @@ -295,7 +295,7 @@ export default { var total = 0; var tarValue; for (var i = 0; i < data.length; i++) { - total += data[i].value; + total += Number(data[i].value); if (data[i].name == name) { tarValue = data[i].value; } @@ -361,7 +361,7 @@ export default { var total = 0; var tarValue; for (var i = 0; i < data.length; i++) { - total += data[i].value; + total += Number(data[i].value); if (data[i].name == name) { tarValue = data[i].value; } @@ -377,9 +377,9 @@ export default { a: { // 设置文字、数学、英语这一列的样式 width: 100, - color: "#000000", + color: "#666666", fontSize: 12, - fontWeight: "bolder", + // fontWeight: "bolder", }, b: { // 设置10分、20分、30分这一列的样式 diff --git a/back/src/views/modules/abilityStatistics/componentUsed.vue b/back/src/views/modules/abilityStatistics/componentUsed.vue index 4beff5d9..de68a125 100644 --- a/back/src/views/modules/abilityStatistics/componentUsed.vue +++ b/back/src/views/modules/abilityStatistics/componentUsed.vue @@ -17,7 +17,7 @@
使用组件应用领域分布情况 -
+
@@ -36,7 +36,7 @@
- 使用组件评分Top5 + 使用组件评分
@@ -174,9 +174,7 @@ export default { value:item.total, name:item.type } - const newList=[] this.data3.push(single) - // this.data2=newList this.myEcharts3() }) }) @@ -231,7 +229,7 @@ export default { var total = 0; var tarValue; for (var i = 0; i < data.length; i++) { - total += data[i].value; + total += Number(data[i].value); if (data[i].name == name) { tarValue = data[i].value; } @@ -295,7 +293,7 @@ export default { var total = 0; var tarValue; for (var i = 0; i < data.length; i++) { - total += data[i].value; + total += Number(data[i].value); if (data[i].name == name) { tarValue = data[i].value; } @@ -361,13 +359,14 @@ export default { var total = 0; var tarValue; for (var i = 0; i < data.length; i++) { - total += data[i].value; + total += Number(data[i].value); if (data[i].name == name) { tarValue = data[i].value; } } - var v = tarValue; + // var v = tarValue; var p = Math.round(((tarValue / total) * 100)); + console.log('@@@@', tarValue, total) return `{a|${name}} {b|${p}%}`; }, itemStyle:{}, @@ -428,7 +427,7 @@ export default { option && myChart.setOption(option); }, backBtn(){ - this.$emit('closeChild') + this.$emit('closeChild2') } } } @@ -541,9 +540,13 @@ export default { position:absolute; display: flex; margin-left:90px; + width:200px; margin-top:5px; color:#333333; - font-size: 16px; + font-size: 16px; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; } .count-style{ position:absolute; diff --git a/back/src/views/modules/abilityStatistics/index.vue b/back/src/views/modules/abilityStatistics/index.vue index df327370..2ff30249 100644 --- a/back/src/views/modules/abilityStatistics/index.vue +++ b/back/src/views/modules/abilityStatistics/index.vue @@ -96,7 +96,7 @@ min-width="100%"> @@ -121,7 +121,7 @@
- +
@@ -362,10 +362,18 @@ export default { closeChild(){ this.homeIsShow=true this.servicesIsShow=false + this. handleCurrentChange(1) + + }, + closeChild2(){ + this.homeIsShow=true + this.UsedIsShow=false + this. handleCurrentChange(1) }, closeApplication(){ this.homeIsShow=true this.resourcesIsShow=false + this. handleCurrentChange(1) } }, diff --git a/back/src/views/modules/myAgent/demo/competency-application.vue b/back/src/views/modules/myAgent/demo/competency-application.vue index 709f0fcc..0c29bfbd 100644 --- a/back/src/views/modules/myAgent/demo/competency-application.vue +++ b/back/src/views/modules/myAgent/demo/competency-application.vue @@ -2,7 +2,7 @@ * @Author: hisense.liangjunhua * @Date: 2022-06-29 15:59:51 * @LastEditors: hisense.liangjunhua - * @LastEditTime: 2022-07-01 09:29:57 + * @LastEditTime: 2022-07-04 16:17:22 * @Description: 告诉大家这是什么 --> @@ -157,6 +157,7 @@ export default { }) }, downloadFile2 (url) { + console.log(window.SITE_CONFIG.previewUrl) window.open( window.SITE_CONFIG.previewUrl + 'hisense_office/onlinePreview?url=' + diff --git a/front/package.json b/front/package.json index 60073475..a3efb530 100644 --- a/front/package.json +++ b/front/package.json @@ -1,5 +1,5 @@ { - "name": "HiIRS", + "name": "HiUCS", "version": "0.8.0", "private": true, "scripts": { @@ -38,6 +38,7 @@ "pinyin-pro": "^3.8.3", "postprocessing": "^5.3.2", "remixicon": "^2.5.0", + "swiper": "^8.2.6", "three": "^0.98.0", "three.meshline": "^1.1.0", "vue": "^3.1.4", @@ -70,6 +71,7 @@ "stylus": "^0.54.5", "stylus-loader": "^3.0.2", "svg-sprite-loader": "^6.0.9", + "swiper": "^8.0.0", "vab-config": "0.0.8", "webpackbar": "^5.0.0-3" }, diff --git a/front/public/index.html b/front/public/index.html index 78ced308..8ad43c42 100644 --- a/front/public/index.html +++ b/front/public/index.html @@ -2,7 +2,7 @@ * @Author: hisense.wuhongjian * @Date: 2022-03-29 16:45:25 * @LastEditors: hisense.wuhongjian - * @LastEditTime: 2022-07-04 11:57:44 + * @LastEditTime: 2022-07-06 18:44:35 * @Description: 告诉大家这是什么 --> @@ -28,10 +28,11 @@ diff --git a/front/src/views/detailsAll/AlgorithmDetails.vue b/front/src/views/detailsAll/AlgorithmDetails.vue index f215bd10..bb7a9b71 100644 --- a/front/src/views/detailsAll/AlgorithmDetails.vue +++ b/front/src/views/detailsAll/AlgorithmDetails.vue @@ -10,182 +10,159 @@ - - - + + - + + + - + - - + + + + - + - + + - + - + + diff --git a/front/src/views/detailsAll/ApplicationDetails.vue b/front/src/views/detailsAll/ApplicationDetails.vue index 5589ab37..7eee09d3 100644 --- a/front/src/views/detailsAll/ApplicationDetails.vue +++ b/front/src/views/detailsAll/ApplicationDetails.vue @@ -8,192 +8,172 @@ diff --git a/front/src/views/detailsAll/BusinessDetails.vue b/front/src/views/detailsAll/BusinessDetails.vue index 00a0434f..cb14bfd2 100644 --- a/front/src/views/detailsAll/BusinessDetails.vue +++ b/front/src/views/detailsAll/BusinessDetails.vue @@ -10,162 +10,149 @@ - + - + - + + - + + - + + - + + - + - + diff --git a/front/src/views/detailsAll/DeveloperComponents.vue b/front/src/views/detailsAll/DeveloperComponents.vue index 2047bcbd..be9c7f40 100644 --- a/front/src/views/detailsAll/DeveloperComponents.vue +++ b/front/src/views/detailsAll/DeveloperComponents.vue @@ -10,169 +10,157 @@ - - - + - + + + + - + + - + + - + + - + - + - + + diff --git a/front/src/views/detailsAll/LayerService.vue b/front/src/views/detailsAll/LayerService.vue index 2411a090..6228798c 100644 --- a/front/src/views/detailsAll/LayerService.vue +++ b/front/src/views/detailsAll/LayerService.vue @@ -8,173 +8,156 @@ diff --git a/front/src/views/detailsAll/components/Algorithm/AlgorithmAssociatedAbility.vue b/front/src/views/detailsAll/components/Algorithm/AlgorithmAssociatedAbility.vue index 023501d8..d7f93986 100644 --- a/front/src/views/detailsAll/components/Algorithm/AlgorithmAssociatedAbility.vue +++ b/front/src/views/detailsAll/components/Algorithm/AlgorithmAssociatedAbility.vue @@ -1,30 +1,79 @@ diff --git a/front/src/views/detailsAll/components/Application/ApplicationDeploymentAndSecurity.vue b/front/src/views/detailsAll/components/Application/ApplicationDeploymentAndSecurity.vue index f5d5c2a8..135cff66 100644 --- a/front/src/views/detailsAll/components/Application/ApplicationDeploymentAndSecurity.vue +++ b/front/src/views/detailsAll/components/Application/ApplicationDeploymentAndSecurity.vue @@ -2,17 +2,10 @@ diff --git a/front/src/views/detailsAll/components/Application/ApplicationFunctionIntorduction.vue b/front/src/views/detailsAll/components/Application/ApplicationFunctionIntorduction.vue index 03d712d7..eec26ec0 100644 --- a/front/src/views/detailsAll/components/Application/ApplicationFunctionIntorduction.vue +++ b/front/src/views/detailsAll/components/Application/ApplicationFunctionIntorduction.vue @@ -7,42 +7,26 @@
-
+ "> -
+
{{ itemSonTitle.name }}
-
+
diff --git a/front/src/views/detailsAll/components/Application/ApplicationNavigation.vue b/front/src/views/detailsAll/components/Application/ApplicationNavigation.vue index bb92e834..4ddf5f70 100644 --- a/front/src/views/detailsAll/components/Application/ApplicationNavigation.vue +++ b/front/src/views/detailsAll/components/Application/ApplicationNavigation.vue @@ -8,12 +8,7 @@ diff --git a/front/src/views/detailsAll/components/Developer/DeveloperApplicationScenarios.vue b/front/src/views/detailsAll/components/Developer/DeveloperApplicationScenarios.vue index d53f8073..016bb3ee 100644 --- a/front/src/views/detailsAll/components/Developer/DeveloperApplicationScenarios.vue +++ b/front/src/views/detailsAll/components/Developer/DeveloperApplicationScenarios.vue @@ -71,7 +71,6 @@ dataList: { type: Object, default: null }, }) if (props.dataList.infoList) { - debugger let obj = props.dataList.infoList.filter( (item) => item.attrType === '应用场景' )[0] @@ -79,7 +78,6 @@ flag.value = false } else { obj.attrValue = JSON.parse(obj.attrValue) - debugger dataFrom.value = obj tabindex.value = dataFrom.value.attrValue[0].name } diff --git a/front/src/views/detailsAll/components/Developer/DeveloperAssociatedAbility.vue b/front/src/views/detailsAll/components/Developer/DeveloperAssociatedAbility.vue index e03abb90..0913adce 100644 --- a/front/src/views/detailsAll/components/Developer/DeveloperAssociatedAbility.vue +++ b/front/src/views/detailsAll/components/Developer/DeveloperAssociatedAbility.vue @@ -1,30 +1,79 @@ diff --git a/front/src/views/detailsAll/components/LayerService/LayerServiceTopDetails.vue b/front/src/views/detailsAll/components/LayerService/LayerServiceTopDetails.vue index 954e2ae4..04c67bc2 100644 --- a/front/src/views/detailsAll/components/LayerService/LayerServiceTopDetails.vue +++ b/front/src/views/detailsAll/components/LayerService/LayerServiceTopDetails.vue @@ -2,7 +2,7 @@ * @Author: hisense.liangjunhua * @Date: 2022-06-08 11:56:28 * @LastEditors: hisense.liangjunhua - * @LastEditTime: 2022-07-01 18:52:34 + * @LastEditTime: 2022-07-05 11:43:18 * @Description: 算法详情页头部 -->