Compare commits
No commits in common. "0103444cb820e3ea7c32fc9c55de784dccf47875" and "ca9244ed80fb9ac2af6449863862df089418d897" have entirely different histories.
0103444cb8
...
ca9244ed80
|
@ -314,9 +314,9 @@ const funnelPlot = (dataList) => {
|
||||||
let arrCopy = ['0-5', '5-10', '10-15', '15-20', '20以上']
|
let arrCopy = ['0-5', '5-10', '10-15', '15-20', '20以上']
|
||||||
// 真实数据
|
// 真实数据
|
||||||
dataList.sort((a, b) => {
|
dataList.sort((a, b) => {
|
||||||
return Number(a.value) - Number(b.value)
|
console.log(arrCopy.indexOf(a.fanwei), arrCopy.indexOf(b.fanwei))
|
||||||
|
return arrCopy.indexOf(b.fanwei) - arrCopy.indexOf(a.fanwei)
|
||||||
})
|
})
|
||||||
|
|
||||||
let _arr = dataList.map(v => v.fanwei) || arrCopy;
|
let _arr = dataList.map(v => v.fanwei) || arrCopy;
|
||||||
// 数据配置形成金字塔形状固定
|
// 数据配置形成金字塔形状固定
|
||||||
let chartData = _arr.map((v, i) => {
|
let chartData = _arr.map((v, i) => {
|
||||||
|
|
|
@ -443,7 +443,7 @@ export default {
|
||||||
})
|
})
|
||||||
console.log('formName--ids-提交数据--------->', formName, ids)
|
console.log('formName--ids-提交数据--------->', formName, ids)
|
||||||
if (formName.system.length !== 0) {
|
if (formName.system.length !== 0) {
|
||||||
if (formName.applicationSystem && formName.applicationSystem.length == 0) {
|
if (formName.applicationSystem.length == 0) {
|
||||||
formName.applicationSystem = ''
|
formName.applicationSystem = ''
|
||||||
}
|
}
|
||||||
// 西海岸:单兵设备、无人机单独调取其他接口
|
// 西海岸:单兵设备、无人机单独调取其他接口
|
||||||
|
|
|
@ -20,6 +20,20 @@
|
||||||
<div>{{ nav.title + '(' + nav.num + ')' }}</div>
|
<div>{{ nav.title + '(' + nav.num + ')' }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- <div class="right">
|
||||||
|
<div style="margin-right: 0.1rem">搜索</div>
|
||||||
|
<a-input
|
||||||
|
v-model:value="userName"
|
||||||
|
placeholder="请输入关键字"
|
||||||
|
style="margin-right: 0.1rem"
|
||||||
|
>
|
||||||
|
<template #suffix>
|
||||||
|
<search-outlined style="color: rgba(0, 0, 0, 0.45)" />
|
||||||
|
</template>
|
||||||
|
</a-input>
|
||||||
|
<a-button type="primary" style="margin-right: 0.1rem">搜索</a-button>
|
||||||
|
<div class="reset">重置</div>
|
||||||
|
</div> -->
|
||||||
</div>
|
</div>
|
||||||
<div class="btn">
|
<div class="btn">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
|
@ -61,6 +75,7 @@
|
||||||
<a-avatar :src="item.src" />
|
<a-avatar :src="item.src" />
|
||||||
</a-badge>
|
</a-badge>
|
||||||
<a-avatar :src="item.src" v-show="item.readStatus == 1" />
|
<a-avatar :src="item.src" v-show="item.readStatus == 1" />
|
||||||
|
<!-- <a-avatar :src="item.src" /> -->
|
||||||
</template>
|
</template>
|
||||||
</a-list-item-meta>
|
</a-list-item-meta>
|
||||||
</a-list-item>
|
</a-list-item>
|
||||||
|
@ -72,6 +87,7 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
|
// import { SearchOutlined } from '@ant-design/icons-vue'
|
||||||
import { ref, reactive, onBeforeUnmount } from 'vue'
|
import { ref, reactive, onBeforeUnmount } from 'vue'
|
||||||
import mybus from '@/myplugins/mybus'
|
import mybus from '@/myplugins/mybus'
|
||||||
import { message } from 'ant-design-vue'
|
import { message } from 'ant-design-vue'
|
||||||
|
@ -170,83 +186,8 @@ const goBack = (url) => {
|
||||||
path: url,
|
path: url,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// 申请状态
|
|
||||||
let applyStateObj = {
|
|
||||||
0: '待办',
|
|
||||||
1: '已办',
|
|
||||||
}
|
|
||||||
let typeObj = {
|
|
||||||
0: '申请前台',
|
|
||||||
1: '申请后台',
|
|
||||||
2: '上架前台',
|
|
||||||
3: '上架后台',
|
|
||||||
4: '下架前台',
|
|
||||||
5: '下架后台',
|
|
||||||
6: '需求前台',
|
|
||||||
7: '需求后台',
|
|
||||||
8: '评论前台',
|
|
||||||
9: '评论后台',
|
|
||||||
10: '评价前台',
|
|
||||||
11: '评价后台',
|
|
||||||
}
|
|
||||||
|
|
||||||
// 对应的后台管理的页面
|
|
||||||
let pageObj = {
|
|
||||||
'申请后台': {
|
|
||||||
0: 'myAgent-CompetencyApplication',
|
|
||||||
1: 'hasToDoTasks-CompetencyApplication',
|
|
||||||
},
|
|
||||||
'上架后台': {
|
|
||||||
0: 'myAgent-AbilityResourceShelf',
|
|
||||||
1: 'hasToDoTasks-AbilityResourceShelf',
|
|
||||||
},
|
|
||||||
'下架后台': {
|
|
||||||
0: 'myAgent-AbilityResourcesRemoved',
|
|
||||||
1: 'hasToDoTasks-AbilityResourcesRemoved',
|
|
||||||
},
|
|
||||||
'需求后台': {
|
|
||||||
0: 'myAgent-ApplicationforCompetencyRequirements',
|
|
||||||
1: 'hasToDoTasks-ApplicationForCompetencyRequirements',
|
|
||||||
},
|
|
||||||
'评论后台': {
|
|
||||||
0: 'myAgent-CommentModeration',
|
|
||||||
1: 'hasToDoTasks-CommentModeration',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
// 前台tab名称
|
|
||||||
const tabTypeObj = {
|
|
||||||
'申请前台': '能力申请',
|
|
||||||
'上架前台': '能力上架',
|
|
||||||
'下架前台': '能力下架',
|
|
||||||
'需求前台': '需求评论',
|
|
||||||
'评论前台': '需求评论',
|
|
||||||
}
|
|
||||||
|
|
||||||
const goPage = (item) => {
|
|
||||||
console.log('item----更改消息状态-------->', item);
|
|
||||||
let typeText = typeObj[item.type];
|
|
||||||
if (typeText) {
|
|
||||||
console.log('typeText类型------------>', typeText);
|
|
||||||
// 是后台,跳转到后台相关页面
|
|
||||||
if (typeText.indexOf('后台') !== -1) {
|
|
||||||
let _applyState = item.applyState
|
|
||||||
let _page = pageObj[typeText][_applyState]
|
|
||||||
window.open(window.SITE_CONFIG.backUrl + `/#/${_page}`)
|
|
||||||
} else if (typeText.indexOf('前台') !== -1) {
|
|
||||||
window.sessionStorage.setItem('type', JSON.stringify('apply'))
|
|
||||||
router.push({
|
|
||||||
path: '/personalCenter',
|
|
||||||
query: {
|
|
||||||
tabTypeName: tabTypeObj[typeText] || '能力申请',
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// 更改消息状态
|
|
||||||
const read = (item) => {
|
const read = (item) => {
|
||||||
|
// console.log(item)
|
||||||
if (selectData.value.length === 0 && !item) {
|
if (selectData.value.length === 0 && !item) {
|
||||||
message.error('未选择消息!')
|
message.error('未选择消息!')
|
||||||
return
|
return
|
||||||
|
@ -255,24 +196,17 @@ const read = (item) => {
|
||||||
if (item) {
|
if (item) {
|
||||||
// 已读状态
|
// 已读状态
|
||||||
if (item.readStatus === 1) {
|
if (item.readStatus === 1) {
|
||||||
goPage(item)
|
|
||||||
// 跳转页面
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
mynoticeRead(item.id).then((res) => {
|
mynoticeRead(item.id).then((res) => {
|
||||||
if (res.data.code == 0) {
|
if (res.data.code == 0) {
|
||||||
message.success('通知已读!')
|
message.success('通知已读!')
|
||||||
mybus.emit('getMynotice')
|
mybus.emit('getMynotice')
|
||||||
init()
|
init()
|
||||||
// 页面跳转
|
|
||||||
setTimeout(() => {
|
|
||||||
goPage(item)
|
|
||||||
}, 1000)
|
|
||||||
} else {
|
} else {
|
||||||
message.error('操作失败!')
|
message.error('操作失败!')
|
||||||
}
|
}
|
||||||
}).catch(err => {
|
|
||||||
message.error(err)
|
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
console.log('提交')
|
console.log('提交')
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -10,7 +10,7 @@
|
||||||
<!-- <on-the-right-side-of-the-list
|
<!-- <on-the-right-side-of-the-list
|
||||||
v-if="showFlag === 'collect'"
|
v-if="showFlag === 'collect'"
|
||||||
></on-the-right-side-of-the-list> -->
|
></on-the-right-side-of-the-list> -->
|
||||||
<my-apply v-if="showFlag === 'apply'" :tabTypeName="tabTypeName"></my-apply>
|
<my-apply v-if="showFlag === 'apply'"></my-apply>
|
||||||
<my-publish v-if="showFlag === 'push'"></my-publish>
|
<my-publish v-if="showFlag === 'push'"></my-publish>
|
||||||
<purchase-vehicle
|
<purchase-vehicle
|
||||||
v-if="showFlag === 'PurchaseVehicle'"
|
v-if="showFlag === 'PurchaseVehicle'"
|
||||||
|
@ -38,9 +38,7 @@
|
||||||
import Collection from '@/views/personalCenter/components/Collection'
|
import Collection from '@/views/personalCenter/components/Collection'
|
||||||
import mybus from '@/myplugins/mybus'
|
import mybus from '@/myplugins/mybus'
|
||||||
import { onBeforeUnmount, ref } from 'vue'
|
import { onBeforeUnmount, ref } from 'vue'
|
||||||
import { useRouter } from 'vue-router'
|
|
||||||
const router = useRouter()
|
|
||||||
let tabTypeName = ref(router.currentRoute.value.query.tabTypeName || '')
|
|
||||||
const type = JSON.parse(window.sessionStorage.getItem('type'))
|
const type = JSON.parse(window.sessionStorage.getItem('type'))
|
||||||
const showFlag = ref('PurchaseVehicle')
|
const showFlag = ref('PurchaseVehicle')
|
||||||
if (type) {
|
if (type) {
|
||||||
|
|
Loading…
Reference in New Issue