提交修改

dev
dsh 12 months ago
parent 72b9d69a1e
commit 80e6df34cb

@ -81,19 +81,14 @@
</template>
<script>
import {
listAduit,
getDetail,
checkFile,
approved, applyBack
} from "@/api/reward/aduit";
import {applyBack, approved, checkFile, getDetail, listAduit} from "@/api/reward/aduit";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "aduit",
components: {CustomTable, Update},
dicts: ['rew_apply_status'],
dicts: ['rew_apply_status','rew_excellent_category'],
data() {
return {
templateType:'aduit',
@ -113,93 +108,7 @@ export default {
{text: '审核', icon: 'el-icon-edit', handler: this.handleUpdate,},
],
//
fileData: [
{
name: '办学方向',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_1',
},
{
name: '弘扬践行黄炎培职业教育思想',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_2',
},
{
name: '办学模式',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_3',
},
{
name: '专业建设',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_4',
},
{
name: '课程开发与教学改革',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_5',
},
{
name: '师资队伍建设',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_6',
},
{
name: '信息化建设',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_7',
},
{
name: '办学质量',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_8',
},
{
name: '社会服务',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_9',
},
{
name: '创新增量',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_10',
},
{
name: '盖章后的申报表',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_11',
},
{
name: '综述材料',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_12',
},
],
fileData: [],
//
loading: true,
//
@ -272,6 +181,15 @@ export default {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_excellent_category.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//

@ -135,19 +135,14 @@
</template>
<script>
import {
listApply,
getDetail,
getApplyId,
updateApply,
delApply, listFile
} from "@/api/reward/apply";
import {delApply, getApplyId, getDetail, listApply, updateApply} from "@/api/reward/apply";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "apply",
components: {CustomTable,Update},
dicts: ['rew_apply_status'],
dicts: ['rew_apply_status','rew_excellent_category'],
data() {
return {
templateType:'apply',
@ -169,93 +164,7 @@ export default {
{ text: '退回意见', icon: 'el-icon-s-comment', handler: this.applyMsg,}
],
//
fileData:[
{
name: '办学方向',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_category_1',
},
{
name: '弘扬践行黄炎培职业教育思想',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_category_2',
},
{
name: '办学模式',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_category_3',
},
{
name: '专业建设',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_category_4',
},
{
name: '课程开发与教学改革',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_category_5',
},
{
name: '师资队伍建设',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_category_6',
},
{
name: '信息化建设',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_category_7',
},
{
name: '办学质量',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_category_8',
},
{
name: '社会服务',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_category_9',
},
{
name: '创新增量',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_category_10',
},
{
name: '盖章后的申报表',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_category_11',
},
{
name: '综述材料',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_category_12',
},
],
fileData:[],
//
loading: true,
//
@ -332,6 +241,15 @@ export default {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_excellent_category.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
@ -388,7 +306,6 @@ export default {
this.isShowButton = false
getDetail(applyId).then(response => {
this.form = response.data;
console.log(this.form)
this.editOpen = true;
this.isReadOnly = true
this.isView = false

@ -118,17 +118,14 @@
</template>
<script>
import {
getDetail,
applyBack, listScore, getScoreInfo, scoreSave
} from "@/api/reward/score";
import {applyBack, getDetail, getScoreInfo, listScore, scoreSave} from "@/api/reward/score";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "score",
components: {CustomTable, Update},
dicts: ['rew_apply_status'],
dicts: ['rew_apply_status','rew_excellent_category'],
data() {
return {
scoreData:[],
@ -150,93 +147,7 @@ export default {
{text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,},
],
//
fileData: [
{
name: '办学方向',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_1',
},
{
name: '弘扬践行黄炎培职业教育思想',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_2',
},
{
name: '办学模式',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_3',
},
{
name: '专业建设',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_4',
},
{
name: '课程开发与教学改革',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_5',
},
{
name: '师资队伍建设',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_6',
},
{
name: '信息化建设',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_7',
},
{
name: '办学质量',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_8',
},
{
name: '社会服务',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_9',
},
{
name: '创新增量',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_10',
},
{
name: '盖章后的申报表',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_11',
},
{
name: '综述材料',
status: '',
expanded: false,
childrenList: [],
fileCode: 'rew_excellent_category_12',
},
],
fileData: [],
//
loading: true,
//
@ -323,6 +234,15 @@ export default {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_excellent_category.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//

@ -93,7 +93,7 @@ import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "aduit",
components: {CustomTable, Update},
dicts: ['rew_apply_status'],
dicts: ['rew_apply_status','rew_excellent_training'],
data() {
return {
templateType:'aduit',
@ -113,71 +113,7 @@ export default {
{text: '审核', icon: 'el-icon-edit', handler: this.handleUpdate,},
],
//
fileData:[
{
name: '办学方向',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_1',
},
{
name: '弘扬践行黄炎培职业教育思想',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_2',
},
{
name: '培训条件和培训资源开发',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_3',
},
{
name: '管理水平',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_4',
},
{
name: '培训效果',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_5',
},
{
name: '社会服务',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_6',
},
{
name: '创新增量',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_7',
},
{
name: '盖章后的申报表',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_8',
},
{
name: '综述材料',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_9',
}
],
fileData:[],
//
loading: true,
//
@ -250,6 +186,15 @@ export default {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_excellent_training.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//

@ -147,7 +147,7 @@ import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "apply",
components: {CustomTable,Update},
dicts: ['rew_apply_status'],
dicts: ['rew_apply_status','rew_excellent_training'],
data() {
return {
templateType:'apply',
@ -169,71 +169,7 @@ export default {
{ text: '退回意见', icon: 'el-icon-s-comment', handler: this.applyMsg,}
],
//
fileData:[
{
name: '办学方向',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_1',
},
{
name: '弘扬践行黄炎培职业教育思想',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_2',
},
{
name: '培训条件和培训资源开发',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_3',
},
{
name: '管理水平',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_4',
},
{
name: '培训效果',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_5',
},
{
name: '社会服务',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_6',
},
{
name: '创新增量',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_7',
},
{
name: '盖章后的申报表',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_8',
},
{
name: '综述材料',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_9',
}
],
fileData:[],
//
loading: true,
//
@ -311,6 +247,15 @@ export default {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_excellent_training.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//

@ -128,7 +128,7 @@ import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "score",
components: {CustomTable, Update},
dicts: ['rew_apply_status'],
dicts: ['rew_apply_status','rew_excellent_training'],
data() {
return {
scoreData:[],
@ -150,71 +150,7 @@ export default {
{text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,},
],
//
fileData:[
{
name: '办学方向',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_1',
},
{
name: '弘扬践行黄炎培职业教育思想',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_2',
},
{
name: '培训条件和培训资源开发',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_3',
},
{
name: '管理水平',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_4',
},
{
name: '培训效果',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_5',
},
{
name: '社会服务',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_6',
},
{
name: '创新增量',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_7',
},
{
name: '盖章后的申报表',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_8',
},
{
name: '综述材料',
status: '',
expanded: false,
childrenList: [],
fileCode:'rew_excellent_training_9',
}
],
fileData:[],
//
loading: true,
//
@ -301,6 +237,15 @@ export default {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_excellent_training.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//

Loading…
Cancel
Save