Compare commits

...

4 Commits

4 changed files with 271 additions and 392 deletions

View File

@ -71,7 +71,7 @@
<!--操作按钮查询--> <!--操作按钮查询-->
<el-form-item> <el-form-item>
<el-button @click="getDataList()">{{ $t('query') }}</el-button> <el-button type="primary" @click="getDataList()">{{ $t('query') }}</el-button>
</el-form-item> </el-form-item>
<!--操作按钮重置--> <!--操作按钮重置-->
<el-form-item> <el-form-item>

View File

@ -106,7 +106,8 @@ const algorithmCardPhoto = (item) => {
if(item.pic && typeof item.pic == 'string') { if(item.pic && typeof item.pic == 'string') {
_arr = JSON.parse(item.pic) _arr = JSON.parse(item.pic)
} }
let _img = _arr[0] && _arr[0].img || '' let _img = _arr[0] && _arr[0].img || imgSrc.value;
console.log('_img------------>', _img);
return _img return _img
} }
// //

View File

@ -45,7 +45,6 @@
:fallback="imgSrc" :fallback="imgSrc"
:preview="false" :preview="false"
></a-image> ></a-image>
<a-tooltip> <a-tooltip>
<template #title>{{ item.name }}</template> <template #title>{{ item.name }}</template>
<div class="algorithm-card-title" @click="detailFunction(item.id)"> <div class="algorithm-card-title" @click="detailFunction(item.id)">
@ -61,7 +60,6 @@
import { getCategoryTreePage } from '@/api/personalCenter' import { getCategoryTreePage } from '@/api/personalCenter'
import { getGisByArea } from '@/api/home' import { getGisByArea } from '@/api/home'
import { ref, onMounted, onBeforeUnmount, nextTick } from 'vue' import { ref, onMounted, onBeforeUnmount, nextTick } from 'vue'
const deptType = ref(null) const deptType = ref(null)
const typeName = ref('全市') const typeName = ref('全市')
const typeName2 = ref('全部') const typeName2 = ref('全部')
@ -87,7 +85,6 @@
area: typeName2.value == '全部' ? '' : typeName2.value, area: typeName2.value == '全部' ? '' : typeName2.value,
pageSize: 9, // 9 pageSize: 9, // 9
} }
// //
const changeAreaFunction = (val) => { const changeAreaFunction = (val) => {
params.pageNum = 1 params.pageNum = 1
@ -96,7 +93,6 @@
selectFlag2.value = false selectFlag2.value = false
pageWithAttrsFunction() pageWithAttrsFunction()
} }
let algorithmclassDom = null let algorithmclassDom = null
const imgSrc = ref(require('@/assets/capacitySquare/algorithm-photo2.jpg')) const imgSrc = ref(require('@/assets/capacitySquare/algorithm-photo2.jpg'))
const dataLength = ref(true) const dataLength = ref(true)
@ -110,12 +106,10 @@
}) })
} }
pageWithAttrsFunction() pageWithAttrsFunction()
// //
const detailFunction = (id) => { const detailFunction = (id) => {
window.open(window.SITE_CONFIG.previewUrl + `#/details?id=${id}`) window.open(window.SITE_CONFIG.previewUrl + `#/details?id=${id}`)
} }
const changeDeptType = (str) => { const changeDeptType = (str) => {
if (str) { if (str) {
if (algorithmclassDom) { if (algorithmclassDom) {
@ -151,7 +145,6 @@
selectFlag.value = false selectFlag.value = false
getData(str) getData(str)
} }
const getData = (str) => { const getData = (str) => {
getGisByArea(params).then((res) => { getGisByArea(params).then((res) => {
const resData = res.data.data || {} const resData = res.data.data || {}
@ -176,7 +169,6 @@
}) })
}) })
} }
const layerFunction = (e) => { const layerFunction = (e) => {
var scrollTop = e.currentTarget.scrollTop var scrollTop = e.currentTarget.scrollTop
var windowHeight = e.currentTarget.clientHeight var windowHeight = e.currentTarget.clientHeight
@ -210,7 +202,6 @@
algorithmclassDom.removeEventListener('scroll', layerFunction, true) algorithmclassDom.removeEventListener('scroll', layerFunction, true)
}) })
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
.algorithm { .algorithm {
.select { .select {
@ -219,7 +210,6 @@
font-size: 0.2rem; font-size: 0.2rem;
font-family: webfont; font-family: webfont;
position: relative; position: relative;
.top { .top {
cursor: pointer; cursor: pointer;
width: 3.61rem; width: 3.61rem;
@ -230,7 +220,6 @@
background: url('~@/assets/capacitySquare/select-bg.png') no-repeat; background: url('~@/assets/capacitySquare/select-bg.png') no-repeat;
background-size: 100%; background-size: 100%;
position: relative; position: relative;
.light { .light {
width: 0.56rem; width: 0.56rem;
height: 3px; height: 3px;
@ -242,7 +231,6 @@
background-size: 100%; background-size: 100%;
} }
} }
.bottom { .bottom {
cursor: pointer; cursor: pointer;
position: absolute; position: absolute;
@ -251,7 +239,6 @@
z-index: 1000; z-index: 1000;
background: rgba(57, 134, 239, 0.68); background: rgba(57, 134, 239, 0.68);
border: 1px solid #aed5ff; border: 1px solid #aed5ff;
.light { .light {
display: inline-block; display: inline-block;
width: 2.39rem; width: 2.39rem;
@ -263,7 +250,6 @@
no-repeat; no-repeat;
background-size: 100%; background-size: 100%;
} }
& > div { & > div {
width: 1.8rem; width: 1.8rem;
height: 0.4rem; height: 0.4rem;
@ -271,13 +257,11 @@
text-align: center; text-align: center;
border-top: 1px solid #aed5ff; border-top: 1px solid #aed5ff;
} }
& > div:nth-of-type(1) { & > div:nth-of-type(1) {
border: none; border: none;
} }
} }
} }
.algorithm-class { .algorithm-class {
// margin-top: 0.6rem; // margin-top: 0.6rem;
margin-bottom: 0.18rem; margin-bottom: 0.18rem;
@ -287,7 +271,6 @@
overflow: auto; overflow: auto;
margin-left: 1.15rem; margin-left: 1.15rem;
margin-right: 0.15rem; margin-right: 0.15rem;
.algorithm-card { .algorithm-card {
height: 2.75rem; height: 2.75rem;
width: 5.23rem; width: 5.23rem;
@ -296,7 +279,6 @@
margin-bottom: 0.4rem; margin-bottom: 0.4rem;
margin-right: 0.65rem; margin-right: 0.65rem;
position: relative; position: relative;
:deep(.ant-image) { :deep(.ant-image) {
img { img {
margin-top: 0.15rem; margin-top: 0.15rem;
@ -305,7 +287,6 @@
margin-left: 0.1rem; margin-left: 0.1rem;
} }
} }
.algorithm-card-photo { .algorithm-card-photo {
height: 100%; height: 100%;
width: 100%; width: 100%;
@ -313,7 +294,6 @@
no-repeat; no-repeat;
background-size: 100%; background-size: 100%;
} }
.algorithm-card-title { .algorithm-card-title {
position: absolute; position: absolute;
height: 0.6rem; height: 0.6rem;
@ -330,7 +310,6 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
span { span {
line-height: 0.24rem; line-height: 0.24rem;
overflow: hidden; overflow: hidden;
@ -338,24 +317,20 @@
white-space: nowrap; white-space: nowrap;
cursor: pointer; cursor: pointer;
} }
span:last-child { span:last-child {
font-size: 0.14rem; font-size: 0.14rem;
} }
} }
} }
} }
.algorithm-class::-webkit-scrollbar-track-piece { .algorithm-class::-webkit-scrollbar-track-piece {
background: #a5bcdb; background: #a5bcdb;
border-radius: 0.08rem; border-radius: 0.08rem;
} }
.algorithm-class::-webkit-scrollbar-thumb { .algorithm-class::-webkit-scrollbar-thumb {
height: 3.2rem; height: 3.2rem;
background: linear-gradient(to bottom, #47d7f5, #3dc6e3); background: linear-gradient(to bottom, #47d7f5, #3dc6e3);
} }
.algorithm-class::-webkit-scrollbar { .algorithm-class::-webkit-scrollbar {
height: 8.8rem; height: 8.8rem;
width: 0.08rem; width: 0.08rem;

View File

@ -9,83 +9,38 @@
<div class="form-container"> <div class="form-container">
<div v-if="applySuccess"> <div v-if="applySuccess">
<div class="title">申请人信息</div> <div class="title">申请人信息</div>
<a-form <a-form ref="formRef" :model="formName" name="basic" :label-col="{ style: { width: '106px' } }"
ref="formRef" :wrapper-col="{ style: { width: '230px' } }" labelAlign="left" autocomplete="off">
:model="formName"
name="basic"
:label-col="{ style: { width: '106px' } }"
:wrapper-col="{ style: { width: '230px' } }"
labelAlign="left"
autocomplete="off"
>
<div class="base-info"> <div class="base-info">
<a-form-item <a-form-item label="申请人" name="applyUserName" :rules="[{ required: true, message: '请输入申请人' }]">
label="申请人" <a-input placeholder="请输入申请人" v-model:value="formName.applyUserName" />
name="applyUserName"
:rules="[{ required: true, message: '请输入申请人' }]"
>
<a-input
placeholder="请输入申请人"
v-model:value="formName.applyUserName"
/>
</a-form-item> </a-form-item>
<a-form-item <a-form-item style="margin: 0 22px" label="申请人电话" name="applyUserPhone" :rules="[
style="margin: 0 22px"
label="申请人电话"
name="applyUserPhone"
:rules="[
{ {
required: true, required: true,
pattern: /^1[3456789]\d{9}$/, pattern: /^1[3456789]\d{9}$/,
message: '请输入正确的电话号码', message: '请输入正确的电话号码',
}, },
]" ]">
> <a-input placeholder="请输入申请人电话" v-model:value="formName.applyUserPhone" />
<a-input
placeholder="请输入申请人电话"
v-model:value="formName.applyUserPhone"
/>
</a-form-item> </a-form-item>
<a-form-item <a-form-item label="申请单位" name="applyUserDeptName" :rules="[{ required: true, message: '请输入申请单位' }]">
label="申请单位" <a-input placeholder="请输入申请单位" v-model:value="formName.applyUserDeptName" />
name="applyUserDeptName"
:rules="[{ required: true, message: '请输入申请单位' }]"
>
<a-input
placeholder="请输入申请单位"
v-model:value="formName.applyUserDeptName"
/>
</a-form-item> </a-form-item>
</div> </div>
<div class="title">需求信息</div> <div class="title">需求信息</div>
<a-form-item <a-form-item style="margin-bottom: 10px" label="需求标题" name="demandSubject"
style="margin-bottom: 10px" :rules="[{ required: true, message: '请输入需求标题' }]">
label="需求标题" <a-input style="width: 350px" v-model:value="formName.demandSubject" />
name="demandSubject"
:rules="[{ required: true, message: '请输入需求标题' }]"
>
<a-input
style="width: 350px"
v-model:value="formName.demandSubject"
/>
</a-form-item> </a-form-item>
<a-form-item <a-form-item style="margin-bottom: 10px" label="需求类型" name="detailsType"
style="margin-bottom: 10px" :rules="[{ required: true, message: '请选择需求类型' }]">
label="需求类型" <a-select ref="select" v-model:value="formName.detailsType" @focus="focus" style="width: 200px">
name="detailsType"
:rules="[{ required: true, message: '请选择需求类型' }]"
>
<a-select
ref="select"
v-model:value="formName.detailsType"
@focus="focus"
style="width: 200px"
>
<a-select-option value="基础设施">基础设施</a-select-option> <a-select-option value="基础设施">基础设施</a-select-option>
<a-select-option value="数据资源">数据资源</a-select-option> <a-select-option value="数据资源">数据资源</a-select-option>
<a-select-option value="组件服务">组件服务</a-select-option> <a-select-option value="组件服务">组件服务</a-select-option>
@ -94,50 +49,24 @@
</a-select> </a-select>
</a-form-item> </a-form-item>
<a-form-item <a-form-item label="应用领域" v-if="formName.detailsType === '应用资源' ||
label="应用领域" formName.detailsType === '组件服务'" name="detailsField" style="width: 6.93rem" :rules="[
name="detailsField"
style="width: 6.93rem"
:rules="[
{ {
required: required: true,
formName.detailsType === '应用资源' ||
formName.detailsType === '组件服务'
? true
: false,
message: '请选择应用领域', message: '请选择应用领域',
}, },
]" ]">
> <a-select v-model:value="formName.detailsField" :options="applicationSceneOpthion" mode="tags"
<a-select :size="size" placeholder="请选择应用领域" :filterOption="false" :searchValue="false" style="width: 5.87rem">
:disabled=" </a-select>
formName.detailsType === '应用资源' ||
formName.detailsType === '组件服务'
? false
: true
"
v-model:value="formName.detailsField"
:options="applicationSceneOpthion"
mode="tags"
:size="size"
placeholder="请选择应用领域"
:filterOption="false"
:searchValue="false"
style="width: 5.87rem"
></a-select>
</a-form-item> </a-form-item>
<!-- <a-form-item label="应用领域" name="detailsField" style="width: 350px" <!-- <a-form-item label="应用领域" name="detailsField" style="width: 350px"
:rules="[{ required: true, message: '请输入应用领域' }]"> :rules="[{ required: true, message: '请输入应用领域' }]">
<a-input placeholder="请输入应用领域" v-model:value="formName.detailsField" /> <a-input placeholder="请输入应用领域" v-model:value="formName.detailsField" />
</a-form-item> --> </a-form-item> -->
<a-form-item <a-form-item style="margin-bottom: 10px" label="需求描述" name="demandDetails"
style="margin-bottom: 10px" :rules="[{ required: true, message: '请输入需求描述' }]">
label="需求描述" <a-textarea style="
name="demandDetails"
:rules="[{ required: true, message: '请输入需求描述' }]"
>
<a-textarea
style="
width: 500px; width: 500px;
height: 150px; height: 150px;
font-size: 16px; font-size: 16px;
@ -147,25 +76,12 @@
border-radius: 6px; border-radius: 6px;
padding: 10px; padding: 10px;
resize: none; resize: none;
" " v-model:value="formName.demandDetails" />
v-model:value="formName.demandDetails"
/>
</a-form-item> </a-form-item>
<a-form-item <a-form-item style="color: #666; font-size: 16px" label="附件上传" name="applyDoc">
style="color: #666; font-size: 16px" <a-upload v-model:file-list="fileList" name="file" :action="upLoadUrl" :headers="headers"
label="附件上传" @change="handleChange" :maxCount="1">
name="applyDoc" <a-button style="
>
<a-upload
v-model:file-list="fileList"
name="file"
:action="upLoadUrl"
:headers="headers"
@change="handleChange"
:maxCount="1"
>
<a-button
style="
width: 100px; width: 100px;
height: 30px; height: 30px;
margin-right: 10px; margin-right: 10px;
@ -176,8 +92,7 @@
border: 1px solid #bbd3ef; border: 1px solid #bbd3ef;
padding: 0; padding: 0;
text-align: center; text-align: center;
" ">
>
<upload-outlined></upload-outlined> <upload-outlined></upload-outlined>
文件上传 文件上传
</a-button> </a-button>
@ -188,8 +103,7 @@
</a-form-item> </a-form-item>
<a-form-item :wrapper-col="{ offset: 8, span: 16 }"> <a-form-item :wrapper-col="{ offset: 8, span: 16 }">
<a-button <a-button style="
style="
width: 80px; width: 80px;
height: 38px; height: 38px;
margin-right: 20px; margin-right: 20px;
@ -200,15 +114,10 @@
border: none; border: none;
padding: 0; padding: 0;
text-align: center; text-align: center;
" " type="primary" html-type="cancle" @click="signOut">
type="primary"
html-type="cancle"
@click="signOut"
>
退出申请 退出申请
</a-button> </a-button>
<a-button <a-button style="
style="
width: 80px; width: 80px;
height: 38px; height: 38px;
background: #0087ff; background: #0087ff;
@ -218,11 +127,7 @@
border: none; border: none;
padding: 0; padding: 0;
text-align: center; text-align: center;
" " type="primary" html-type="submit" @click="processStartHandle()">
type="primary"
html-type="submit"
@click="processStartHandle()"
>
提交申请 提交申请
</a-button> </a-button>
</a-form-item> </a-form-item>
@ -345,19 +250,21 @@
} }
const fileList = ref([]) const fileList = ref([])
const subimtFlag = ref(true)
const processStartHandle = () => { const processStartHandle = () => {
let detailsField = '';
if (formName.detailsField.length > 0) { if (formName.detailsField.length > 0) {
let detailsField = ''
formName.detailsField.map((item) => { formName.detailsField.map((item) => {
detailsField += item + ';' detailsField += item + ';'
}) })
formName.detailsField = detailsField
} }
// copy
let _postData = JSON.parse(JSON.stringify(formName))
_postData.detailsField = detailsField;
if (id.value) { if (id.value) {
updateDemandForm(formName).then((upres) => { updateDemandForm(_postData).then((upres) => {
if (upres.data.code == 0) { if (upres.data.code == 0) {
relaunch({ data: formName, taskId: taskId.value }).then((res) => { relaunch({ data: _postData, taskId: taskId.value }).then((res) => {
console.log('驳回================>', res) console.log('驳回================>', res)
if (res.data.code == 0) { if (res.data.code == 0) {
message.success('重新发起流程成功!') message.success('重新发起流程成功!')
@ -373,22 +280,18 @@
} }
}) })
} else { } else {
if (subimtFlag.value) { formRef.value.validate().then((valid) => {
subimtFlag.value = false const detString = String(_postData.detailsField)
formRef.value.validate().then(() => { _postData.detailsField = detString
const detString = String(formName.detailsField) console.log(detString, _postData.detailsField, 'detString')
formName.detailsField = detString demandApply(_postData).then((res) => {
console.log(detString, formName.detailsField, 'detString')
demandApply(formName).then((res) => {
applySuccess.value = false applySuccess.value = false
message.success('操作成功!') message.success('操作成功!')
console.log('能力申请================>', res) console.log('能力申请================>', res)
subimtFlag.value = true
}) })
}) })
} }
} }
}
return { return {
formRef, formRef,