|
|
@@ -65,7 +65,7 @@
|
|
|
<i class="el-icon-office-building"></i>
|
|
|
参会情况
|
|
|
</template>
|
|
|
- <el-input type="textarea" v-model="m.remark" :rows="3" @change="workMeetingsUpdate(m)"></el-input>
|
|
|
+ <el-input :readonly="workRemarkReadOnly" type="textarea" v-model="m.remark" :rows="3" @change="workMeetingsUpdate(m)"></el-input>
|
|
|
</el-descriptions-item>
|
|
|
</el-descriptions>
|
|
|
<el-table
|
|
|
@@ -278,6 +278,7 @@ export default {
|
|
|
meetingConfirms:[],
|
|
|
permissions:null,
|
|
|
workRemarkReadOnly:true,
|
|
|
+ meetingRemarkReadOnly:true
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
@@ -676,6 +677,7 @@ export default {
|
|
|
type: 'success'
|
|
|
});
|
|
|
this.m.status=2
|
|
|
+ this.workRemarkReadOnly=false
|
|
|
this.setPermissions()
|
|
|
this.getData();
|
|
|
})
|