Browse Source

去掉考核指标列表异议字段

dev-xx
马远东 1 year ago
parent
commit
10cc11a0c4
  1. 22
      src/option/supervise/supervise.js
  2. 8
      src/views/supervise/IndicatorList.vue

22
src/option/supervise/supervise.js

@ -321,17 +321,17 @@ export const IndicatorColumnList = [
head: false,
},
{
prop: 'isObjection',
label: '是否存在异议', //1 表示提交 2 表示审核 通过 3 表示审核失败
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
// {
// prop: 'isObjection',
// label: '是否存在异议',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// head: false,
// },
// {
// prop: 'objectionRemark',
// label: '异议备注',

8
src/views/supervise/IndicatorList.vue

@ -494,7 +494,7 @@ const onLoad = () => {
res.data.data.records.forEach(item => {
if (item.indicatorsStatus == 1) {
item.indicatorsStatus = '提交';
item.indicatorsStatus = '提交';
} else if (item.indicatorsStatus == 2) {
item.indicatorsStatus = '已确认';
} else if (item.indicatorsStatus == 3) {
@ -880,11 +880,11 @@ const ClassificationIndicatorView = val => {
lassificationform.value = res.data.data; //
// 1 2 3
if (res.data.data.indicatorsStatus == 1) {
lassificationform.value.indicatorsStatus = '提交';
lassificationform.value.indicatorsStatus = '提交';
} else if (res.data.data.indicatorsStatus == 2) {
lassificationform.value.indicatorsStatus = '审核通过';
lassificationform.value.indicatorsStatus = '已确认';
} else if (res.data.data.indicatorsStatus == 3) {
lassificationform.value.indicatorsStatus = '审核失败';
lassificationform.value.indicatorsStatus = '未确认';
}
// 0 1

Loading…
Cancel
Save