1.季度审核修改,部门主任评级取消驳回节点
2.季度审核去掉管理员可以修改评分权限
This commit is contained in:
parent
ce9becf8a0
commit
956773ff5e
@ -36,7 +36,7 @@
|
|||||||
<div style="text-align: right" >
|
<div style="text-align: right" >
|
||||||
<el-button type="primary" @click="cancel()">返回</el-button>
|
<el-button type="primary" @click="cancel()">返回</el-button>
|
||||||
<el-button type="primary" @click="addExpApply(0)" v-if="verifyStatus==1">审核</el-button>
|
<el-button type="primary" @click="addExpApply(0)" v-if="verifyStatus==1">审核</el-button>
|
||||||
<el-button type="warning" @click="addExpApply(1)" v-if="verifyStatus==1">驳回</el-button>
|
<el-button type="warning" @click="addExpApply(1)" v-if="verifyStatus==1 && taskName!='部门主任评级'">驳回</el-button>
|
||||||
</div>
|
</div>
|
||||||
<data-table
|
<data-table
|
||||||
:totalColumnsData="tableColumnsData"
|
:totalColumnsData="tableColumnsData"
|
||||||
@ -87,6 +87,7 @@ export default {
|
|||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
taskName:'',
|
||||||
tableLoading: true,
|
tableLoading: true,
|
||||||
recordsData: [],
|
recordsData: [],
|
||||||
tableColumnsRecordData: [],
|
tableColumnsRecordData: [],
|
||||||
@ -305,7 +306,9 @@ export default {
|
|||||||
}
|
}
|
||||||
this.tableRowsData.push(project)
|
this.tableRowsData.push(project)
|
||||||
this.tableTotalPage = result.data.total
|
this.tableTotalPage = result.data.total
|
||||||
|
if(project.ext.taskName=="部门主任评级"){
|
||||||
|
this.taskName=project.ext.taskName
|
||||||
|
}
|
||||||
for (let i = 0; i < project.ext.quarterRecord.ls.length; i++) {
|
for (let i = 0; i < project.ext.quarterRecord.ls.length; i++) {
|
||||||
let record = project.ext.quarterRecord.ls[i].taskItems;
|
let record = project.ext.quarterRecord.ls[i].taskItems;
|
||||||
for (let j = 0; j < record.length; j++) {
|
for (let j = 0; j < record.length; j++) {
|
||||||
|
@ -105,7 +105,7 @@
|
|||||||
class="form-input"
|
class="form-input"
|
||||||
placeholder="战略规划部部门主任才能打分"
|
placeholder="战略规划部部门主任才能打分"
|
||||||
v-model.number="formModel.strategyScoring"
|
v-model.number="formModel.strategyScoring"
|
||||||
:disabled="isStrategy ||verifyStatus===2 ||isAdmin"
|
:disabled="isStrategy ||verifyStatus===2 "
|
||||||
type="number"
|
type="number"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
@ -115,7 +115,7 @@
|
|||||||
class="form-input"
|
class="form-input"
|
||||||
placeholder="平台建设部部门主任才能打分"
|
placeholder="平台建设部部门主任才能打分"
|
||||||
v-model="formModel.platformScoring"
|
v-model="formModel.platformScoring"
|
||||||
:disabled="isPlatform ||verifyStatus==2 ||isAdmin"
|
:disabled="isPlatform ||verifyStatus==2 "
|
||||||
type="number"
|
type="number"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
@ -125,7 +125,7 @@
|
|||||||
class="form-input"
|
class="form-input"
|
||||||
placeholder="市场发展部部门主任才能打分"
|
placeholder="市场发展部部门主任才能打分"
|
||||||
v-model="formModel.marketScoring"
|
v-model="formModel.marketScoring"
|
||||||
:disabled="isMarket ||verifyStatus==2 ||isAdmin"
|
:disabled="isMarket ||verifyStatus==2 "
|
||||||
type="number"
|
type="number"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
class="form-input"
|
class="form-input"
|
||||||
placeholder="服务产品部部门主任才能打分"
|
placeholder="服务产品部部门主任才能打分"
|
||||||
v-model="formModel.serviceScoring"
|
v-model="formModel.serviceScoring"
|
||||||
:disabled="isService ||verifyStatus==2 ||isAdmin"
|
:disabled="isService ||verifyStatus==2 "
|
||||||
type="number"
|
type="number"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user