Browse Source

修改

feature
是小王呀\24601 1 year ago
parent
commit
c3106b86c0
  1. 8
      src/views/modules/volunteer/VoluntaryOrganization/edit.vue
  2. 4
      src/views/modules/volunteer/VoluntaryOrganization/index.vue

8
src/views/modules/volunteer/VoluntaryOrganization/edit.vue

@ -186,13 +186,13 @@
components: { Tinymce, UploadImage },
props: {
VolunteerList: {
type: Array,
default: []
},
type: Object,
default: () => {}
}
},
mounted() {
console.log(this.VolunteerList,"this.VolunteerList");
this.formData=this.VolunteerList
this.activityType()
this.listServerOrg()
},

4
src/views/modules/volunteer/VoluntaryOrganization/index.vue

@ -99,7 +99,7 @@
</el-dialog>
<el-dialog :visible.sync="showEdit" :close-on-click-modal="false" :close-on-press-escape="false" title="修改"
width="850px" top="10vh" class="dialog-h" @closed="showEditClose">
<edit v-if="showEdit" :VolunteerList="fmData" @showEditClose="showEditClose" />
<edit v-if="showEdit" :VolunteerList="EditList" @showEditClose="showEditClose" />
</el-dialog>
<el-dialog :visible.sync="showMember" :close-on-click-modal="false" :close-on-press-escape="false"
title="成员管理" width="1000px" top="10vh" class="dialog-h" @closed="MemberManagementClose">
@ -424,7 +424,7 @@ export default {
handleEdit(row){
this.showEdit=true,
this.EditList=row
console.log(row,this.fmData,"row");
console.log(row,this.EditList,"row");
},
//
showEditClose(){

Loading…
Cancel
Save