Commit 5b9364e2 authored by wangxl's avatar wangxl

3333

parent adf3195a
...@@ -222,6 +222,7 @@ export default { ...@@ -222,6 +222,7 @@ export default {
}).catch(() => { this.loading = false }) }).catch(() => { this.loading = false })
}, },
submit () { submit () {
console.log(this.formData)
if (!!!this.formData.specList || this.formData.specList.length == 0) { if (!!!this.formData.specList || this.formData.specList.length == 0) {
this.$message.error('请选择评审专业!') this.$message.error('请选择评审专业!')
return false return false
......
...@@ -26,38 +26,58 @@ ...@@ -26,38 +26,58 @@
</a-row> </a-row>
<div v-for="(item, index) in budget" :key="'budget' + index" class="row_center"> <div v-for="(item, index) in budget" :key="'budget' + index" class="row_center">
<a-row v-if="item.type ==='count'"> <a-row v-if="item.type ==='count'" type="flex">
<a-col :span="6" :style="'text-align: left;padding-left:'+left(item.level)+'px'"> <a-col :span="6" :style="'text-align: left;padding-left:'+left(item.level)+'px'">
{{item.budgetName}} <div class="special-middle">
{{item.budgetName}}
</div>
</a-col> </a-col>
<a-col :span="3"> <a-col :span="3">
{{Count(item.source,'totalBudget',index)}} <div class="special-middle">
{{Count(item.source,'totalBudget',index)}}
</div>
</a-col> </a-col>
<a-col :span="5"> <a-col :span="5">
<span v-if="!!!item.show||item.show === 'applyFunds'">{{Count(item.source,'applyFunds',index)}}</span> <div class="special-middle">
<span v-if="!!!item.code||item.code === 'applyFunds'">{{Count(item.source,'applyFunds',index)}}</span>
</div>
</a-col> </a-col>
<a-col :span="5"> <a-col :span="5">
{{Count(item.source,'selfFunds',index)}} <div class="special-middle">
{{Count(item.source,'selfFunds',index)}}
</div>
</a-col> </a-col>
<a-col :span="5"> <a-col :span="5">
<a-input v-model="item.calculationBasis" :maxLength="100" style="width: 80%;" /> <div class="special-middle">
<a-input v-model="item.calculationBasis" :maxLength="100" style="width: 80%;" />
</div>
</a-col> </a-col>
</a-row> </a-row>
<a-row v-else> <a-row v-else type="flex">
<a-col :span="6" :style="'text-align: left;padding-left:'+left(item.level)+'px'"> <a-col :span="6" :style="'text-align: left;padding-left:'+left(item.level)+'px'">
{{item.budgetName}} <div class="special-middle">
{{item.budgetName}}
</div>
</a-col> </a-col>
<a-col :span="3"> <a-col :span="3">
{{Count1(index, item.applyFunds, item.selfFunds)}} <div class="special-middle">
{{Count1(index, item.applyFunds, item.selfFunds)}}
</div>
</a-col> </a-col>
<a-col :span="5"> <a-col :span="5">
<a-input-number v-model="item.applyFunds" :min="0" :step="0.01" style="width: 80%" v-if="!!!item.show||item.show === 'applyFunds'" /> <div class="special-middle">
<a-input-number v-model="item.applyFunds" :min="0" :step="0.01" style="width: 80%" v-if="!!!item.code||item.code === 'applyFunds'" />
</div>
</a-col> </a-col>
<a-col :span="5"> <a-col :span="5">
<a-input-number v-model="item.selfFunds" :min="0" :step="0.01" style="width: 80%" v-if="!!!item.show||item.show === 'selfFunds'" /> <div class="special-middle">
<a-input-number v-model="item.selfFunds" :min="0" :step="0.01" style="width: 80%" v-if="!!!item.code||item.code === 'selfFunds'" />
</div>
</a-col> </a-col>
<a-col :span="5"> <a-col :span="5">
<a-input v-model="item.calculationBasis" :maxLength="100" style="width: 80%;" /> <div class="special-middle">
<a-input v-model="item.calculationBasis" :maxLength="100" style="width: 80%;" />
</div>
</a-col> </a-col>
</a-row> </a-row>
</div> </div>
...@@ -70,16 +90,16 @@ export default { ...@@ -70,16 +90,16 @@ export default {
name: "fundEdit", name: "fundEdit",
data () { data () {
return { return {
budget: budgetList()
}; };
}, },
props: { props: {
// budget: { budget: {
// type: Array, type: Array,
// default: () => { default: () => {
// return [] return []
// } }
// }, },
}, },
created () { created () {
}, },
...@@ -106,18 +126,24 @@ export default { ...@@ -106,18 +126,24 @@ export default {
} }
}, },
Count1 (index, applyFunds, selfFunds) { Count1 (index, applyFunds, selfFunds) {
this.budget[index].totalBudget = (applyFunds + selfFunds).toFixed(2) let apply = 0.00
return (applyFunds + selfFunds).toFixed(2) let self = 0.00
if (!!applyFunds)
apply = applyFunds
if (!!selfFunds)
self = selfFunds
this.budget[index].totalBudget = (apply + self).toFixed(2)
return (apply + self).toFixed(2)
}, },
left (l) { left (l) {
switch (l) { switch (l) {
case 1: case '1':
return 4; return 4;
case 2: case '2':
return 12; return 12;
case 3: case '3':
return 20; return 20;
case 4: case '4':
return 30; return 30;
} }
return 0; return 0;
......
...@@ -11,7 +11,7 @@ const budgetList = () => { ...@@ -11,7 +11,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "一、资金来源合计", budgetName: "一、资金来源合计",
source: [1, 2], source: [1, 2],
show: null, code: null,
type: 'count' type: 'count'
}, },
{ {
...@@ -25,7 +25,7 @@ const budgetList = () => { ...@@ -25,7 +25,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "(一)财政资金", budgetName: "(一)财政资金",
source: null, source: null,
show: 'applyFunds', code: 'applyFunds',
type: 'ins' type: 'ins'
}, },
{ {
...@@ -39,7 +39,7 @@ const budgetList = () => { ...@@ -39,7 +39,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "(二)自筹资金", budgetName: "(二)自筹资金",
source: [3, 4, 5, 6], source: [3, 4, 5, 6],
show: 'selfFunds', code: 'selfFunds',
type: 'count' type: 'count'
}, },
{ {
...@@ -53,7 +53,7 @@ const budgetList = () => { ...@@ -53,7 +53,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "1.承担单位自有货币资金", budgetName: "1.承担单位自有货币资金",
source: null, source: null,
show: 'selfFunds', code: 'selfFunds',
type: 'ins' type: 'ins'
}, },
{ {
...@@ -67,7 +67,7 @@ const budgetList = () => { ...@@ -67,7 +67,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "2.从银行获得的贷款", budgetName: "2.从银行获得的贷款",
source: null, source: null,
show: 'selfFunds', code: 'selfFunds',
type: 'ins' type: 'ins'
}, },
{ {
...@@ -81,7 +81,7 @@ const budgetList = () => { ...@@ -81,7 +81,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "3.其他财政拨款", budgetName: "3.其他财政拨款",
source: null, source: null,
show: 'selfFunds', code: 'selfFunds',
type: 'ins' type: 'ins'
}, },
{ {
...@@ -95,7 +95,7 @@ const budgetList = () => { ...@@ -95,7 +95,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "4.其他资金", budgetName: "4.其他资金",
source: null, source: null,
show: 'selfFunds', code: 'selfFunds',
type: 'ins' type: 'ins'
}, },
{ {
...@@ -109,7 +109,7 @@ const budgetList = () => { ...@@ -109,7 +109,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "二、支出预算合计", budgetName: "二、支出预算合计",
source: [8, 22], source: [8, 22],
show: null, code: null,
type: 'count' type: 'count'
}, },
{ {
...@@ -123,7 +123,7 @@ const budgetList = () => { ...@@ -123,7 +123,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "(一)直接费用", budgetName: "(一)直接费用",
source: [9, 14, 15, 16, 17, 18, 19, 20, 21], source: [9, 14, 15, 16, 17, 18, 19, 20, 21],
show: null, code: null,
type: 'count' type: 'count'
}, },
{ {
...@@ -137,7 +137,7 @@ const budgetList = () => { ...@@ -137,7 +137,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "1.设备费", budgetName: "1.设备费",
source: [10, 11, 12, 13], source: [10, 11, 12, 13],
show: null, code: null,
type: 'count' type: 'count'
}, },
{ {
...@@ -151,7 +151,7 @@ const budgetList = () => { ...@@ -151,7 +151,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "(1)设备购置费", budgetName: "(1)设备购置费",
source: null, source: null,
show: null, code: null,
type: 'ins' type: 'ins'
}, },
{ {
...@@ -165,7 +165,7 @@ const budgetList = () => { ...@@ -165,7 +165,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "(2)试制设备费", budgetName: "(2)试制设备费",
source: null, source: null,
show: null, code: null,
type: 'ins' type: 'ins'
}, },
{ {
...@@ -179,7 +179,7 @@ const budgetList = () => { ...@@ -179,7 +179,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "(3)设备改造费", budgetName: "(3)设备改造费",
source: null, source: null,
show: null, code: null,
type: 'ins' type: 'ins'
}, },
{ {
...@@ -193,7 +193,7 @@ const budgetList = () => { ...@@ -193,7 +193,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "(4)设备租赁费", budgetName: "(4)设备租赁费",
source: null, source: null,
show: null, code: null,
type: 'ins' type: 'ins'
}, },
{ {
...@@ -207,7 +207,7 @@ const budgetList = () => { ...@@ -207,7 +207,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "2.材料费", budgetName: "2.材料费",
source: null, source: null,
show: null, code: null,
type: 'ins' type: 'ins'
}, },
{ {
...@@ -221,7 +221,7 @@ const budgetList = () => { ...@@ -221,7 +221,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "3.燃料动力费", budgetName: "3.燃料动力费",
source: null, source: null,
show: null, code: null,
type: 'ins' type: 'ins'
}, },
{ {
...@@ -235,7 +235,7 @@ const budgetList = () => { ...@@ -235,7 +235,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "4.测试化验加工费", budgetName: "4.测试化验加工费",
source: null, source: null,
show: null, code: null,
type: 'ins' type: 'ins'
}, },
{ {
...@@ -249,7 +249,7 @@ const budgetList = () => { ...@@ -249,7 +249,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "5.差旅费/会议费/国际合作交流费", budgetName: "5.差旅费/会议费/国际合作交流费",
source: null, source: null,
show: null, code: null,
type: 'ins' type: 'ins'
}, },
{ {
...@@ -263,7 +263,7 @@ const budgetList = () => { ...@@ -263,7 +263,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "6.劳务费", budgetName: "6.劳务费",
source: null, source: null,
show: null, code: null,
type: 'ins' type: 'ins'
}, },
{ {
...@@ -277,7 +277,7 @@ const budgetList = () => { ...@@ -277,7 +277,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "7.专家咨询费", budgetName: "7.专家咨询费",
source: null, source: null,
show: null, code: null,
type: 'ins' type: 'ins'
}, },
{ {
...@@ -291,7 +291,7 @@ const budgetList = () => { ...@@ -291,7 +291,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "8.出版/文献/信息传播/知识产权\n事务费", budgetName: "8.出版/文献/信息传播/知识产权\n事务费",
source: null, source: null,
show: null, code: null,
type: 'ins' type: 'ins'
}, },
{ {
...@@ -305,7 +305,7 @@ const budgetList = () => { ...@@ -305,7 +305,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "9.其他支出", budgetName: "9.其他支出",
source: null, source: null,
show: null, code: null,
type: 'ins' type: 'ins'
}, },
{ {
...@@ -319,7 +319,7 @@ const budgetList = () => { ...@@ -319,7 +319,7 @@ const budgetList = () => {
calculationBasis: "", calculationBasis: "",
budgetName: "(二)间接费用\r\n", budgetName: "(二)间接费用\r\n",
source: null, source: null,
show: null, code: null,
type: 'ins' type: 'ins'
} }
] ]
......
...@@ -2,103 +2,70 @@ ...@@ -2,103 +2,70 @@
<div> <div>
<a-form-model ref="form" :model="formData" :rules="rules" style="border-top: 0px" class="from-table font-line-space"> <a-form-model ref="form" :model="formData" :rules="rules" style="border-top: 0px" class="from-table font-line-space">
<div v-if="stepsArray[0].showStatus"> <div v-if="stepsArray[0].showStatus">
<a-row>
<a-col :span="24" style="border-top: 0px;text-align: center;">
<div class="main-title">
<span>项目基本情况</span>
</div>
</a-col>
</a-row>
<a-row> <a-row>
<a-col :span="24" style="border-top: 0px"> <a-col :span="24" style="border-top: 0px">
<div class="tb-title"> <div class="tb-title">
<span>申请人信息</span> <span>单位基本情况</span>
</div> </div>
</a-col> </a-col>
</a-row> </a-row>
<a-row type="flex"> <a-row type="flex">
<a-col :span="3" class="bg-gray"> <a-col :span="4" class="bg-gray">
<div class="special-middle">
<div>姓名</div>
</div>
</a-col>
<a-col :span="5">
<div class="special-middle">
<div>
<a-form-model-item>
<div>{{ formData.appPersonName }}</div>
</a-form-model-item>
</div>
</div>
</a-col>
<a-col :span="3" class="bg-gray">
<div class="special-middle">
<div>性别</div>
</div>
</a-col>
<a-col :span="5">
<div class="special-middle">
<div>
<a-form-model-item>
<div>{{ formData.sex }}</div>
</a-form-model-item>
</div>
</div>
</a-col>
<a-col :span="3" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
<div>出生日期</div> <div>单位名称</div>
</div> </div>
</a-col> </a-col>
<a-col :span="5"> <a-col :span="20">
<div class="special-middle"> <div class="special-middle">
<div> <div>
<a-form-model-item> <a-form-model-item>
{{ moment(formData.birthday).format('YYYY-MM-DD') }} <div>{{ formData.appUnitName }}</div>
</a-form-model-item> </a-form-model-item>
</div> </div>
</div> </div>
</a-col> </a-col>
</a-row> </a-row>
<a-row type="flex"> <a-row type="flex">
<a-col :span="3" class="bg-gray"> <a-col :span="4" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
<div>民族</div> <div>注册单位类型</div>
</div> </div>
</a-col> </a-col>
<a-col :span="5"> <a-col :span="8">
<div class="special-middle"> <div class="special-middle">
<div> <div>
<a-form-model-item> <a-form-model-item>
<div>{{ formData.nationName }}</div> <div>{{ formData.unitTypeName }}</div>
</a-form-model-item> </a-form-model-item>
</div> </div>
</div> </div>
</a-col> </a-col>
<a-col :span="3" class="bg-gray"> <a-col :span="4" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
<div>学位</div> <div class="required">组织机构代码/统一社会信用代码</div>
</div> </div>
</a-col> </a-col>
<a-col :span="5"> <a-col :span="8">
<div class="special-middle"> <div class="special-middle">
<div> <div>
<a-form-model-item> <a-form-model-item prop="organizationCode">
<div>{{ formData.degreeName }}</div> <a-input placeholder="组织机构代码/统一社会信用代码" v-model="formData.organizationCode" :maxLength="100" style="width:80%" />
</a-form-model-item> </a-form-model-item>
</div> </div>
</div> </div>
</a-col> </a-col>
<a-col :span="3" class="bg-gray"> </a-row>
<a-row type="flex">
<a-col :span="4" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
<div>职称</div> <div class="required">通讯地址</div>
</div> </div>
</a-col> </a-col>
<a-col :span="5"> <a-col :span="20">
<div class="special-middle"> <div class="special-middle">
<div> <div>
<a-form-model-item> <a-form-model-item prop="address">
{{ formData.titleName}} <a-input placeholder="通讯地址" v-model="formData.address" :maxLength="100" style="width:80%" />
</a-form-model-item> </a-form-model-item>
</div> </div>
</div> </div>
...@@ -107,42 +74,42 @@ ...@@ -107,42 +74,42 @@
<a-row type="flex"> <a-row type="flex">
<a-col :span="3" class="bg-gray"> <a-col :span="3" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
<div>电话</div> <div class="required">注册所在地(县/区)</div>
</div> </div>
</a-col> </a-col>
<a-col :span="5"> <a-col :span="5">
<div class="special-middle"> <div class="special-middle">
<div> <div>
<a-form-model-item> <a-form-model-item prop="registeredAddress">
<div>{{ formData.mobile }}</div> <a-input placeholder="注册所在地" v-model="formData.registeredAddress" :maxLength="100" style="width:80%" />
</a-form-model-item> </a-form-model-item>
</div> </div>
</div> </div>
</a-col> </a-col>
<a-col :span="3" class="bg-gray"> <a-col :span="3" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
<div>电子邮箱</div> <div class="required">邮编</div>
</div> </div>
</a-col> </a-col>
<a-col :span="5"> <a-col :span="5">
<div class="special-middle"> <div class="special-middle">
<div> <div>
<a-form-model-item> <a-form-model-item prop="postCode">
<div>{{ formData.email }}</div> <a-input placeholder="邮编" v-model="formData.postCode" :maxLength="10" style="width:80%" />
</a-form-model-item> </a-form-model-item>
</div> </div>
</div> </div>
</a-col> </a-col>
<a-col :span="3" class="bg-gray"> <a-col :span="3" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
<div class="required">每年工作时间(月)</div> <div class="required">法定代表人</div>
</div> </div>
</a-col> </a-col>
<a-col :span="5"> <a-col :span="5">
<div class="special-middle"> <div class="special-middle">
<div> <div>
<a-form-model-item prop="jobTime"> <a-form-model-item prop="legalPerson">
<a-input-number v-model="formData.jobTime" :min="0" :max="12" :step="1" style="width: 100px" /> <a-input placeholder="法定代表人" v-model="formData.legalPerson" :maxLength="50" style="width:80%" />
</a-form-model-item> </a-form-model-item>
</div> </div>
</div> </div>
...@@ -151,70 +118,42 @@ ...@@ -151,70 +118,42 @@
<a-row type="flex"> <a-row type="flex">
<a-col :span="3" class="bg-gray"> <a-col :span="3" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
<div class="required">个人通讯地址</div> <div class="required">职工总数</div>
</div> </div>
</a-col> </a-col>
<a-col :span="21"> <a-col :span="5">
<div class="special-middle"> <div class="special-middle">
<div> <div>
<a-form-model-item prop="address"> <a-form-model-item prop="workforce">
<a-input v-model="formData.address" placeholder="个人通讯地址(限50字)" :maxLength="50" style="width: 80%;" /> <a-input-number v-model="formData.workforce" :min="0" :step="1" style="width: 100px" />
</a-form-model-item> </a-form-model-item>
</div> </div>
</div> </div>
</a-col> </a-col>
</a-row>
<a-row type="flex">
<a-col :span="3" class="bg-gray"> <a-col :span="3" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
<div>工作单位</div> <div class="required">其中专科以上人员</div>
</div> </div>
</a-col> </a-col>
<a-col :span="21"> <a-col :span="5">
<div class="special-middle"> <div class="special-middle">
<div> <div>
<a-form-model-item> <a-form-model-item prop="specializedPersonnel">
<div>{{ formData.appUnitName }}</div> <a-input-number v-model="formData.specializedPersonnel" :min="0" :step="1" style="width: 100px" />
</a-form-model-item> </a-form-model-item>
</div> </div>
</div> </div>
</a-col> </a-col>
</a-row>
<a-row type="flex">
<a-col :span="3" class="bg-gray"> <a-col :span="3" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
<div class="required">主要研究领域</div> <div class="required">研究开发人员</div>
</div>
</a-col>
<a-col :span="21">
<div class="special-middle">
<div>
<a-form-model-item prop="mainResearchAreas">
<a-textarea placeholder="主要研究领域(限500字)" v-model="formData.mainResearchAreas" :maxLength="500" style="width: 80%; height: 160px; margin-top: 12px" />
</a-form-model-item>
</div>
</div>
</a-col>
</a-row>
<a-row>
<a-col :span="24" style="border-top: 0px">
<div class="tb-title">
<span>申请单位信息</span>
</div>
</a-col>
</a-row>
<a-row type="flex">
<a-col :span="4" class="bg-gray">
<div class="special-middle">
<div>单位名称</div>
</div> </div>
</a-col> </a-col>
<a-col :span="20"> <a-col :span="5">
<div class="special-middle"> <div class="special-middle">
<div> <div>
<a-form-model-item> <a-form-model-item prop="researchPersonnel">
<div>{{ formData.appUnitName }}</div> <a-input-number v-model="formData.researchPersonnel" :min="0" :step="1" style="width: 100px" />
</a-form-model-item> </a-form-model-item>
</div> </div>
</div> </div>
...@@ -223,28 +162,28 @@ ...@@ -223,28 +162,28 @@
<a-row type="flex"> <a-row type="flex">
<a-col :span="4" class="bg-gray"> <a-col :span="4" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
<div class="required">联系人</div> <div class="required">开户银行</div>
</div> </div>
</a-col> </a-col>
<a-col :span="8"> <a-col :span="8">
<div class="special-middle"> <div class="special-middle">
<div> <div>
<a-form-model-item prop="unitLinkName"> <a-form-model-item prop="depositBank">
<a-input placeholder="联系人(限20字)" v-model="formData.unitLinkName" :maxLength="20" style="width:80%" /> <a-input placeholder="开户银行" v-model="formData.depositBank" :maxLength="100" style="width:80%" />
</a-form-model-item> </a-form-model-item>
</div> </div>
</div> </div>
</a-col> </a-col>
<a-col :span="4" class="bg-gray"> <a-col :span="4" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
<div class="required">电话</div> <div class="required">银行账号</div>
</div> </div>
</a-col> </a-col>
<a-col :span="8"> <a-col :span="8">
<div class="special-middle"> <div class="special-middle">
<div> <div>
<a-form-model-item prop="unitLinkMobile"> <a-form-model-item prop="bankAccount">
<a-input placeholder="电话(限20字)" v-model="formData.unitLinkMobile" :maxLength="20" style="width:80%" /> <a-input placeholder="银行账号" v-model="formData.bankAccount" :maxLength="100" style="width:80%" />
</a-form-model-item> </a-form-model-item>
</div> </div>
</div> </div>
...@@ -253,28 +192,28 @@ ...@@ -253,28 +192,28 @@
<a-row type="flex"> <a-row type="flex">
<a-col :span="4" class="bg-gray"> <a-col :span="4" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
<div class="required">电子信箱</div> <div class="required">开户银行地址</div>
</div> </div>
</a-col> </a-col>
<a-col :span="8"> <a-col :span="8">
<div class="special-middle"> <div class="special-middle">
<div> <div>
<a-form-model-item prop="unitLinkEmail"> <a-form-model-item prop="depositBankAddress">
<a-input placeholder="电子信箱(限50字)" v-model="formData.unitLinkEmail" :maxLength="50" style="width:80%" /> <a-input placeholder="开户银行地址" v-model="formData.depositBankAddress" :maxLength="100" style="width:80%" />
</a-form-model-item> </a-form-model-item>
</div> </div>
</div> </div>
</a-col> </a-col>
<a-col :span="4" class="bg-gray"> <a-col :span="4" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
<div class="required">传真</div> <div class="required">银行联行号</div>
</div> </div>
</a-col> </a-col>
<a-col :span="8"> <a-col :span="8">
<div class="special-middle"> <div class="special-middle">
<div> <div>
<a-form-model-item prop="unitLinkFax"> <a-form-model-item prop="interbankNumber">
<a-input placeholder="传真(限20字)" v-model="formData.unitLinkFax" :maxLength="20" style="width:80%" /> <a-input placeholder="开户银行地址" v-model="formData.interbankNumber" :maxLength="100" style="width:80%" />
</a-form-model-item> </a-form-model-item>
</div> </div>
</div> </div>
...@@ -282,7 +221,7 @@ ...@@ -282,7 +221,7 @@
</a-row> </a-row>
<!-- 项目合作单位 --> <!-- 项目合作单位 -->
<!-- <cooperative-units-edit :cooperativeUnits.sync="formData.cooperativeUnits" /> --> <cooperative-units-edit :cooperativeUnits.sync="formData.cooperativeUnits" />
<a-row> <a-row>
<a-col :span="24" style="border-top: 0px"> <a-col :span="24" style="border-top: 0px">
...@@ -350,6 +289,66 @@ ...@@ -350,6 +289,66 @@
</a-form-model-item> </a-form-model-item>
</a-col> </a-col>
</a-row> </a-row>
<a-row type="flex">
<a-col :span="4" class="bg-gray">
<div class="special-middle">
<div class="required">联系人</div>
</div>
</a-col>
<a-col :span="8">
<div class="special-middle">
<div>
<a-form-model-item prop="unitLinkName">
<a-input placeholder="联系人" v-model="formData.unitLinkName" :maxLength="100" style="width:80%" />
</a-form-model-item>
</div>
</div>
</a-col>
<a-col :span="4" class="bg-gray">
<div class="special-middle">
<div class="required">电话</div>
</div>
</a-col>
<a-col :span="8">
<div class="special-middle">
<div>
<a-form-model-item prop="unitLinkMobile">
<a-input placeholder="电话" v-model="formData.unitLinkMobile" :maxLength="100" style="width:80%" />
</a-form-model-item>
</div>
</div>
</a-col>
</a-row>
<a-row type="flex">
<a-col :span="4" class="bg-gray">
<div class="special-middle">
<div class="required">电子信箱</div>
</div>
</a-col>
<a-col :span="8">
<div class="special-middle">
<div>
<a-form-model-item prop="unitLinkEmail">
<a-input placeholder="电子信箱" v-model="formData.unitLinkEmail" :maxLength="100" style="width:80%" />
</a-form-model-item>
</div>
</div>
</a-col>
<a-col :span="4" class="bg-gray">
<div class="special-middle">
<div class="required">传真</div>
</div>
</a-col>
<a-col :span="8">
<div class="special-middle">
<div>
<a-form-model-item prop="unitLinkFax">
<a-input placeholder="传真" v-model="formData.unitLinkFax" :maxLength="100" style="width:80%" />
</a-form-model-item>
</div>
</div>
</a-col>
</a-row>
<a-row type="flex"> <a-row type="flex">
<a-col :span="4" class="bg-gray"> <a-col :span="4" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
...@@ -401,7 +400,7 @@ ...@@ -401,7 +400,7 @@
<a-row type="flex"> <a-row type="flex">
<a-col :span="24"> <a-col :span="24">
<!-- <document-view :fileUrl="formData.downloadUrl" :fileName="formData.fileName" :imageArray="[formData.downloadUrl]"></document-view> <!-- <document-view :fileUrl="formData.downloadUrl" :fileName="formData.fileName" :imageArray="[formData.downloadUrl]"></document-view>
<preview-file v-model="formData.downloadUrl" :fileName="formData.fileName"></preview-file> --> <preview-file v-model="formData.downloadUrl" :fileName="formData.fileName"></preview-file> -->
</a-col> </a-col>
</a-row> </a-row>
<a-row> <a-row>
...@@ -580,21 +579,21 @@ ...@@ -580,21 +579,21 @@
import fundEdit from '@/views/report/project/components/fundEdit' import fundEdit from '@/views/report/project/components/fundEdit'
import documentView from '@/views/components/common/documentView'
import previewFile from '@/views/components/common/previewFile'
import { getType } from '@/views/utils/auth' import { getType } from '@/views/utils/auth'
import projectMemberEdit from '@/views/report/project/components/projectMemberEdit' import projectMemberEdit from '@/views/report/project/components/projectMemberEdit'
import cooperativeUnitsEdit from '@/views/report/project/components/cooperativeUnitsEdit' import cooperativeUnitsEdit from '@/views/report/project/components/cooperativeUnitsEdit'
import participateUnitsEdit from '@/views/report/project/components/participateUnitsEdit' import participateUnitsEdit from '@/views/report/project/components/participateUnitsEdit'
import deviceEdit from '@/views/report/project/components/deviceEdit' import deviceEdit from '@/views/report/project/components/deviceEdit'
import projStageGoalsEdit from '@/views/report/project/components/projStageGoalsEdit' import projStageGoalsEdit from '@/views/report/project/components/projStageGoalsEdit'
import budgetEdit from '@/views/report/project/components/budgetEdit' import budgetEdit from '@/views/report/project/components/fundEdit'
import fundPlanEdit from '@/views/report/project/components/fundPlanEdit' import fundPlanEdit from '@/views/report/project/components/fundPlanEdit'
import projectKpiEdit from '@/views/report/project/components/projectKpiEdit' import projectKpiEdit from '@/views/report/project/components/projectKpiEdit'
import manufactureEdit from '@/views/report/project/components/manufactureEdit' import manufactureEdit from '@/views/report/project/components/manufactureEdit'
import unitPaymentEdit from '@/views/report/project/components/unitPaymentEdit' import unitPaymentEdit from '@/views/report/project/components/unitPaymentEdit'
import projectSubEdit from '@/views/report/project/components/projectSubEdit' import projectSubEdit from '@/views/report/project/components/projectSubEdit'
import fileEdit from '@/views/report/project/components/fileEdit' import fileEdit from '@/views/report/project/components/fileEdit'
import documentView from '@/views/components/common/documentView'
import previewFile from '@/views/components/common/previewFile'
import { isEmptyParams } from "@/views/utils/common" import { isEmptyParams } from "@/views/utils/common"
import moment from 'moment' import moment from 'moment'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment