Browse Source

生活圈功能优化

feature-bug
mk 10 months ago
parent
commit
7288eca14b
  1. 854
      src/views/modules/volunteer/LifeCircleManagement/add.vue
  2. 6
      src/views/modules/volunteer/LifeCircleManagement/index.vue

854
src/views/modules/volunteer/LifeCircleManagement/add.vue

File diff suppressed because it is too large

6
src/views/modules/volunteer/LifeCircleManagement/index.vue

@ -87,7 +87,7 @@
</el-dialog> </el-dialog>
<el-dialog :visible.sync="showInfo" :close-on-click-modal="false" :close-on-press-escape="false" title="查看" <el-dialog :visible.sync="showInfo" :close-on-click-modal="false" :close-on-press-escape="false" title="查看"
width="850px" top="10vh" class="dialog-h" @closed="showInfoClose"> width="850px" top="10vh" class="dialog-h" @closed="showInfoClose">
<info ref="ref_form" v-if="showInfo" :VolunteerList="fmData" @showInfoClose="showInfoClose" /> <info ref="ref_form_info" v-if="showInfo" :VolunteerList="fmData" @showInfoClose="showInfoClose" />
</el-dialog> </el-dialog>
@ -400,7 +400,7 @@ export default {
this.showAdd=true this.showAdd=true
this.formTitle="新增" this.formTitle="新增"
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.ref_form.initForm("add", null); this.$refs.ref_form.initForm("add", null);
}); });
// this.$refs.ref_form.initForm("add", null); // this.$refs.ref_form.initForm("add", null);
}, },
@ -421,7 +421,7 @@ export default {
this.showInfo=true this.showInfo=true
this.formTitle="查看" this.formTitle="查看"
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.ref_form.initForm("info", row.id); this.$refs.ref_form_info.initForm("info", row.id);
}); });

Loading…
Cancel
Save