Merge branch 'hi-ucs-dev' of http://124.222.94.39:3000/wuhongjian/hi-ucs into hi-ucs-dev
This commit is contained in:
commit
de605dd446
|
@ -67,7 +67,22 @@
|
|||
placeholder="请输入单位"
|
||||
v-model:value="formName.unit"
|
||||
disabled
|
||||
v-if="deptFlage"
|
||||
/>
|
||||
<a-select
|
||||
v-else
|
||||
placeholder="请选择归属部门"
|
||||
v-model:value="formName.unit"
|
||||
@change="deptIdChangeFunction"
|
||||
>
|
||||
<a-select-option
|
||||
v-for="(item, index) in deptNameAll"
|
||||
:key="`${index}-${item}`"
|
||||
:value="item.name"
|
||||
>
|
||||
{{ item.name }}
|
||||
</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</div>
|
||||
<div class="base-info" v-if="flag">
|
||||
|
@ -195,6 +210,7 @@ import {
|
|||
relaunch,
|
||||
selectOne,
|
||||
} from '@/api/home'
|
||||
import { getDeptAll } from '@/api/user'
|
||||
import { getCategoryTreePage, endProcess } from '@/api/personalCenter'
|
||||
import mybus from '@/myplugins/mybus'
|
||||
import { sgcDel, getApplyForm } from '@/api/personalCenter'
|
||||
|
@ -216,6 +232,8 @@ export default {
|
|||
const integrationServicesItemInfo = ref(
|
||||
JSON.parse(localStorage.getItem('integrationServicesItemInfo') || '{}')
|
||||
)
|
||||
const deptNameAll = ref([]) //所有部门名称
|
||||
const deptFlage = ref(true) //判断是否存在默认部门名称
|
||||
console.log(
|
||||
'integrationServicesItemInfo------------>',
|
||||
integrationServicesItemInfo
|
||||
|
@ -268,6 +286,7 @@ export default {
|
|||
userId: '',
|
||||
phone: '',
|
||||
unit: '',
|
||||
deptId: '',
|
||||
system: [],
|
||||
enclosure: '', //附件
|
||||
enclosureName: '', //附件
|
||||
|
@ -303,8 +322,24 @@ export default {
|
|||
formName.phone = res.data.data.mobile
|
||||
}
|
||||
formName.unit = res.data.data.deptName
|
||||
if (!formName.unit) {
|
||||
deptFlage.value = false
|
||||
//调用查询所有部门名称的接口
|
||||
getDeptAll().then((res) => {
|
||||
deptNameAll.value = res.data.data
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
//归属部门选中改变事件
|
||||
const deptIdChangeFunction = (name) => {
|
||||
deptNameAll.value.map((item) => {
|
||||
if (item.name == name) {
|
||||
formName.deptId = item.id
|
||||
}
|
||||
})
|
||||
console.log(formName)
|
||||
}
|
||||
const applicationSceneOpthion = ref([])
|
||||
getCategoryTreePage({
|
||||
page: 1,
|
||||
|
@ -344,13 +379,12 @@ export default {
|
|||
router.push({
|
||||
path: '/DetailsPageconetent',
|
||||
query: {
|
||||
select: DETAIL_PAGE_CONTENT_DEFAULT_TAB
|
||||
select: DETAIL_PAGE_CONTENT_DEFAULT_TAB,
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
const processStartHandle = () => {
|
||||
debugger
|
||||
formRef.value.validate().then(() => {
|
||||
if (!formUrl) {
|
||||
return message.error('请设置保存表单的URL')
|
||||
|
@ -425,7 +459,11 @@ export default {
|
|||
}
|
||||
})
|
||||
} else {
|
||||
if (res.data.msg === 'success' && falgNum == 0 && sxt) {
|
||||
if (
|
||||
res.data.msg === 'success' &&
|
||||
falgNum == 0 &&
|
||||
sxt
|
||||
) {
|
||||
message.success('申请提交成功,请到消息中心查看!')
|
||||
sxt = false
|
||||
}
|
||||
|
@ -458,7 +496,9 @@ export default {
|
|||
})
|
||||
} else {
|
||||
// todo 融合服务
|
||||
if (Object.keys(integrationServicesItemInfo).length > 0) {
|
||||
if (
|
||||
Object.keys(integrationServicesItemInfo).length > 0
|
||||
) {
|
||||
updateIntegrationServiceAction()
|
||||
}
|
||||
jumpToDetailsPageconetent()
|
||||
|
@ -542,7 +582,11 @@ export default {
|
|||
}
|
||||
})
|
||||
} else {
|
||||
if (res.data.msg === 'success' && falgNum == 0 && sxt) {
|
||||
if (
|
||||
res.data.msg === 'success' &&
|
||||
falgNum == 0 &&
|
||||
sxt
|
||||
) {
|
||||
message.success('申请提交成功,请到消息中心查看!')
|
||||
sxt = false
|
||||
}
|
||||
|
@ -552,7 +596,11 @@ export default {
|
|||
}
|
||||
})
|
||||
})
|
||||
console.log('提交数据==========================>', formName, ids)
|
||||
console.log(
|
||||
'提交数据==========================>',
|
||||
formName,
|
||||
ids
|
||||
)
|
||||
if (formName.system.length !== 0) {
|
||||
if (formName.applicationSystem.length == 0) {
|
||||
formName.applicationSystem = ''
|
||||
|
@ -571,7 +619,9 @@ export default {
|
|||
})
|
||||
} else {
|
||||
// todo 融合服务
|
||||
if (Object.keys(integrationServicesItemInfo).length > 0) {
|
||||
if (
|
||||
Object.keys(integrationServicesItemInfo).length > 0
|
||||
) {
|
||||
updateIntegrationServiceAction()
|
||||
}
|
||||
jumpToDetailsPageconetent()
|
||||
|
@ -761,8 +811,10 @@ export default {
|
|||
})
|
||||
}
|
||||
return {
|
||||
deptIdChangeFunction,
|
||||
formRef,
|
||||
formName,
|
||||
deptNameAll,
|
||||
instanceIdUrl,
|
||||
formUrl,
|
||||
processStartHandle,
|
||||
|
@ -771,6 +823,7 @@ export default {
|
|||
options,
|
||||
fileList,
|
||||
list,
|
||||
deptFlage,
|
||||
headers: {
|
||||
authorization: 'authorization-text',
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue