|
|
@ -309,7 +309,7 @@ export default {
|
|
|
|
/**查看按钮 */
|
|
|
|
/**查看按钮 */
|
|
|
|
handleView(row){
|
|
|
|
handleView(row){
|
|
|
|
this.editOpen = true;
|
|
|
|
this.editOpen = true;
|
|
|
|
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 = false
|
|
|
@ -348,7 +348,7 @@ export default {
|
|
|
|
this.isReadOnly = false
|
|
|
|
this.isReadOnly = false
|
|
|
|
this.isShowButton = true
|
|
|
|
this.isShowButton = true
|
|
|
|
this.isShowUploadButton = true
|
|
|
|
this.isShowUploadButton = true
|
|
|
|
this.title = "添加奖项";
|
|
|
|
this.title = "添加申请";
|
|
|
|
// if(this.noticeList.length === 0){
|
|
|
|
// if(this.noticeList.length === 0){
|
|
|
|
getApplyId(this.applyParam).then(response => {
|
|
|
|
getApplyId(this.applyParam).then(response => {
|
|
|
|
if (response.code === 200){
|
|
|
|
if (response.code === 200){
|
|
|
@ -373,7 +373,7 @@ export default {
|
|
|
|
getDetail(applyId).then(response => {
|
|
|
|
getDetail(applyId).then(response => {
|
|
|
|
this.form.isReward = response.data.isReward;
|
|
|
|
this.form.isReward = response.data.isReward;
|
|
|
|
this.editOpen = true;
|
|
|
|
this.editOpen = true;
|
|
|
|
this.title = "修改奖项";
|
|
|
|
this.title = "修改申请";
|
|
|
|
this.fileData.forEach((item)=>{
|
|
|
|
this.fileData.forEach((item)=>{
|
|
|
|
item.childrenList = []
|
|
|
|
item.childrenList = []
|
|
|
|
})
|
|
|
|
})
|
|
|
@ -420,7 +420,7 @@ export default {
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
handleDelete(row) {
|
|
|
|
handleDelete(row) {
|
|
|
|
const applyId = row.applyId || this.ids
|
|
|
|
const applyId = row.applyId || this.ids
|
|
|
|
this.$modal.confirm('是否确认删除奖项?').then(function() {
|
|
|
|
this.$modal.confirm('是否确认删除申请?').then(function() {
|
|
|
|
return delApply(applyId);
|
|
|
|
return delApply(applyId);
|
|
|
|
}).then(() => {
|
|
|
|
}).then(() => {
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|