能力申请 应用系统对接

This commit is contained in:
a0049873 2022-10-31 16:03:12 +08:00
parent 76a7be9f48
commit 15426bccdc
2 changed files with 130 additions and 126 deletions

View File

@ -2,7 +2,7 @@
* @Author: hisense.wuhongjian * @Author: hisense.wuhongjian
* @Date: 2022-04-01 19:19:40 * @Date: 2022-04-01 19:19:40
* @LastEditors: Light * @LastEditors: Light
* @LastEditTime: 2022-10-26 10:35:36 * @LastEditTime: 2022-10-31 15:52:57
* @Description: 告诉大家这是什么 * @Description: 告诉大家这是什么
*/ */
import request from '@/utils/request' import request from '@/utils/request'
@ -63,6 +63,13 @@ export function pageWithAttrs(data) {
data, data,
}) })
} }
//
export function getAppListByDept() {
return request({
url: '/resource/getAppListByDept',
method: 'get',
})
}
// hls // hls
export function getHls(params) { export function getHls(params) {
return request({ return request({

View File

@ -260,7 +260,11 @@
import { getCategoryTreePage, endProcess } from '@/api/personalCenter' import { getCategoryTreePage, endProcess } from '@/api/personalCenter'
import mybus from '@/myplugins/mybus' import mybus from '@/myplugins/mybus'
import { sgcDel, getApplyForm } from '@/api/personalCenter' import { sgcDel, getApplyForm } from '@/api/personalCenter'
import { pageWithAttrs, updateIntegrationServices } from '@/api/home' import {
pageWithAttrs,
updateIntegrationServices,
getAppListByDept,
} from '@/api/home'
import { DETAIL_PAGE_CONTENT_DEFAULT_TAB } from '@/global/GlobalConfig.js' import { DETAIL_PAGE_CONTENT_DEFAULT_TAB } from '@/global/GlobalConfig.js'
import { getIntegrationDetail, soldierApply } from '@/api/home' import { getIntegrationDetail, soldierApply } from '@/api/home'
import { useStore } from 'vuex' import { useStore } from 'vuex'
@ -782,25 +786,18 @@
}) })
} }
} }
pageWithAttrs({ getAppListByDept().then((res) => {
pageNum: 1, console.log('res=====>', res.data.data)
pageSize: 99999,
type: '应用资源',
name: '',
infoList: [],
}).then((res) => {
if (res.data.code == 0) { if (res.data.code == 0) {
if (res.data.data.records.length == 0) { if (res.data.data.length == 0) {
message.warning('该关键词,暂无应用资源!') message.warning('该关键词,暂无应用资源!')
} else { } else {
// //
res.data.data.records.map((val) => { res.data.data.map((val) => {
if (val.deptName === deptName) {
systemOptions2.value.push({ systemOptions2.value.push({
value: val.name, value: val.NAME,
label: val.name, label: val.NAME,
}) })
}
}) })
// console.log('===================>', systemOptions2.value) // console.log('===================>', systemOptions2.value)
} }
@ -958,7 +955,7 @@
} }
</script> </script>
<style scoped lang="less"> <style scoped lang="less">
#apply-container { #apply-container {
// background-color: #f5f8fc; // background-color: #f5f8fc;
height: 100%; height: 100%;
width: 100%; width: 100%;
@ -1037,9 +1034,9 @@
font-weight: bold; font-weight: bold;
color: #000; color: #000;
} }
} }
.applicationScene { .applicationScene {
:deep(.ant-select-selector) { :deep(.ant-select-selector) {
overflow-x: scroll; overflow-x: scroll;
} }
@ -1047,20 +1044,20 @@
:deep(.ant-select-selection-overflow) { :deep(.ant-select-selection-overflow) {
flex-wrap: nowrap; flex-wrap: nowrap;
} }
} }
textarea { textarea {
resize: none; resize: none;
font-size: 14px; font-size: 14px;
} }
.bottom-btn { .bottom-btn {
display: flex; display: flex;
justify-content: center; justify-content: center;
// position: fixed; // position: fixed;
} }
.cancel-apply { .cancel-apply {
width: 80px; width: 80px;
height: 38px; height: 38px;
margin-right: 20px; margin-right: 20px;
@ -1071,9 +1068,9 @@
border: none; border: none;
padding: 0; padding: 0;
text-align: center; text-align: center;
} }
.confirm-apply { .confirm-apply {
width: 80px; width: 80px;
height: 38px; height: 38px;
background: #0087ff; background: #0087ff;
@ -1083,5 +1080,5 @@
border: none; border: none;
padding: 0; padding: 0;
text-align: center; text-align: center;
} }
</style> </style>