diff --git a/front/src/views/newHome/components/CapabilityConvergence.vue b/front/src/views/newHome/components/CapabilityConvergence.vue
index 20c5c055..24e59ea4 100644
--- a/front/src/views/newHome/components/CapabilityConvergence.vue
+++ b/front/src/views/newHome/components/CapabilityConvergence.vue
@@ -15,7 +15,7 @@
:class="index == 4 ? 'name-last' : ''"
@click="selectOne11(item.name)"
>
- {{ item.name + '-' + item.num + '项' }}
+ {{ index + 1 }}-{{ item.name }}
查看更多
@@ -28,7 +28,7 @@
:class="index == 4 ? 'name-last' : ''"
@click="selectOne1(item.name)"
>
- {{ item.name + '-' + item.num + '项' }}
+ {{ index + 1 }}-{{ item.name }}
查看更多
@@ -41,16 +41,7 @@
:class="index == 2 ? 'name-last' : ''"
@click="selectOne2(item.name)"
>
- {{
- item.name +
- '-' +
- item.num +
- (item.name == '会客厅'
- ? '间'
- : item.name == '视频会议'
- ? '个'
- : '项')
- }}
+ {{ index + 1 }}-{{ item.name }}
查看更多
@@ -131,116 +122,141 @@
const getAppResources = (type, obj) => {
paramsGetResources.type = type
if (type === '数据资源' && !whoShow1.value.itShowBaoTou) {
- getDataResource({
- serviceName: paramsGetResources.name || '', //资源名称
- orderField: whoShow1.value.itShowQingDao ? 'fbrq' : 'createTime', //排序字段
- orderType: paramsGetResources.orderType.toLowerCase(), //排序方式:desc,asc
- pageNum: paramsGetResources.pageNum, //页码
- pageSize: paramsGetResources.pageSize, //分页大小
- }).then((res) => {
- console.log('数据资源==================>', res.data.data)
- if (whoShow1.value.itShowQingDao) {
- res.data.data.data.forEach((val) => {
- val.id = val.guid // id
- val.name = val.zyname // 名字
- val.sjlCount = val.sjcczl // 数据量
- val.applyCount = val.syqk // 申请量
- val.deptName = val.TGBM // 部门
- val.createDate = val.fbrq // 发布时间
- val.description = val.xgxt // 描述
- })
- obj.value = res.data.data.data || []
- object.sjNum = res.data.data.rows
- } else if (whoShow1.value.itShowXiHaiAn) {
- res.data.data.list.forEach((val) => {
- val.id = val.serviceId // id
- val.name = val.serviceName // 名字
- val.sjlCount = val.requestQuantity // 数据量
- val.applyCount = val.requestCount // 申请量
- val.deptName = val.departmentName // 部门
- val.createTime = val.createTime.split('.')[0]
- val.createDate = val.createTime // 发布时间
- })
- obj.value = res.data.data.list || []
- object.sjNum = res.data.data.total
- }
- })
+ sjList.value = [
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ ]
+ // getDataResource({
+ // serviceName: paramsGetResources.name || '', //资源名称
+ // orderField: whoShow1.value.itShowQingDao ? 'fbrq' : 'createTime', //排序字段
+ // orderType: paramsGetResources.orderType.toLowerCase(), //排序方式:desc,asc
+ // pageNum: paramsGetResources.pageNum, //页码
+ // pageSize: paramsGetResources.pageSize, //分页大小
+ // }).then((res) => {
+ // console.log('数据资源==================>', res.data.data)
+ // if (whoShow1.value.itShowQingDao) {
+ // res.data.data.data.forEach((val) => {
+ // val.id = val.guid // id
+ // val.name = val.zyname // 名字
+ // val.sjlCount = val.sjcczl // 数据量
+ // val.applyCount = val.syqk // 申请量
+ // val.deptName = val.TGBM // 部门
+ // val.createDate = val.fbrq // 发布时间
+ // val.description = val.xgxt // 描述
+ // })
+ // obj.value = res.data.data.data || []
+ // object.sjNum = res.data.data.rows
+ // } else if (whoShow1.value.itShowXiHaiAn) {
+ // res.data.data.list.forEach((val) => {
+ // val.id = val.serviceId // id
+ // val.name = val.serviceName // 名字
+ // val.sjlCount = val.requestQuantity // 数据量
+ // val.applyCount = val.requestCount // 申请量
+ // val.deptName = val.departmentName // 部门
+ // val.createTime = val.createTime.split('.')[0]
+ // val.createDate = val.createTime // 发布时间
+ // })
+ // obj.value = res.data.data.list || []
+ // object.sjNum = res.data.data.total
+ // }
+ // })
} else {
let type = paramsGetResources.type
if (type == '视频资源') {
- jcList.value = []
- selectInfrastructureList().then((res) => {
- console.log('视频资源------res------>', res)
- for (const key in res.data.data) {
- if (whoShow1.value.itShowXiHaiAn) {
- if (key === '视频资源') {
- jcList.value.push({
- name: key,
- num: res.data.data[key],
- })
- }
- } else {
- jcList.value.push({
- name: key,
- num: res.data.data[key],
- })
- }
- }
- // jcList.value.push({
- // name: '会客厅',
- // num: 4,
- // })
- // 西海岸-单兵设备、无人机 获取数量
- if (whoShow1.value.itShowXiHaiAn) {
- getSoldierData('无人机')
- .then((res) => {
- let { total = 0 } = res.data.data
- jcList.value.push({
- name: '无人机',
- num: total,
- })
- })
- .catch((err) => {
- console.log('err--无人机---------->', err)
- })
- getSoldierData('单兵设备')
- .then((res) => {
- let { total = 0 } = res.data.data
- jcList.value.push({
- name: '单兵设备',
- num: total,
- })
- })
- .catch((err) => {
- console.log('err--单兵设备---------->', err)
- })
- }
- })
+ jcList.value = [
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ ]
+ // selectInfrastructureList().then((res) => {
+ // console.log('视频资源------res------>', res)
+ // for (const key in res.data.data) {
+ // if (whoShow1.value.itShowXiHaiAn) {
+ // if (key === '视频资源') {
+ // jcList.value.push({
+ // name: key,
+ // num: res.data.data[key],
+ // })
+ // }
+ // } else {
+ // jcList.value.push({
+ // name: key,
+ // num: res.data.data[key],
+ // })
+ // }
+ // }
+ // jcList.value.push({
+ // name: '会客厅',
+ // num: 4,
+ // })
+ // 西海岸-单兵设备、无人机 获取数量
+ // if (whoShow1.value.itShowXiHaiAn) {
+ // getSoldierData('无人机')
+ // .then((res) => {
+ // let { total = 0 } = res.data.data
+ // jcList.value.push({
+ // name: '无人机',
+ // num: total,
+ // })
+ // })
+ // .catch((err) => {
+ // console.log('err--无人机---------->', err)
+ // })
+ // getSoldierData('单兵设备')
+ // .then((res) => {
+ // let { total = 0 } = res.data.data
+ // jcList.value.push({
+ // name: '单兵设备',
+ // num: total,
+ // })
+ // })
+ // .catch((err) => {
+ // console.log('err--单兵设备---------->', err)
+ // })
+ // }
+ // })
} else if (type == 'GIS图层') {
- zjList.value = []
- selectCollectComponentList().then((res) => {
- console.log('GIS图层----res-------->', res)
- for (const key in res.data.data) {
- console.log('key------------>', key)
- zjList.value.push({
- name: key,
- num: res.data.data[key],
- })
- }
- console.log('zjList------------>', zjList)
- })
+ zjList.value = [
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ ]
+ // selectCollectComponentList().then((res) => {
+ // console.log('GIS图层----res-------->', res)
+ // for (const key in res.data.data) {
+ // console.log('key------------>', key)
+ // zjList.value.push({
+ // name: key,
+ // num: res.data.data[key],
+ // })
+ // }
+ // console.log('zjList------------>', zjList)
+ // })
} else if (type == '应用系统') {
- yyList.value = []
- selectCollectResourceList().then((res) => {
- console.log('应用系统---res--------->', res)
- for (const key in res.data.data) {
- yyList.value.push({
- name: key,
- num: res.data.data[key],
- })
- }
- })
+ yyList.value = [
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ { name: '阿斯蒂芬' },
+ ]
+ // selectCollectResourceList().then((res) => {
+ // console.log('应用系统---res--------->', res)
+ // for (const key in res.data.data) {
+ // yyList.value.push({
+ // name: key,
+ // num: res.data.data[key],
+ // })
+ // }
+ // })
} else {
pageWithAttrs(paramsGetResources).then((res) => {
console.log('object个数======>', type)