对接任务清单认证进度
This commit is contained in:
@@ -115,9 +115,9 @@
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div slot="CurrentProjectStatusEvaluation" slot-scope="text,result">
|
<div slot="CurrentProjectStatusEvaluation" slot-scope="text,result">
|
||||||
<div class="Current-color box-content-cou" :style="{'background':CurrentColor[result.conditionAssessment]}"
|
<div class="Current-color box-content-cou" :style="{'background':CurrentColor[result.projectStatusAssess]}"
|
||||||
@click="CurrentProjectClick(result)">
|
@click="CurrentProjectClick(result)">
|
||||||
<div class="Current-color-box" :style="{'background':CurrentColorBox[result.conditionAssessment]}"></div>
|
<div class="Current-color-box" :style="{'background':CurrentColorBox[result.projectStatusAssess]}"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</a-table>
|
</a-table>
|
||||||
|
|||||||
@@ -58,17 +58,17 @@
|
|||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
v-model="formInline.conditionAssessment"
|
v-model="formInline.conditionAssessment"
|
||||||
:placeholder="$t('PleaseSelect')+$t('CurrentProjectStatusEvaluation')">
|
:placeholder="$t('PleaseSelect')+$t('CurrentProjectStatusEvaluation')">
|
||||||
<a-select-option :key="1" :value="1">
|
<a-select-option :value="'1'">
|
||||||
<span style="display: inline-block;width: 100%">
|
<span style="display: inline-block;width: 100%">
|
||||||
{{ $t('red') }}
|
{{ $t('red') }}
|
||||||
</span>
|
</span>
|
||||||
</a-select-option>
|
</a-select-option>
|
||||||
<a-select-option :key="2" :value="2">
|
<a-select-option :value="'2'">
|
||||||
<span style="display: inline-block;width: 100%">
|
<span style="display: inline-block;width: 100%">
|
||||||
{{ $t('yellow') }}
|
{{ $t('yellow') }}
|
||||||
</span>
|
</span>
|
||||||
</a-select-option>
|
</a-select-option>
|
||||||
<a-select-option :key="3" :value="3">
|
<a-select-option :value="'3'">
|
||||||
<span style="display: inline-block;width: 100%">
|
<span style="display: inline-block;width: 100%">
|
||||||
{{ $t('green') }}
|
{{ $t('green') }}
|
||||||
</span>
|
</span>
|
||||||
@@ -128,6 +128,10 @@
|
|||||||
getData(val, title) {
|
getData(val, title) {
|
||||||
this.visible = true
|
this.visible = true
|
||||||
this.title = title
|
this.title = title
|
||||||
|
if (title == this.$t('CurrentProjectStatusEvaluation')) {
|
||||||
|
val.remark = val.projectStatusAssessRemark || ''
|
||||||
|
val.conditionAssessment = val.projectStatusAssess || ''
|
||||||
|
}
|
||||||
this.formInline = val
|
this.formInline = val
|
||||||
if (val.roleCode == '2' || val.roleCode == '4') {
|
if (val.roleCode == '2' || val.roleCode == '4') {
|
||||||
this.disabled = false
|
this.disabled = false
|
||||||
|
|||||||
Reference in New Issue
Block a user