提交修改

dev-captcha
dshclm 10 months ago
parent 152064fa1d
commit 3d50e49525

@ -26,7 +26,7 @@
<el-table-column v-if="isShowUploadButton"> <el-table-column v-if="isShowUploadButton">
</el-table-column> </el-table-column>
<el-table-column label="审核状态" align="center" > <el-table-column label="审核状态" v-if="modalType !=='score'" align="center" >
<template slot-scope="scope" class="button-cell" > <template slot-scope="scope" class="button-cell" >
<el-tag v-if="scope.row.state === 1" type="success"></el-tag> <el-tag v-if="scope.row.state === 1" type="success"></el-tag>
<el-tag v-else-if="scope.row.state === 2" type="warning">不通过</el-tag> <el-tag v-else-if="scope.row.state === 2" type="warning">不通过</el-tag>
@ -40,6 +40,9 @@
<el-button size="small" type="text" icon="el-icon-close" @click="filePassMethod(scope.row,'nopass')" v-if="templateType==='aduit'"></el-button> <el-button size="small" type="text" icon="el-icon-close" @click="filePassMethod(scope.row,'nopass')" v-if="templateType==='aduit'"></el-button>
<el-button size="small" type="text" icon="el-icon-delete" @click="deleteHandle(scope.row.fileId,scope)" v-if="templateType==='apply'"></el-button> <el-button size="small" type="text" icon="el-icon-delete" @click="deleteHandle(scope.row.fileId,scope)" v-if="templateType==='apply'"></el-button>
</template> </template>
<template slot-scope="scope" v-else-if="isShowButton && templateType ==='applyView'">
<el-button size="small" type="text" icon="el-icon-download" @click="downloadFile(scope.row.fileId,scope.row.name)"></el-button>
</template>
</el-table-column> </el-table-column>
</el-table> </el-table>
</template> </template>
@ -61,10 +64,18 @@
</el-upload> </el-upload>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="状态" prop="status"> <el-table-column label="状态" v-if="modalType === 'aduit' && dialogType!=='view'" prop="status">
<template v-slot:default="scope">
<el-tag v-if="scope.row.childrenList.length === 0" type="warning"></el-tag>
<el-tag v-else-if="checkAllUploaded(scope.row.childrenList)" type="success">已审核</el-tag>
<el-tag v-else type="warning">未审核</el-tag>
</template>
</el-table-column>
<el-table-column label="状态" v-if="modalType === 'apply'" prop="status">
<template v-slot:default="scope"> <template v-slot:default="scope">
<el-tag v-if="scope.row.childrenList.length === 0" type="warning"></el-tag> <el-tag v-if="scope.row.childrenList.length === 0" type="warning"></el-tag>
<el-tag v-else type="success">已上传</el-tag> <el-tag v-else-if="checkAllUploaded(scope.row.childrenList)" type="success">已上传</el-tag>
<el-tag v-else type="warning">已上传</el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作"> <el-table-column label="操作">
@ -114,6 +125,12 @@ export default {
isShowUploadButton:{ isShowUploadButton:{
type:Boolean, type:Boolean,
}, },
modalType: {
type:String,
},
view:{
type:Boolean,
}
}, },
data() { data() {
return { return {
@ -126,6 +143,9 @@ export default {
console.log(this.templateType) console.log(this.templateType)
}, },
methods:{ methods:{
checkAllUploaded(childrenList) {
return childrenList.every(child => child.state === 1);
},
filePassMethod(row,status){ filePassMethod(row,status){
if (status === 'pass'){ if (status === 'pass'){
filePass(row.fileId,'1').then((res) => { filePass(row.fileId,'1').then((res) => {

@ -64,6 +64,7 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="modalType"
ref="childComponent" ref="childComponent"
> >
</Update> </Update>
@ -98,6 +99,7 @@ export default {
return { return {
templateType:'aduit', templateType:'aduit',
dialogType: 'edit', dialogType: 'edit',
modalType:'',
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -241,7 +243,10 @@ export default {
this.editOpen = true; this.editOpen = true;
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowButton = false this.isShowButton = true
this.dialogType = 'view'
this.modalType = 'score'
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
console.log(this.form) console.log(this.form)
@ -277,6 +282,9 @@ export default {
this.isReadOnly = true this.isReadOnly = true
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = false this.isShowUploadButton = false
this.dialogType = 'edit'
this.modalType = 'aduit'
this.templateType = 'aduit'
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward; this.form.isReward = response.data.isReward;

@ -87,6 +87,8 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:dialog-type="dialogType"
:modal-type="modalType"
> >
</Update> </Update>
</el-form-item> </el-form-item>
@ -119,6 +121,7 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="modalType"
ref="childComponent" ref="childComponent"
> >
</Update> </Update>
@ -152,6 +155,7 @@ export default {
return { return {
templateType:'apply', templateType:'apply',
dialogType:'edit', dialogType:'edit',
modalType:'',
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -312,7 +316,9 @@ export default {
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowUploadButton = false this.isShowUploadButton = false
this.isShowButton = false this.isShowButton = true
this.modalType = 'score'
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
console.log(this.form) console.log(this.form)
@ -348,6 +354,8 @@ export default {
this.isReadOnly = false this.isReadOnly = false
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = true this.isShowUploadButton = true
this.modalType = 'apply'
this.templateType = 'apply'
this.title = "添加申请"; this.title = "添加申请";
// if(this.noticeList.length === 0){ // if(this.noticeList.length === 0){
getApplyId(this.applyParam).then(response => { getApplyId(this.applyParam).then(response => {
@ -369,6 +377,8 @@ export default {
this.isReadOnly = false this.isReadOnly = false
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = true this.isShowUploadButton = true
this.modalType = 'apply'
this.templateType = 'apply'
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward; this.form.isReward = response.data.isReward;

@ -67,6 +67,8 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="'score'"
:view="view"
ref="childComponent" ref="childComponent"
> >
<template v-slot:tableSlot v-if="isView === false"> <template v-slot:tableSlot v-if="isView === false">
@ -133,8 +135,9 @@ export default {
return { return {
scoreData:[], scoreData:[],
avgScore:null, avgScore:null,
templateType:'aduit', templateType:'score',
dialogType: 'edit', dialogType: 'edit',
view:false,
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -147,7 +150,7 @@ export default {
], ],
// //
tableActions: [ tableActions: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,}, {text: '查看', icon: 'el-icon-view', handler: this.handleView},
{text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,}, {text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,},
], ],
// //
@ -215,6 +218,12 @@ export default {
// 使 splice // 使 splice
filterData.splice(ratingIndex, 1); filterData.splice(ratingIndex, 1);
} }
}else{
let ratingIndex = filterData.findIndex(action => action.text === '查看');
if (ratingIndex !== -1) {
// 使 splice
filterData.splice(ratingIndex, 1);
}
} }
}) })
if (this.$route.path.includes('contributionAward') === true) { if (this.$route.path.includes('contributionAward') === true) {
@ -294,9 +303,11 @@ export default {
this.editOpen = true; this.editOpen = true;
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowButton = false this.isShowButton = true
this.isReadOnly = true this.isReadOnly = true
this.isView = false this.isView = false
this.view = true
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
console.log(this.form) console.log(this.form)

@ -64,6 +64,7 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="modalType"
ref="childComponent" ref="childComponent"
> >
</Update> </Update>
@ -98,6 +99,7 @@ export default {
return { return {
templateType:'aduit', templateType:'aduit',
dialogType: 'edit', dialogType: 'edit',
modalType:'',
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -241,7 +243,10 @@ export default {
this.editOpen = true; this.editOpen = true;
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowButton = false this.isShowButton = true
this.dialogType = 'view'
this.modalType = 'score'
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
this.editOpen = true; this.editOpen = true;
@ -274,8 +279,9 @@ export default {
this.isView = true; this.isView = true;
this.applyId = row.applyId this.applyId = row.applyId
this.isReadOnly = true this.isReadOnly = true
this.isShowButton = true this.dialogType = 'edit'
this.isShowUploadButton = false this.modalType = 'aduit'
this.templateType = 'aduit'
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward; this.form.isReward = response.data.isReward;

@ -87,6 +87,8 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:dialog-type="dialogType"
:modal-type="modalType"
> >
</Update> </Update>
</el-form-item> </el-form-item>
@ -119,6 +121,7 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="modalType"
ref="childComponent" ref="childComponent"
> >
</Update> </Update>
@ -152,6 +155,7 @@ export default {
return { return {
templateType:'apply', templateType:'apply',
dialogType:'edit', dialogType:'edit',
modalType:'',
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -312,7 +316,9 @@ export default {
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowUploadButton = false this.isShowUploadButton = false
this.isShowButton = false this.isShowButton = true
this.modalType = 'score'
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
console.log(this.form) console.log(this.form)
@ -348,6 +354,8 @@ export default {
this.isReadOnly = false this.isReadOnly = false
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = true this.isShowUploadButton = true
this.modalType = 'apply'
this.templateType = 'apply'
this.title = "添加申请"; this.title = "添加申请";
// if(this.noticeList.length === 0){ // if(this.noticeList.length === 0){
getApplyId(this.applyParam).then(response => { getApplyId(this.applyParam).then(response => {
@ -369,6 +377,8 @@ export default {
this.isReadOnly = false this.isReadOnly = false
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = true this.isShowUploadButton = true
this.modalType = 'apply'
this.templateType = 'apply'
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward; this.form.isReward = response.data.isReward;

@ -67,6 +67,8 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="'score'"
:view="view"
ref="childComponent" ref="childComponent"
> >
<template v-slot:tableSlot v-if="isView === false"> <template v-slot:tableSlot v-if="isView === false">
@ -133,8 +135,9 @@ export default {
return { return {
scoreData:[], scoreData:[],
avgScore:null, avgScore:null,
templateType:'aduit', templateType:'score',
dialogType: 'edit', dialogType: 'edit',
view:false,
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -147,7 +150,7 @@ export default {
], ],
// //
tableActions: [ tableActions: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,}, {text: '查看', icon: 'el-icon-view', handler: this.handleView},
{text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,}, {text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,},
], ],
// //
@ -215,6 +218,12 @@ export default {
// 使 splice // 使 splice
filterData.splice(ratingIndex, 1); filterData.splice(ratingIndex, 1);
} }
}else{
let ratingIndex = filterData.findIndex(action => action.text === '查看');
if (ratingIndex !== -1) {
// 使 splice
filterData.splice(ratingIndex, 1);
}
} }
}) })
if (this.$route.path.includes('principalAward') === true) { if (this.$route.path.includes('principalAward') === true) {
@ -294,9 +303,11 @@ export default {
this.editOpen = true; this.editOpen = true;
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowButton = false this.isShowButton = true
this.isReadOnly = true this.isReadOnly = true
this.isView = false this.isView = false
this.view = true
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
console.log(this.form) console.log(this.form)

@ -64,6 +64,7 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="modalType"
ref="childComponent" ref="childComponent"
> >
</Update> </Update>
@ -93,6 +94,7 @@ export default {
return { return {
templateType:'aduit', templateType:'aduit',
dialogType: 'edit', dialogType: 'edit',
modalType:'',
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -236,7 +238,10 @@ export default {
this.editOpen = true; this.editOpen = true;
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowButton = false this.isShowButton = true
this.dialogType = 'view'
this.modalType = 'score'
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
console.log(this.form) console.log(this.form)
@ -272,6 +277,9 @@ export default {
this.isReadOnly = true this.isReadOnly = true
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = false this.isShowUploadButton = false
this.dialogType = 'edit'
this.modalType = 'aduit'
this.templateType = 'aduit'
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward; this.form.isReward = response.data.isReward;

@ -87,6 +87,8 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:dialog-type="dialogType"
:modal-type="modalType"
> >
</Update> </Update>
</el-form-item> </el-form-item>
@ -119,6 +121,7 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="modalType"
ref="childComponent" ref="childComponent"
> >
</Update> </Update>
@ -147,6 +150,7 @@ export default {
return { return {
templateType:'apply', templateType:'apply',
dialogType:'edit', dialogType:'edit',
modalType:'',
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -306,7 +310,9 @@ export default {
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowUploadButton = false this.isShowUploadButton = false
this.isShowButton = false this.isShowButton = true
this.modalType = 'score'
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
this.editOpen = true; this.editOpen = true;
@ -341,6 +347,8 @@ export default {
this.isReadOnly = false this.isReadOnly = false
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = true this.isShowUploadButton = true
this.modalType = 'apply'
this.templateType = 'apply'
this.title = "添加申请"; this.title = "添加申请";
// if(this.noticeList.length === 0){ // if(this.noticeList.length === 0){
getApplyId(this.applyParam).then(response => { getApplyId(this.applyParam).then(response => {
@ -362,6 +370,8 @@ export default {
this.isReadOnly = false this.isReadOnly = false
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = true this.isShowUploadButton = true
this.modalType = 'apply'
this.templateType = 'apply'
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward; this.form.isReward = response.data.isReward;

@ -67,6 +67,8 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="'score'"
:view="view"
ref="childComponent" ref="childComponent"
> >
<template v-slot:tableSlot v-if="isView === false"> <template v-slot:tableSlot v-if="isView === false">
@ -130,8 +132,9 @@ export default {
return { return {
scoreData:[], scoreData:[],
avgScore:null, avgScore:null,
templateType:'aduit', templateType:'score',
dialogType: 'edit', dialogType: 'edit',
view:false,
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -144,7 +147,7 @@ export default {
], ],
// //
tableActions: [ tableActions: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,}, {text: '查看', icon: 'el-icon-view', handler: this.handleView},
{text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,}, {text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,},
], ],
// //
@ -212,6 +215,12 @@ export default {
// 使 splice // 使 splice
filterData.splice(ratingIndex, 1); filterData.splice(ratingIndex, 1);
} }
}else{
let ratingIndex = filterData.findIndex(action => action.text === '查看');
if (ratingIndex !== -1) {
// 使 splice
filterData.splice(ratingIndex, 1);
}
} }
}) })
if (this.$route.path.includes('reward') === true) { if (this.$route.path.includes('reward') === true) {
@ -291,9 +300,11 @@ export default {
this.editOpen = true; this.editOpen = true;
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowButton = false this.isShowButton = true
this.isReadOnly = true this.isReadOnly = true
this.isView = false this.isView = false
this.view = true
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
console.log(this.form) console.log(this.form)

@ -64,6 +64,7 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="modalType"
ref="childComponent" ref="childComponent"
> >
</Update> </Update>
@ -98,6 +99,7 @@ export default {
return { return {
templateType:'aduit', templateType:'aduit',
dialogType: 'edit', dialogType: 'edit',
modalType:'',
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -241,7 +243,10 @@ export default {
this.editOpen = true; this.editOpen = true;
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowButton = false this.isShowButton = true
this.dialogType = 'view'
this.modalType = 'score'
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
console.log(this.form) console.log(this.form)
@ -277,6 +282,9 @@ export default {
this.isReadOnly = true this.isReadOnly = true
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = false this.isShowUploadButton = false
this.dialogType = 'edit'
this.modalType = 'aduit'
this.templateType = 'aduit'
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward; this.form.isReward = response.data.isReward;

@ -87,6 +87,8 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:dialog-type="dialogType"
:modal-type="modalType"
> >
</Update> </Update>
</el-form-item> </el-form-item>
@ -119,6 +121,7 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="modalType"
ref="childComponent" ref="childComponent"
> >
</Update> </Update>
@ -152,6 +155,7 @@ export default {
return { return {
templateType:'apply', templateType:'apply',
dialogType:'edit', dialogType:'edit',
modalType:'',
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -312,7 +316,9 @@ export default {
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowUploadButton = false this.isShowUploadButton = false
this.isShowButton = false this.isShowButton = true
this.modalType = 'score'
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
console.log(this.form) console.log(this.form)
@ -348,6 +354,8 @@ export default {
this.isReadOnly = false this.isReadOnly = false
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = true this.isShowUploadButton = true
this.modalType = 'apply'
this.templateType = 'apply'
this.title = "添加申请"; this.title = "添加申请";
// if(this.noticeList.length === 0){ // if(this.noticeList.length === 0){
getApplyId(this.applyParam).then(response => { getApplyId(this.applyParam).then(response => {
@ -369,6 +377,8 @@ export default {
this.isReadOnly = false this.isReadOnly = false
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = true this.isShowUploadButton = true
this.modalType = 'apply'
this.templateType = 'apply'
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward; this.form.isReward = response.data.isReward;

@ -67,6 +67,7 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="'score'"
ref="childComponent" ref="childComponent"
> >
<template v-slot:tableSlot v-if="isView === false"> <template v-slot:tableSlot v-if="isView === false">
@ -133,8 +134,9 @@ export default {
return { return {
scoreData:[], scoreData:[],
avgScore:null, avgScore:null,
templateType:'aduit', templateType:'score',
dialogType: 'edit', dialogType: 'edit',
view:false,
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -147,7 +149,7 @@ export default {
], ],
// //
tableActions: [ tableActions: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,}, {text: '查看', icon: 'el-icon-view', handler: this.handleView},
{text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,}, {text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,},
], ],
// //
@ -215,6 +217,12 @@ export default {
// 使 splice // 使 splice
filterData.splice(ratingIndex, 1); filterData.splice(ratingIndex, 1);
} }
}else{
let ratingIndex = filterData.findIndex(action => action.text === '查看');
if (ratingIndex !== -1) {
// 使 splice
filterData.splice(ratingIndex, 1);
}
} }
}) })
if (this.$route.path.includes('teacherAward') === true) { if (this.$route.path.includes('teacherAward') === true) {
@ -294,9 +302,11 @@ export default {
this.editOpen = true; this.editOpen = true;
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowButton = false this.isShowButton = true
this.isReadOnly = true this.isReadOnly = true
this.isView = false this.isView = false
this.view = true
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
console.log(this.form) console.log(this.form)

@ -64,6 +64,7 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="modalType"
ref="childComponent" ref="childComponent"
> >
</Update> </Update>
@ -98,6 +99,7 @@ export default {
return { return {
templateType:'aduit', templateType:'aduit',
dialogType: 'edit', dialogType: 'edit',
modalType:'',
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -241,7 +243,10 @@ export default {
this.editOpen = true; this.editOpen = true;
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowButton = false this.isShowButton = true
this.dialogType = 'view'
this.modalType = 'score'
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
console.log(this.form) console.log(this.form)
@ -277,6 +282,9 @@ export default {
this.isReadOnly = true this.isReadOnly = true
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = false this.isShowUploadButton = false
this.dialogType = 'edit'
this.modalType = 'aduit'
this.templateType = 'aduit'
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward; this.form.isReward = response.data.isReward;

@ -87,6 +87,8 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:dialog-type="dialogType"
:modal-type="modalType"
> >
</Update> </Update>
</el-form-item> </el-form-item>
@ -119,6 +121,7 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="modalType"
ref="childComponent" ref="childComponent"
> >
</Update> </Update>
@ -152,6 +155,7 @@ export default {
return { return {
templateType:'apply', templateType:'apply',
dialogType:'edit', dialogType:'edit',
modalType:'',
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -312,7 +316,9 @@ export default {
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowUploadButton = false this.isShowUploadButton = false
this.isShowButton = false this.isShowButton = true
this.modalType = 'score'
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
console.log(this.form) console.log(this.form)
@ -348,6 +354,8 @@ export default {
this.isReadOnly = false this.isReadOnly = false
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = true this.isShowUploadButton = true
this.modalType = 'apply'
this.templateType = 'apply'
this.title = "添加申请"; this.title = "添加申请";
// if(this.noticeList.length === 0){ // if(this.noticeList.length === 0){
getApplyId(this.applyParam).then(response => { getApplyId(this.applyParam).then(response => {
@ -369,6 +377,8 @@ export default {
this.isReadOnly = false this.isReadOnly = false
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = true this.isShowUploadButton = true
this.modalType = 'apply'
this.templateType = 'apply'
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward; this.form.isReward = response.data.isReward;

@ -67,6 +67,8 @@
:isShowButton="isShowButton" :isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton" :isShowUploadButton="isShowUploadButton"
:template-type="templateType" :template-type="templateType"
:modal-type="'score'"
:view="view"
ref="childComponent" ref="childComponent"
> >
<template v-slot:tableSlot v-if="isView === false"> <template v-slot:tableSlot v-if="isView === false">
@ -133,8 +135,9 @@ export default {
return { return {
scoreData:[], scoreData:[],
avgScore:null, avgScore:null,
templateType:'aduit', templateType:'score',
dialogType: 'edit', dialogType: 'edit',
view:false,
isShowUploadButton:false, isShowUploadButton:false,
// //
tableColumns: [ tableColumns: [
@ -147,7 +150,7 @@ export default {
], ],
// //
tableActions: [ tableActions: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,}, {text: '查看', icon: 'el-icon-view', handler: this.handleView},
{text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,}, {text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,},
], ],
// //
@ -215,6 +218,12 @@ export default {
// 使 splice // 使 splice
filterData.splice(ratingIndex, 1); filterData.splice(ratingIndex, 1);
} }
}else{
let ratingIndex = filterData.findIndex(action => action.text === '查看');
if (ratingIndex !== -1) {
// 使 splice
filterData.splice(ratingIndex, 1);
}
} }
}) })
if (this.$route.path.includes('trainAward') === true) { if (this.$route.path.includes('trainAward') === true) {
@ -294,9 +303,11 @@ export default {
this.editOpen = true; this.editOpen = true;
this.title = "查看申请"; this.title = "查看申请";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowButton = false this.isShowButton = true
this.isReadOnly = true this.isReadOnly = true
this.isView = false this.isView = false
this.view = true
this.templateType = 'applyView'
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
console.log(this.form) console.log(this.form)

Loading…
Cancel
Save