pengjun 2 years ago
parent
commit
f5b367d223
  1. 10
      src/components/sumDoctorCheck/SumSug.vue

10
src/components/sumDoctorCheck/SumSug.vue

@ -32,11 +32,13 @@
</div>
<div style="position: absolute; top: 0px; right: 2px; display: flex;z-index: 3;">
<div style="margin-right: 5px;">
<el-button style="height: 28px;" class="commonbutton" @click="btnCollapseAll" :disabled="sumBtnDisabled()">{{ collapse ?
<el-button style="height: 28px;" class="commonbutton" @click="btnCollapseAll" :disabled="sumBtnDisabled()">{{
collapse ?
'展开' : '折叠' }}全部建议</el-button>
</div>
<div v-show="checkPagePriv(pagePriv.privs, '新增建议')">
<el-button style="height: 28px;" class="commonbutton" @click="addSuggtion" :disabled="sumBtnDisabled()">新增建议</el-button>
<el-button style="height: 28px;" class="commonbutton" @click="addSuggtion"
:disabled="sumBtnDisabled()">新增建议</el-button>
</div>
</div>
@ -284,7 +286,9 @@ export default {
}
this.sumDoctorCheck.suggestionList.push(pojo);
this.$refs[id].focus();
this.$nextTick(() => {
this.$refs[id].focus();
})
},
//

Loading…
Cancel
Save