对接任务清单认证进度

This commit is contained in:
qq787203167
2022-05-12 16:44:18 +08:00
parent 348f49b1d1
commit 03fbda5658
4 changed files with 40 additions and 22 deletions
+5 -1
View File
@@ -812,5 +812,9 @@ module.exports = {
inconformity:'Non-Compliance',
toTrack:'To be tracked',
Launch:'Launch',
maintainProgress:'Maintain'
maintainProgress:'Maintain',
redSchedule:'Red: not in conformity, and there is no acceptable scheme and schedule',
yellowSchedule:'Yellow: non conformance / to be tracked, with acceptable scheme and schedule',
greenRequirements:'Green: confirm that it meets or meets the current requirements',
blueUndeterminedState:'Blue: undetermined state',
}
+5 -1
View File
@@ -817,5 +817,9 @@ module.exports = {
inconformity:'不符合',
toTrack:'待追踪',
Launch:'发起',
maintainProgress:'维护进度'
maintainProgress:'维护进度',
redSchedule:'不符合且无可接受的方案和时间表',
yellowSchedule:'不符合/待追踪有可接受的方案和时间表',
greenRequirements:'绿确认符合或满足当前要求',
blueUndeterminedState:'未判断状态',
}
@@ -523,7 +523,7 @@
height: 28px;
line-height: 32px;
text-align: center;
background: #dcf7e3;
background: #ddf3f4;
border-radius: 50%;
}
@@ -531,7 +531,7 @@
display: inline-block;
width: 14px;
height: 14px;
background: #26BD4B;
background: #00B3BE;
border-radius: 50%;
}
@@ -1,7 +1,7 @@
<template>
<a-modal
:title="title"
:width="600"
:width="700"
:visible="visible"
:confirm-loading="confirmLoading"
:maskClosable="false"
@@ -10,10 +10,15 @@
>
<a-form-model :model="formInline" class="formAdd" :rules="rules" ref="ruleForm">
<a-row :gutter="24">
<div class="headerText" v-if="title == $t('CurrentProjectStatusEvaluation')">
{{this.$t('redSchedule')}}<br/>
{{this.$t('yellowSchedule')}}<br/>
{{this.$t('greenRequirements')}}<br/>
{{this.$t('blueUndeterminedState')}}
</div>
<a-col :span="24" v-if="title == $t('CertificationProgress')">
<div class="box-title-text">
<div class="title-text">
<span class="Required" v-if="!disabled">*</span>
<span class="title-text-text"
:title="$t('CertificationProgress')">{{$t('CertificationProgress')}}</span>
</div>
@@ -30,7 +35,6 @@
<a-col :span="24" v-if="title == $t('CertificationProgress')">
<div class="box-title-text">
<div class="title-text">
<span class="Required" v-if="!disabled">*</span>
<span class="title-text-text"
:title="$t('remarks')">{{$t('remarks')}}</span>
</div>
@@ -46,32 +50,33 @@
<a-col :span="24" v-if="title == $t('CurrentProjectStatusEvaluation')">
<div class="box-title-text">
<div class="title-text">
<span class="Required">*</span>
<span class="title-text-text"
:title="$t('CurrentProjectStatusEvaluation')">{{$t('CurrentProjectStatusEvaluation')}}</span>
</div>
<a-form-model-item class="itemModel" prop="remarks">
<a-select :placeholder="$t('PleaseSelect')+$t('CurrentProjectStatusEvaluation')">
<a-select
:disabled="disabled"
:placeholder="$t('PleaseSelect')+$t('CurrentProjectStatusEvaluation')">
<a-select-option :key="1" :value="1">
<span style="display: inline-block;width: 100%">
{{ $t('green') }}
</span>
</a-select-option>
<a-select-option :key="2" :value="2">
<span style="display: inline-block;width: 100%">
{{ $t('red') }}
</span>
</a-select-option>
<a-select-option :key="3" :value="3">
<span style="display: inline-block;width: 100%">
{{ $t('blue') }}
</span>
</a-select-option>
<a-select-option :key="4" :value="4">
<a-select-option :key="2" :value="2">
<span style="display: inline-block;width: 100%">
{{ $t('yellow') }}
</span>
</a-select-option>
<a-select-option :key="3" :value="3">
<span style="display: inline-block;width: 100%">
{{ $t('green') }}
</span>
</a-select-option>
<!-- <a-select-option :key="3" :value="3">-->
<!-- <span style="display: inline-block;width: 100%">-->
<!-- {{ $t('blue') }}-->
<!-- </span>-->
<!-- </a-select-option>-->
</a-select>
</a-form-model-item>
</div>
@@ -80,14 +85,13 @@
<a-col :span="24" v-if="title == $t('CurrentProjectStatusEvaluation')">
<div class="box-title-text">
<div class="title-text">
<span class="Required">*</span>
<span class="title-text-text"
:title="$t('remarks')">{{$t('remarks')}}</span>
</div>
<a-form-model-item class="itemModel" prop="remarks">
<a-textarea
:placeholder="$t('remarks')"
:disabled="false"
:disabled="disabled"
v-model="formInline.remark" :rows="4"/>
</a-form-model-item>
</div>
@@ -209,4 +213,10 @@
.title-text-text {
margin-top: 9px;
}
.headerText {
margin-left: 30px;
color: #040B29;
font-weight: 400;
}
</style>