Commit 89a83302 authored by wangxl's avatar wangxl

www

parent ca2873e6
......@@ -209,7 +209,8 @@ export default {
score19: { required: true, message: "*", trigger: "blur" },
additionalScore: { required: true, message: "*", trigger: "blur" },
recommendFunding: { required: true, message: "*", trigger: "blur" },
supportState: { required: true, message: "请选择是否支持立项", trigger: "blur" },
supportState: { required: true, message: "请选择是否推荐立项", trigger: "change" },
noSupportReason: { required: true, message: "请填写不推荐原因", trigger: "blur" },
evaluationType: { required: true, message: "*", trigger: "change" },
},
projectInfo: {
......
......@@ -15,25 +15,25 @@
</td>
<td style="text-align: center;">
<a-form-model-item :prop="'score' + item.order" v-if="item.order==1">
<a-input-number v-model="value.score1" :min="0" :max="item.score" style="width: 60%" />
<a-input-number v-model="value.score1" :min="0" :max="item.score" style="width: 60%" disabled="true" />
</a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==2">
<a-input-number v-model="value.score2" :min="0" :max="item.score" style="width: 60%" />
<a-input-number v-model="value.score2" :min="0" :max="item.score" style="width: 60%" disabled="true" />
</a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==3">
<a-input-number v-model="value.score3" :min="0" :max="item.score" style="width: 60%" />
<a-input-number v-model="value.score3" :min="0" :max="item.score" style="width: 60%" disabled="true" />
</a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==4">
<a-input-number v-model="value.score4" :min="0" :max="item.score" style="width: 60%" />
<a-input-number v-model="value.score4" :min="0" :max="item.score" style="width: 60%" disabled="true" />
</a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==5">
<a-input-number v-model="value.score5" :min="0" :max="item.score" style="width: 60%" />
<a-input-number v-model="value.score5" :min="0" :max="item.score" style="width: 60%" disabled="true" />
</a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==6">
<a-input-number v-model="value.score6" :min="0" :max="item.score" style="width: 60%" />
<a-input-number v-model="value.score6" :min="0" :max="item.score" style="width: 60%" disabled="true" />
</a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==7">
<a-input-number v-model="value.score7" :min="0" :max="item.score" style="width: 60%" />
<a-input-number v-model="value.score7" :min="0" :max="item.score" style="width: 60%" disabled="true" />
</a-form-model-item>
</td>
</tr>
......@@ -42,7 +42,7 @@
<td colspan="2" style="text-align: left;padding-left: 12px;">{{Count()}}</td>
</tr>
<tr>
<td class="bg-title" style="text-align: right;">是否推荐立项支持</td>
<td class="bg-title" style="text-align: right;">是否推荐立项</td>
<td colspan="2">
<a-form-model-item prop="supportState">
<a-radio-group v-model="value.supportState">
......@@ -52,6 +52,14 @@
</a-form-model-item>
</td>
</tr>
<tr v-if="value.supportState!=null&&value.supportState==false">
<td class="bg-title" style="text-align: right;">不推荐原因</td>
<td colspan="2">
<a-form-model-item prop="noSupportReason">
<a-textarea placeholder="不推荐原因" v-model="value.noSupportReason" :maxLength="1000" style="width: 80%; height: 120px; margin-top: 6px" />
</a-form-model-item>
</td>
</tr>
<tr>
<td class="bg-title" style="text-align: right;">评审结果</td>
<td colspan="2">
......@@ -68,7 +76,7 @@
<td class="bg-title" style="text-align: right;">评审意见(是否存在科研被信问题?该项目存在的问题和不足及意见建议)</td>
<td colspan="2">
<a-form-model-item prop="remark">
<a-textarea placeholder="评审意见" v-model="value.remark" :maxLength="1000" style="width: 80%; height: 120px; margin-top: 6px" />
<a-textarea placeholder="评审意见" v-model="value.remark" :maxLength="1000" style="width: 80%; height: 120px; margin-top: 6px" disabled="true" />
</a-form-model-item>
</td>
</tr>
......
......@@ -24,12 +24,18 @@
</td>
</tr>
<tr>
<td class="bg-title" style="text-align: right;">是否推荐立项支持</td>
<td class="bg-title" style="text-align: right;">是否推荐立项</td>
<td colspan="2">
<a-tag :color="'#87d068'" v-if="value.supportState==1"></a-tag>
<a-tag :color="'#f50'" v-if="value.supportState==0"></a-tag>
</td>
</tr>
<tr v-if="value.supportState!=null&&value.supportState==false">
<td style="text-align: right;">不推荐原因</td>
<td colspan="2" style="text-align: left;">
<div v-html="toTextarea(value.noSupportReason)"></div>
</td>
</tr>
<tr>
<td class="bg-title" style="text-align: right;">评审结果</td>
<td colspan="2">
......
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