提交修改

dev
dsh 12 months ago
parent 1c2803cd16
commit 6d6a2cc3f3

@ -72,6 +72,7 @@
<Update <Update
:applyId="applyId" :applyId="applyId"
:table-data="fileData" :table-data="fileData"
:isShowButton="isShowButton"
> >
</Update> </Update>
</el-form-item> </el-form-item>
@ -101,6 +102,7 @@
:applyId="applyId" :applyId="applyId"
:dialog-type="dialogType" :dialog-type="dialogType"
:table-data="fileData" :table-data="fileData"
:isShowButton="isShowButton"
ref="childComponent" ref="childComponent"
> >
</Update> </Update>
@ -250,6 +252,7 @@ export default {
// //
noticeList: [], noticeList: [],
isReadOnly:false, isReadOnly:false,
isShowButton:true,
isView:false, isView:false,
// //
title: "", title: "",
@ -354,13 +357,14 @@ export default {
}, },
/**查看按钮 */ /**查看按钮 */
handleView(row){ handleView(row){
this.open = true; this.editOpen = true;
this.title = "查看奖项"; this.title = "查看奖项";
const applyId = row.applyId || this.ids const applyId = row.applyId || this.ids
this.isShowButton = false
getDetail(applyId).then(response => { getDetail(applyId).then(response => {
this.form = response.data; this.form = response.data;
console.log(this.form) console.log(this.form)
this.open = true; this.editOpen = true;
this.isReadOnly = true this.isReadOnly = true
this.isView = true this.isView = true
}); });
@ -370,6 +374,8 @@ export default {
this.reset(); this.reset();
this.isView=false; this.isView=false;
this.open = true; this.open = true;
this.isReadOnly = false
this.isShowButton = true
this.title = "添加奖项"; this.title = "添加奖项";
console.log(this.applyParam) console.log(this.applyParam)
if(this.noticeList.length === 0){ if(this.noticeList.length === 0){
@ -385,6 +391,8 @@ export default {
this.reset(); this.reset();
this.isView=false; this.isView=false;
this.applyId = row.applyId this.applyId = row.applyId
this.isReadOnly = false
this.isShowButton = true
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;

@ -28,7 +28,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作"> <el-table-column label="操作">
<template slot-scope="scope"> <template slot-scope="scope" v-if="isShowButton">
<el-button size="small" type="text" @click="downloadFile(scope.row.fileId,scope.row.name)"></el-button> <el-button size="small" type="text" @click="downloadFile(scope.row.fileId,scope.row.name)"></el-button>
<el-button size="small" type="text" @click="deleteHandle(scope.row.fileId,scope)"></el-button> <el-button size="small" type="text" @click="deleteHandle(scope.row.fileId,scope)"></el-button>
</template> </template>
@ -38,7 +38,7 @@
</el-table-column> </el-table-column>
<el-table-column label="文件名称" prop="name"></el-table-column> <el-table-column label="文件名称" prop="name"></el-table-column>
<el-table-column label="上传文件"> <el-table-column label="上传文件">
<template v-slot:default="scope"> <template v-slot:default="scope" v-if="isShowButton">
<el-upload <el-upload
class="upload-demo" class="upload-demo"
ref="upload" ref="upload"
@ -89,6 +89,9 @@ export default {
type:Array, type:Array,
default:()=>[], default:()=>[],
require:true, require:true,
},
isShowButton:{
type:Boolean,
} }
}, },
data() { data() {
@ -99,7 +102,7 @@ export default {
} }
}, },
mounted() { mounted() {
console.log(this.isShowButton)
}, },
methods:{ methods:{
getToken, getToken,

Loading…
Cancel
Save