需求修改回显
This commit is contained in:
parent
95d27d57e0
commit
baebd9f62b
|
@ -9,38 +9,83 @@
|
||||||
<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 ref="formRef" :model="formName" name="basic" :label-col="{ style: { width: '106px' } }"
|
<a-form
|
||||||
:wrapper-col="{ style: { width: '230px' } }" labelAlign="left" autocomplete="off">
|
ref="formRef"
|
||||||
|
: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 label="申请人" name="applyUserName" :rules="[{ required: true, message: '请输入申请人' }]">
|
<a-form-item
|
||||||
<a-input placeholder="请输入申请人" v-model:value="formName.applyUserName" />
|
label="申请人"
|
||||||
|
name="applyUserName"
|
||||||
|
:rules="[{ required: true, message: '请输入申请人' }]"
|
||||||
|
>
|
||||||
|
<a-input
|
||||||
|
placeholder="请输入申请人"
|
||||||
|
v-model:value="formName.applyUserName"
|
||||||
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
|
||||||
<a-form-item style="margin: 0 22px" label="申请人电话" name="applyUserPhone" :rules="[
|
<a-form-item
|
||||||
{
|
style="margin: 0 22px"
|
||||||
required: true,
|
label="申请人电话"
|
||||||
pattern: /^1[3456789]\d{9}$/,
|
name="applyUserPhone"
|
||||||
message: '请输入正确的电话号码',
|
:rules="[
|
||||||
},
|
{
|
||||||
]">
|
required: true,
|
||||||
<a-input placeholder="请输入申请人电话" v-model:value="formName.applyUserPhone" />
|
pattern: /^1[3456789]\d{9}$/,
|
||||||
|
message: '请输入正确的电话号码',
|
||||||
|
},
|
||||||
|
]"
|
||||||
|
>
|
||||||
|
<a-input
|
||||||
|
placeholder="请输入申请人电话"
|
||||||
|
v-model:value="formName.applyUserPhone"
|
||||||
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
|
||||||
<a-form-item label="申请单位" name="applyUserDeptName" :rules="[{ required: true, message: '请输入申请单位' }]">
|
<a-form-item
|
||||||
<a-input placeholder="请输入申请单位" v-model:value="formName.applyUserDeptName" />
|
label="申请单位"
|
||||||
|
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 style="margin-bottom: 10px" label="需求标题" name="demandSubject"
|
<a-form-item
|
||||||
:rules="[{ required: true, message: '请输入需求标题' }]">
|
style="margin-bottom: 10px"
|
||||||
<a-input style="width: 350px" v-model:value="formName.demandSubject" />
|
label="需求标题"
|
||||||
|
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 style="margin-bottom: 10px" label="需求类型" name="detailsType"
|
<a-form-item
|
||||||
:rules="[{ required: true, message: '请选择需求类型' }]">
|
style="margin-bottom: 10px"
|
||||||
<a-select ref="select" v-model:value="formName.detailsType" @focus="focus" style="width: 200px">
|
label="需求类型"
|
||||||
|
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>
|
||||||
|
@ -49,24 +94,44 @@
|
||||||
</a-select>
|
</a-select>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
|
||||||
<a-form-item label="应用领域" v-if="formName.detailsType === '应用资源' ||
|
<a-form-item
|
||||||
formName.detailsType === '组件服务'" name="detailsField" style="width: 6.93rem" :rules="[
|
label="应用领域"
|
||||||
{
|
v-if="
|
||||||
required: true,
|
formName.detailsType === '应用资源' ||
|
||||||
message: '请选择应用领域',
|
formName.detailsType === '组件服务'
|
||||||
},
|
"
|
||||||
]">
|
name="detailsField"
|
||||||
<a-select v-model:value="formName.detailsField" :options="applicationSceneOpthion" mode="tags"
|
style="width: 6.93rem"
|
||||||
:size="size" placeholder="请选择应用领域" :filterOption="false" :searchValue="false" style="width: 5.87rem">
|
:rules="[
|
||||||
</a-select>
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请选择应用领域',
|
||||||
|
},
|
||||||
|
]"
|
||||||
|
>
|
||||||
|
<a-select
|
||||||
|
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 style="margin-bottom: 10px" label="需求描述" name="demandDetails"
|
<a-form-item
|
||||||
:rules="[{ required: true, message: '请输入需求描述' }]">
|
style="margin-bottom: 10px"
|
||||||
<a-textarea style="
|
label="需求描述"
|
||||||
|
name="demandDetails"
|
||||||
|
:rules="[{ required: true, message: '请输入需求描述' }]"
|
||||||
|
>
|
||||||
|
<a-textarea
|
||||||
|
style="
|
||||||
width: 500px;
|
width: 500px;
|
||||||
height: 150px;
|
height: 150px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
@ -76,12 +141,25 @@
|
||||||
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 style="color: #666; font-size: 16px" label="附件上传" name="applyDoc">
|
<a-form-item
|
||||||
<a-upload v-model:file-list="fileList" name="file" :action="upLoadUrl" :headers="headers"
|
style="color: #666; font-size: 16px"
|
||||||
@change="handleChange" :maxCount="1">
|
label="附件上传"
|
||||||
<a-button style="
|
name="applyDoc"
|
||||||
|
>
|
||||||
|
<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;
|
||||||
|
@ -92,7 +170,8 @@
|
||||||
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>
|
||||||
|
@ -103,7 +182,8 @@
|
||||||
</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 style="
|
<a-button
|
||||||
|
style="
|
||||||
width: 80px;
|
width: 80px;
|
||||||
height: 38px;
|
height: 38px;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
|
@ -114,10 +194,15 @@
|
||||||
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 style="
|
<a-button
|
||||||
|
style="
|
||||||
width: 80px;
|
width: 80px;
|
||||||
height: 38px;
|
height: 38px;
|
||||||
background: #0087ff;
|
background: #0087ff;
|
||||||
|
@ -127,7 +212,11 @@
|
||||||
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>
|
||||||
|
@ -139,7 +228,7 @@
|
||||||
</div>
|
</div>
|
||||||
<p>
|
<p>
|
||||||
您已成功申请{{
|
您已成功申请{{
|
||||||
formName.demandSubject || ''
|
formName.demandSubject || ''
|
||||||
}},请耐心等待审批结果,结果会第一时间通知您!
|
}},请耐心等待审批结果,结果会第一时间通知您!
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -150,248 +239,257 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import HomeHeader from '@/views/home/components/header'
|
import HomeHeader from '@/views/home/components/header'
|
||||||
import { reactive, ref } from 'vue'
|
import { reactive, ref } from 'vue'
|
||||||
import { message } from 'ant-design-vue'
|
import { message } from 'ant-design-vue'
|
||||||
// import { UploadOutlined } from '@ant-design/icons-vue'
|
// import { UploadOutlined } from '@ant-design/icons-vue'
|
||||||
import { getUser, getUserInfo, relaunch } from '@/api/home'
|
import { getUser, getUserInfo, relaunch } from '@/api/home'
|
||||||
import {
|
import {
|
||||||
demandApply,
|
demandApply,
|
||||||
getDemandForm,
|
getDemandForm,
|
||||||
updateDemandForm,
|
updateDemandForm,
|
||||||
getCategoryTreePage,
|
getCategoryTreePage,
|
||||||
} from '@/api/personalCenter'
|
} from '@/api/personalCenter'
|
||||||
// import { baseURL } from '@/config'
|
// import { baseURL } from '@/config'
|
||||||
import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: '',
|
name: '',
|
||||||
props: {},
|
props: {},
|
||||||
components: {
|
components: {
|
||||||
HomeHeader,
|
HomeHeader,
|
||||||
// UploadOutlined,
|
// UploadOutlined,
|
||||||
},
|
},
|
||||||
setup() {
|
setup() {
|
||||||
const disabled = ref(false)
|
const disabled = ref(false)
|
||||||
const upLoadUrl = ref(window.SITE_CONFIG.apiURL + '/upload')
|
const upLoadUrl = ref(window.SITE_CONFIG.apiURL + '/upload')
|
||||||
const formName = reactive({
|
const formName = reactive({
|
||||||
applyUserDeptId: '',
|
applyUserDeptId: '',
|
||||||
applyUserDeptName: '',
|
applyUserDeptName: '',
|
||||||
applyUserId: '',
|
applyUserId: '',
|
||||||
applyUserName: '',
|
applyUserName: '',
|
||||||
applyUserPhone: '',
|
applyUserPhone: '',
|
||||||
demandDetails: '',
|
demandDetails: '',
|
||||||
demandSubject: '',
|
demandSubject: '',
|
||||||
detailsField: [],
|
detailsField: [],
|
||||||
detailsType: '',
|
detailsType: '',
|
||||||
enclosure: '',
|
enclosure: '',
|
||||||
})
|
|
||||||
// console.log(formName.demandSubject)
|
|
||||||
|
|
||||||
const router = useRouter()
|
|
||||||
const id = ref(router.currentRoute.value.query.id)
|
|
||||||
const taskId = ref(router.currentRoute.value.query.taskId)
|
|
||||||
if (id.value) {
|
|
||||||
getDemandForm(id.value).then((res) => {
|
|
||||||
console.log('回填数据===============>', res)
|
|
||||||
formName.applyUserPhone = res.data.data.applyUserPhone
|
|
||||||
formName.demandSubject = res.data.data.demandSubject
|
|
||||||
formName.detailsType = res.data.data.detailsType
|
|
||||||
formName.detailsField = res.data.data.detailsField
|
|
||||||
formName.demandDetails = res.data.data.demandDetails
|
|
||||||
formName.enclosure = res.data.data.enclosure
|
|
||||||
})
|
})
|
||||||
}
|
// console.log(formName.demandSubject)
|
||||||
const applicationSceneOpthion = ref([])
|
|
||||||
getCategoryTreePage({
|
|
||||||
page: 1,
|
|
||||||
limit: 20,
|
|
||||||
dictTypeId: '1513712507692818433',
|
|
||||||
deFlage: 0,
|
|
||||||
}).then((res) => {
|
|
||||||
res.data.data.list.map((val) => {
|
|
||||||
applicationSceneOpthion.value.push({
|
|
||||||
value: val.dictLabel,
|
|
||||||
label: val.dictLabel,
|
|
||||||
})
|
|
||||||
})
|
|
||||||
// console.log('字典值========>', applicationSceneOpthion.value)
|
|
||||||
})
|
|
||||||
getUser().then((res) => {
|
|
||||||
formName.applyUserName = res.data.data.realName
|
|
||||||
formName.applyUserId = res.data.data.id
|
|
||||||
getUserInfo(formName.applyUserId).then((res) => {
|
|
||||||
if (res.data.data.mobile) {
|
|
||||||
formName.applyUserPhone = res.data.data.mobile
|
|
||||||
}
|
|
||||||
formName.applyUserDeptName = res.data.data.deptName
|
|
||||||
formName.applyUserDeptId = res.data.data.deptId
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
const formRef = ref()
|
|
||||||
const applySuccess = ref(true)
|
|
||||||
|
|
||||||
// 退出
|
|
||||||
const signOut = () => {
|
|
||||||
window.close()
|
|
||||||
}
|
|
||||||
const handleChange = (info) => {
|
|
||||||
if (info.file.status !== 'uploading') {
|
|
||||||
console.log(info.file, info.fileList)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (info.file.status === 'done') {
|
|
||||||
message.success(`${info.file.name} 文件上传成功`)
|
|
||||||
formName.enclosure = info.file.response.data
|
|
||||||
} else if (info.file.status === 'error') {
|
|
||||||
message.error(`${info.file.name} 文件上传失败`)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const fileList = ref([])
|
|
||||||
const processStartHandle = () => {
|
|
||||||
let detailsField = '';
|
|
||||||
if (formName.detailsField.length > 0) {
|
|
||||||
formName.detailsField.map((item) => {
|
|
||||||
detailsField += item + ';'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// copy传参
|
|
||||||
let _postData = JSON.parse(JSON.stringify(formName))
|
|
||||||
_postData.detailsField = detailsField;
|
|
||||||
|
|
||||||
|
const router = useRouter()
|
||||||
|
const id = ref(router.currentRoute.value.query.id)
|
||||||
|
const taskId = ref(router.currentRoute.value.query.taskId)
|
||||||
if (id.value) {
|
if (id.value) {
|
||||||
updateDemandForm(_postData).then((upres) => {
|
getDemandForm(id.value).then((res) => {
|
||||||
if (upres.data.code == 0) {
|
console.log('回填数据===============>', res)
|
||||||
relaunch({ data: _postData, taskId: taskId.value }).then((res) => {
|
formName.applyUserPhone = res.data.data.applyUserPhone
|
||||||
console.log('驳回================>', res)
|
formName.demandSubject = res.data.data.demandSubject
|
||||||
if (res.data.code == 0) {
|
formName.detailsType = res.data.data.detailsType
|
||||||
message.success('重新发起流程成功!')
|
formName.detailsField = res.data.data.detailsField
|
||||||
window.setTimeout(() => {
|
formName.demandDetails = res.data.data.demandDetails
|
||||||
window.close()
|
formName.enclosure = res.data.data.enclosure
|
||||||
}, 1000)
|
fileList.value = [
|
||||||
} else {
|
{
|
||||||
message.error('重新发起流程失败!')
|
uid: res.data.data.id,
|
||||||
}
|
name: '附件',
|
||||||
})
|
staus: 'done',
|
||||||
} else {
|
},
|
||||||
message.error('数据更新失败!')
|
]
|
||||||
}
|
|
||||||
})
|
})
|
||||||
} else {
|
}
|
||||||
formRef.value.validate().then((valid) => {
|
const applicationSceneOpthion = ref([])
|
||||||
const detString = String(_postData.detailsField)
|
getCategoryTreePage({
|
||||||
_postData.detailsField = detString
|
page: 1,
|
||||||
console.log(detString, _postData.detailsField, 'detString')
|
limit: 20,
|
||||||
demandApply(_postData).then((res) => {
|
dictTypeId: '1513712507692818433',
|
||||||
applySuccess.value = false
|
deFlage: 0,
|
||||||
message.success('操作成功!')
|
}).then((res) => {
|
||||||
console.log('能力申请================>', res)
|
res.data.data.list.map((val) => {
|
||||||
|
applicationSceneOpthion.value.push({
|
||||||
|
value: val.dictLabel,
|
||||||
|
label: val.dictLabel,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
// console.log('字典值========>', applicationSceneOpthion.value)
|
||||||
}
|
})
|
||||||
|
getUser().then((res) => {
|
||||||
|
formName.applyUserName = res.data.data.realName
|
||||||
|
formName.applyUserId = res.data.data.id
|
||||||
|
getUserInfo(formName.applyUserId).then((res) => {
|
||||||
|
if (res.data.data.mobile) {
|
||||||
|
formName.applyUserPhone = res.data.data.mobile
|
||||||
|
}
|
||||||
|
formName.applyUserDeptName = res.data.data.deptName
|
||||||
|
formName.applyUserDeptId = res.data.data.deptId
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
return {
|
const formRef = ref()
|
||||||
formRef,
|
const applySuccess = ref(true)
|
||||||
formName,
|
|
||||||
fileList,
|
// 退出
|
||||||
headers: {
|
const signOut = () => {
|
||||||
authorization: 'authorization-text',
|
window.close()
|
||||||
},
|
}
|
||||||
handleChange,
|
const handleChange = (info) => {
|
||||||
applySuccess,
|
if (info.file.status !== 'uploading') {
|
||||||
disabled,
|
console.log(info.file, info.fileList)
|
||||||
signOut,
|
}
|
||||||
processStartHandle,
|
|
||||||
upLoadUrl,
|
if (info.file.status === 'done') {
|
||||||
// baseURL,
|
message.success(`${info.file.name} 文件上传成功`)
|
||||||
applicationSceneOpthion,
|
formName.enclosure = info.file.response.data
|
||||||
}
|
} else if (info.file.status === 'error') {
|
||||||
},
|
message.error(`${info.file.name} 文件上传失败`)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const fileList = ref([])
|
||||||
|
const processStartHandle = () => {
|
||||||
|
let detailsField = ''
|
||||||
|
if (formName.detailsField.length > 0) {
|
||||||
|
formName.detailsField.map((item) => {
|
||||||
|
detailsField += item + ';'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// copy传参
|
||||||
|
let _postData = JSON.parse(JSON.stringify(formName))
|
||||||
|
_postData.detailsField = detailsField
|
||||||
|
|
||||||
|
if (id.value) {
|
||||||
|
updateDemandForm(_postData).then((upres) => {
|
||||||
|
if (upres.data.code == 0) {
|
||||||
|
relaunch({ data: _postData, taskId: taskId.value }).then(
|
||||||
|
(res) => {
|
||||||
|
console.log('驳回================>', res)
|
||||||
|
if (res.data.code == 0) {
|
||||||
|
message.success('重新发起流程成功!')
|
||||||
|
window.setTimeout(() => {
|
||||||
|
window.close()
|
||||||
|
}, 1000)
|
||||||
|
} else {
|
||||||
|
message.error('重新发起流程失败!')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
message.error('数据更新失败!')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
formRef.value.validate().then((valid) => {
|
||||||
|
const detString = String(_postData.detailsField)
|
||||||
|
_postData.detailsField = detString
|
||||||
|
console.log(detString, _postData.detailsField, 'detString')
|
||||||
|
demandApply(_postData).then((res) => {
|
||||||
|
applySuccess.value = false
|
||||||
|
message.success('操作成功!')
|
||||||
|
console.log('能力申请================>', res)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
formRef,
|
||||||
|
formName,
|
||||||
|
fileList,
|
||||||
|
headers: {
|
||||||
|
authorization: 'authorization-text',
|
||||||
|
},
|
||||||
|
handleChange,
|
||||||
|
applySuccess,
|
||||||
|
disabled,
|
||||||
|
signOut,
|
||||||
|
processStartHandle,
|
||||||
|
upLoadUrl,
|
||||||
|
// baseURL,
|
||||||
|
applicationSceneOpthion,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
</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%;
|
||||||
margin: 90px auto 0;
|
margin: 90px auto 0;
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
|
|
||||||
aside {
|
|
||||||
width: 282px;
|
|
||||||
height: 96%;
|
|
||||||
overflow-y: auto;
|
|
||||||
background-color: #fff;
|
|
||||||
margin: 1% 0 3%;
|
|
||||||
}
|
|
||||||
|
|
||||||
article {
|
|
||||||
width: 1090px;
|
|
||||||
height: 99%;
|
|
||||||
overflow-y: auto;
|
|
||||||
background-color: #fff;
|
|
||||||
margin: 5% auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-container {
|
|
||||||
padding: 20px 20px 30px 20px;
|
|
||||||
|
|
||||||
.title {
|
|
||||||
font-size: 20px;
|
|
||||||
color: #000;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.base-info {
|
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
justify-content: space-between;
|
||||||
|
|
||||||
:deep(.ant-form-item-label) {
|
aside {
|
||||||
label {
|
width: 282px;
|
||||||
color: #666;
|
height: 96%;
|
||||||
font-size: 16px;
|
overflow-y: auto;
|
||||||
|
background-color: #fff;
|
||||||
|
margin: 1% 0 3%;
|
||||||
|
}
|
||||||
|
|
||||||
&::after {
|
article {
|
||||||
content: '';
|
width: 1090px;
|
||||||
|
height: 99%;
|
||||||
|
overflow-y: auto;
|
||||||
|
background-color: #fff;
|
||||||
|
margin: 5% auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-container {
|
||||||
|
padding: 20px 20px 30px 20px;
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 20px;
|
||||||
|
color: #000;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
:deep(.ant-form-item-required) {
|
.base-info {
|
||||||
&::before {
|
display: flex;
|
||||||
font-size: 8px;
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
:deep(.ant-input) {
|
|
||||||
border: 1px solid #e0e0e0;
|
|
||||||
border-radius: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.success {
|
|
||||||
div {
|
|
||||||
width: 100px;
|
|
||||||
margin: 80px auto 40px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
text-align: center;
|
:deep(.ant-form-item-label) {
|
||||||
font-size: 20px;
|
label {
|
||||||
font-weight: bold;
|
color: #666;
|
||||||
color: #000;
|
font-size: 16px;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-form-item-required) {
|
||||||
|
&::before {
|
||||||
|
font-size: 8px;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-input) {
|
||||||
|
border: 1px solid #e0e0e0;
|
||||||
|
border-radius: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.success {
|
||||||
|
div {
|
||||||
|
width: 100px;
|
||||||
|
margin: 80px auto 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
text-align: center;
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
<style>
|
<style>
|
||||||
body,
|
body,
|
||||||
html {
|
html {
|
||||||
height: unset;
|
height: unset;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue